/* ========== GearUp Technologies - Main Stylesheet ========== */
/* Colors from Logo: Navy #1a4d7a, Turquoise #3ECDC4, Orange #F57C00 */

:root{
  /* Logo-matched color palette */
  --bg: #f6f8fc;
  --bg2:#eef3fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --stroke: rgba(15, 23, 42, 0.12);
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);

  /* Brand colors from logo */
  --navy: #1a4d7a;
  --turquoise: #3ECDC4;
  --orange: #F57C00;
  --brand:#1a4d7a;       
  --brand2:#3ECDC4;      
  --brandSoft: rgba(62, 205, 196, 0.10);

  --radius:18px;
  --radius2:14px;
  --container:1140px;
}


*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 540px at 10% 10%, rgba(62, 205, 196, 0.08), transparent 60%),
    radial-gradient(900px 540px at 90% 10%, rgba(26, 77, 122, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.6;
  background-attachment: fixed;
}


a{ color: inherit; text-decoration:none; transition: color 0.3s ease; }
a:hover{ color: var(--turquoise); }
.container{ width: min(92vw, var(--container)); margin: 0 auto; }
.muted{ color: var(--muted); }
.tiny{ font-size: .85rem; }


/* ===== Topbar ===== */
.topbar{
  border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px; flex-wrap:wrap;
  padding: 10px 0;
}
.topbar__left, .topbar__right{
  display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
}
.toplink{ 
  font-size:.92rem; 
  color: var(--text);
  transition: all 0.3s ease;
}
.toplink:hover{ 
  color: var(--turquoise);
  transform: translateY(-1px);
}
.dot{ opacity:.6; }


.badge{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  font-size:.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.badge:hover{
  border-color: var(--turquoise);
  box-shadow: 0 4px 12px rgba(62, 205, 196, 0.2);
}


/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand{ 
  display:flex; 
  align-items:center; 
  gap: 12px; 
  min-width: 220px;
  transition: transform 0.3s ease;
}
.brand:hover{
  transform: scale(1.02);
}
.brand__logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}
.brand:hover .brand__logo{
  box-shadow: 0 8px 20px rgba(62, 205, 196, 0.25);
  border-color: var(--turquoise);
}
.brand__logo-img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand__name{ 
  font-weight: 900; 
  letter-spacing:.2px;
  color: var(--navy);
}
.brand__sub{ 
  font-size: .82rem; 
  color: var(--muted); 
  margin-top: -2px; 
}


/* Highlight orange U */
.highlight-u{
  color: var(--orange);
  font-weight: 950;
}


/* ===== Nav ===== */
.nav{
  display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
}
.nav a{
  font-size: .95rem;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
}
.nav a::after{
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--turquoise);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav a:hover{ 
  background: rgba(62, 205, 196, 0.08);
  color: var(--navy);
}
.nav a:hover::after{
  width: 60%;
}


.nav__cta{
  background: linear-gradient(135deg, var(--navy), var(--turquoise));
  color: #ffffff !important;
  font-weight: 800;
  border: 0;
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.3);
  position: relative;
  overflow: hidden;
}
.nav__cta::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.nav__cta:hover::before{
  width: 300px;
  height: 300px;
}
.nav__cta::after{
  display: none;
}


.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.9);
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-toggle:hover{
  border-color: var(--turquoise);
  box-shadow: 0 4px 12px rgba(62, 205, 196, 0.2);
}
.nav-toggle span{
  display:block;
  width:20px; height:2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
  transition: all 0.3s ease;
}


/* ===== Hero ===== */
.hero{ 
  padding: 48px 0 18px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(62, 205, 196, 0.08), transparent 70%);
  border-radius: 50%;
  animation: heroFloat 25s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-40px, -40px) rotate(180deg); }
}

.hero__inner{
  display:flex; gap: 22px; align-items:stretch; justify-content:space-between;
  flex-wrap:wrap;
}
.hero__left{ flex: 1 1 520px; }
.hero__right{ flex: 1 1 420px; display:flex; justify-content:flex-end; }


.kicker{
  display:inline-flex;
  padding: 7px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--muted);
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease;
}


.hero h1{
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height:1.12;
  letter-spacing:-.5px;
  color: var(--navy);
  animation: fadeInUp 0.8s ease;
}
.hero__desc{ 
  margin-top: 14px; 
  max-width: 62ch; 
  color: var(--muted);
  animation: fadeInUp 1s ease;
}


.hero__cta{
  display:flex; gap: 12px; flex-wrap:wrap;
  margin-top: 18px;
  animation: fadeInUp 1.2s ease;
}


/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.9);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(15,23,42,.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover{ 
  transform: translateY(-2px); 
  background: #fff;
  box-shadow: 0 15px 35px rgba(15,23,42,.15);
}
.btn:active{ transform: translateY(0); }


.btn-primary{
  border: none;
  background: linear-gradient(135deg, var(--navy), var(--turquoise));
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(26, 77, 122, 0.3);
}
.btn-primary:hover{
  box-shadow: 0 15px 35px rgba(26, 77, 122, 0.4);
  transform: translateY(-3px);
}
.btn-ghost{
  background: rgba(255,255,255,.9);
  border-color: var(--turquoise);
  color: var(--navy);
}
.btn-ghost:hover{
  background: rgba(62, 205, 196, 0.1);
  border-color: var(--turquoise);
}
.btn-small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: .95rem;
}


/* ===== Stats ===== */
.hero__stats{
  display:flex; gap: 10px; flex-wrap:wrap;
  margin-top: 18px;
  animation: fadeInUp 1.4s ease;
}
.stat{
  flex: 1 1 160px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.9);
  padding: 12px;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: all 0.3s ease;
}
.stat:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(26, 77, 122, 0.12);
  border-color: var(--turquoise);
}
.stat__num{ 
  font-weight: 900; 
  font-size: 1.15rem; 
  color: var(--turquoise);
}
.stat__label{ color: var(--muted); font-size:.9rem; }


/* ===== Hero card ===== */
.hero-card{
  width: min(520px, 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding: 16px;
  transition: all 0.4s ease;
}
.hero-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 77, 122, 0.15);
}
.hero-card__top{
  display:flex; justify-content:space-between;
  gap:10px; flex-wrap:wrap;
}
.chip{
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(15,23,42,.04);
  font-size:.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.chip:hover{
  background: var(--brandSoft);
  border-color: var(--turquoise);
}
.chip--soft{ color: var(--muted); font-weight: 600; }


.hero-card__grid{
  display:flex; flex-wrap:wrap; gap: 12px;
  margin-top: 14px;
}
.mini{
  flex: 1 1 220px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.95);
  transition: all 0.3s ease;
}
.mini:hover{
  transform: translateY(-3px);
  border-color: var(--turquoise);
  box-shadow: 0 8px 20px rgba(62, 205, 196, 0.15);
}
.mini__icon{ font-size: 1.1rem; }
.mini__title{ font-weight: 900; margin-top: 6px; color: var(--navy); }
.mini__text{ color: var(--muted); margin-top: 6px; font-size:.92rem; }


.hero-card__bottom{
  display:flex; justify-content:space-between;
  gap: 12px; flex-wrap:wrap;
  margin-top: 14px;
}
.link{ 
  color: var(--turquoise); 
  font-weight: 800;
  transition: all 0.3s ease;
}
.link:hover{ 
  text-decoration: underline;
  color: var(--navy);
}


/* ===== Sections ===== */
.section{ padding: 56px 0; }
.section--alt{
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 14px; flex-wrap:wrap;
  margin-bottom: 18px;
}
.section__head h2{ 
  font-size: 1.85rem; 
  letter-spacing:-.2px;
  color: var(--navy);
  position: relative;
  padding-bottom: 8px;
}


/* ===== Cards ===== */
.cards{ display:flex; gap: 14px; flex-wrap:wrap; }
.card{
  flex: 1 1 320px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(26, 77, 122, 0.12);
  border-color: var(--turquoise);
}
.card h3{ 
  font-size: 1.18rem;
  color: var(--navy);
}
.card p{ color: var(--muted); margin-top: 8px; }


.ticks{ margin-top: 10px; padding-left: 18px; color: var(--muted); }
.ticks li{ 
  margin: 6px 0;
  transition: all 0.3s ease;
}
.ticks li:hover{
  color: var(--navy);
  transform: translateX(3px);
}


.price{
  display:flex; justify-content:space-between;
  gap: 12px; flex-wrap:wrap;
  margin: 12px 0;
  border-top: 1px dashed rgba(15,23,42,.22);
  padding-top: 10px;
}
.price__label{ color: var(--muted); }
.price__value{ 
  font-weight: 900; 
  color: var(--turquoise);
  font-size: 1.2rem;
}


/* ===== Two column panels ===== */
.two-col{ display:flex; gap: 14px; flex-wrap:wrap; }
.panel{
  flex: 1 1 420px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: all 0.3s ease;
}
.panel:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 77, 122, 0.12);
}


.track-list{ display:flex; flex-direction:column; gap: 10px; margin-top: 10px; }
.track{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(15,23,42,.03);
  border-left: 3px solid var(--turquoise);
  transition: all 0.3s ease;
}
.track:hover{
  background: rgba(62, 205, 196, 0.08);
  border-left-width: 5px;
  transform: translateX(5px);
}
.track__title{ 
  font-weight: 900;
  color: var(--navy);
}
.track__text{ color: var(--muted); margin-top: 5px; }


.cta-box{
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 205, 196, 0.3);
  background: linear-gradient(135deg, rgba(62, 205, 196, 0.08), rgba(26, 77, 122, 0.06));
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px; flex-wrap:wrap;
  transition: all 0.3s ease;
}
.cta-box:hover{
  border-color: var(--turquoise);
  box-shadow: 0 10px 30px rgba(62, 205, 196, 0.2);
}
.cta-box__title{ 
  font-weight: 950;
  color: var(--navy);
}


/* ===== Kits ===== */
.kit-grid{ display:flex; flex-wrap:wrap; gap: 12px; }
.kit{
  flex: 1 1 240px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 14px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: all 0.3s ease;
}
.kit:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26, 77, 122, 0.15);
  border-color: var(--turquoise);
}
.kit__title{ 
  font-weight: 950;
  color: var(--navy);
}
.kit__meta{ color: var(--muted); margin-top: 6px; }
.kit__price{ 
  font-weight: 950; 
  margin-top: 10px; 
  color: var(--orange);
  font-size: 1.15rem;
}
.kit__actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.kit__actions .btn{
  width: 100%;
  text-align: center;
}


/* ===== Gallery ===== */
.gallery{ display:flex; flex-wrap:wrap; gap: 12px; }
.ph{
  flex: 1 1 240px;
  min-height: 120px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(600px 220px at 20% 20%, rgba(62, 205, 196, 0.12), transparent 55%),
    radial-gradient(600px 220px at 80% 30%, rgba(26, 77, 122, 0.10), transparent 55%),
    rgba(255,255,255,.85);
  display:flex; align-items:center; justify-content:center;
  color: var(--muted);
  font-weight: 800;
  transition: all 0.3s ease;
}
.ph:hover{
  transform: scale(1.02);
  border-color: var(--turquoise);
  box-shadow: 0 10px 25px rgba(62, 205, 196, 0.2);
}


/* Project showcase gallery */
.ph-project{
  position: relative;
  background:
    radial-gradient(600px 220px at 20% 20%, rgba(62, 205, 196, 0.12), transparent 55%),
    radial-gradient(600px 220px at 80% 30%, rgba(26, 77, 122, 0.10), transparent 55%),
    rgba(255,255,255,.85);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 180px;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.ph-project:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(26, 77, 122, 0.15);
}
.ph-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius2);
  z-index: 1;
  transition: transform 0.5s ease;
}
.ph-project:hover .ph-img{
  transform: scale(1.08);
}
.ph-label{
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--navy), var(--turquoise));
  color: #ffffff;
  border-radius: 12px;
  font-weight: 900;
  font-size: .95rem;
  text-align: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(26, 77, 122, 0.4);
}


/* ===== Blog ===== */
.blog-grid{ display:flex; gap: 12px; flex-wrap:wrap; }
.post{
  flex: 1 1 280px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: all 0.3s ease;
}
.post:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26, 77, 122, 0.15);
}
.post__tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(62, 205, 196, 0.1);
  color: var(--navy);
  font-size:.85rem;
  font-weight: 700;
}
.post__title{ 
  margin-top: 10px; 
  font-size: 1.15rem;
  color: var(--navy);
}
.post__desc{ color: var(--muted); margin-top: 8px; }


/* ===== Contact ===== */
.contact{ display:flex; gap: 14px; flex-wrap:wrap; }
.contact__left, .contact__right{ flex: 1 1 420px; }


.contact__info{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
.info-row{ 
  display:flex; 
  justify-content:space-between; 
  gap: 10px; 
  flex-wrap:wrap;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}
.info-row:hover{
  padding-left: 8px;
  border-left: 3px solid var(--turquoise);
}
.info-k{ 
  color: var(--muted);
  font-weight: 700;
}
.info-v a{ 
  color: var(--turquoise); 
  font-weight: 800;
  transition: all 0.3s ease;
}
.info-v a:hover{
  color: var(--navy);
  text-decoration: underline;
}


.contact__actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap:wrap; }


.form{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
.form__row{ display:flex; gap: 12px; flex-wrap:wrap; }
.field{ flex: 1 1 220px; display:flex; flex-direction:column; gap: 6px; }
label{ 
  color: var(--muted); 
  font-size:.92rem;
  font-weight: 700;
}


input, select, textarea{
  border: 1px solid rgba(15,23,42,.16);
  border-radius: 12px;
  background: #ffffff;
  padding: 12px;
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}
input:focus, select:focus, textarea:focus{
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(62, 205, 196, 0.15);
  transform: translateY(-2px);
}


/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--stroke);
  padding: 24px 0;
  background: rgba(255,255,255,.75);
  margin-top: 40px;
}
.footer__inner{
  display:flex; justify-content:space-between;
  gap: 12px; flex-wrap:wrap;
  align-items:flex-start;
}
.footer__brand{ 
  font-weight: 950;
  color: var(--navy);
}
.footer__bottom{ margin-top: 12px; }


/* ===== Floating WhatsApp ===== */
.wa-float{
  position: fixed;
  right: 16px; bottom: 16px;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--turquoise), var(--navy));
  color: #ffffff;
  display:flex; align-items:center; justify-content:center;
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(26, 77, 122, 0.35);
  border: 1px solid rgba(255,255,255,.65);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: waPulse 2s ease-in-out infinite;
}
.wa-float:hover{ 
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 50px rgba(26, 77, 122, 0.45);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(26, 77, 122, 0.35); }
  50% { box-shadow: 0 18px 40px rgba(62, 205, 196, 0.45); }
}


/* ===== Products Page ===== */
.products-toolbar{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:flex-end;
  margin: 10px 0 16px;
}


.products-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}


.product{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 14px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  transition: all 0.3s ease;
}
.product:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 77, 122, 0.15);
  border-color: var(--turquoise);
}


.product__top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}


.product__name{ 
  font-weight: 950; 
  font-size: 1.05rem; 
  line-height:1.25;
  color: var(--navy);
}
.product__meta{ color: var(--muted); margin-top: 6px; font-size:.92rem; }


.pill{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(135deg, rgba(62, 205, 196, 0.1), rgba(26, 77, 122, 0.08));
  color: var(--navy);
  font-size:.82rem;
  font-weight: 700;
  white-space:nowrap;
}


.product__price{
  margin-top: 10px;
  font-weight: 950;
  color: var(--orange);
  font-size: 1.15rem;
}


.product__sku{
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
}


.product__actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}


.qty{
  width: 88px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.16);
  background: #fff;
}


/* ===== Smooth reveal animations ===== */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}


/* Fade in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (prefers-reduced-motion: reduce){
  .reveal{ transition: none; transform: none; opacity: 1; }
  *{ animation: none !important; }
}


/* ===== Blog & Events Page ===== */
.updates-bar{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  margin: 10px 0 16px;
}


.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}


.tab-btn{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  transition: all 0.3s ease;
}
.tab-btn:hover{ 
  transform: translateY(-2px);
  border-color: var(--turquoise);
  color: var(--navy);
}
.tab-btn.active{
  border-color: var(--turquoise);
  background: linear-gradient(135deg, rgba(62, 205, 196, 0.15), rgba(26, 77, 122, 0.10));
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(62, 205, 196, 0.2);
}


.updates-tools{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:flex-end;
}


.tab-panels{ margin-top: 10px; }
.tab-panel{
  display:none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.tab-panel.active{
  display:block;
  opacity: 1;
  transform: translateY(0);
}


.updates-head{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
}
.updates-title{
  font-weight: 950;
  font-size: 1.1rem;
  color: var(--navy);
}


.updates-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.events-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}


.post-card, .event-card{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: all 0.3s ease;
}
.post-card:hover, .event-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(26, 77, 122, 0.15);
  border-color: var(--turquoise);
}


.tag-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(62, 205, 196, 0.1);
  color: var(--navy);
  font-size:.82rem;
  font-weight: 800;
}


.post-title{
  margin-top: 10px;
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1.25;
  color: var(--navy);
}
.post-excerpt{ color: var(--muted); margin-top: 8px; }


.post-meta, .event-meta{
  margin-top: 10px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size:.88rem;
  border-top: 1px dashed rgba(15,23,42,.18);
  padding-top: 10px;
}


.date-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(62, 205, 196, 0.3);
  background: linear-gradient(135deg, rgba(62, 205, 196, 0.12), rgba(26, 77, 122, 0.08));
  font-weight: 950;
  color: var(--navy);
}


.event-title{
  margin-top: 10px;
  font-weight: 950;
  font-size: 1.12rem;
  color: var(--navy);
}
.event-desc{ color: var(--muted); margin-top: 8px; }


.event-actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}


/* ===== Hero media (banners) ===== */
.hero-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.hero-media__img{
  width: 100%;
  height: 420px;
  display:block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.hero-media:hover .hero-media__img{ transform: scale(1.08); }
.hero-media__overlay{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}


/* ===== Home page professional blocks ===== */
.hero--pro .hero__inner{ align-items: stretch; }
.trust-row{ 
  display:flex; 
  gap:10px; 
  flex-wrap:wrap; 
  margin-top: 12px; 
}
.trust-pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.88);
  font-weight: 900;
  color: var(--muted);
  font-size: .9rem;
  transition: all 0.3s ease;
}
.trust-pill:hover{
  background: rgba(62, 205, 196, 0.1);
  border-color: var(--turquoise);
  color: var(--navy);
  transform: translateY(-2px);
}


.metric-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.metric{
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.92);
  padding: 12px;
  transition: all 0.3s ease;
}
.metric:hover{
  transform: translateY(-3px);
  border-color: var(--turquoise);
  box-shadow: 0 8px 20px rgba(62, 205, 196, 0.15);
}
.metric__num{ 
  font-weight: 1000; 
  font-size: 1.1rem; 
  color: var(--turquoise);
}
.metric__label{ 
  color: var(--muted); 
  margin-top: 4px; 
  font-weight: 800; 
}


.logo-wall{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.logo-box{
  border: 1px dashed rgba(62, 205, 196, 0.3);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.70);
  padding: 18px;
  text-align:center;
  font-weight: 900;
  color: var(--muted);
  transition: all 0.3s ease;
}
.logo-box:hover{
  border-color: var(--turquoise);
  background: rgba(62, 205, 196, 0.05);
  transform: scale(1.03);
}


/* ===== Big hero banner layout ===== */
.hero-stack{
  display: grid;
  gap: 16px;
  align-items: start;
}


.hero-banner{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}


.hero-banner__img{
  width: 100%;
  height: clamp(360px, 52vh, 620px);
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-banner:hover .hero-banner__img{
  transform: scale(1.05);
}


.hero-banner__overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


.hero-content{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.hero-content:hover{
  box-shadow: 0 20px 50px rgba(26, 77, 122, 0.15);
}


/* ===== Program cards accordion style ===== */
.programs-accordion{
  display: flex;
  flex-direction: column;
  gap: 14px;
}


.program-card{
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
}
.program-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(26, 77, 122, 0.12);
  border-left-color: var(--turquoise);
}


.program-card__header{
  padding: 16px;
  background: linear-gradient(135deg, rgba(62, 205, 196, 0.08), rgba(26, 77, 122, 0.05));
  border-bottom: 1px solid var(--stroke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.program-card__header::after{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(62, 205, 196, 0.15), transparent);
  transition: left 0.6s ease;
}
.program-card:hover .program-card__header::after{
  left: 100%;
}


.program-card__header h3{
  font-size: 1.15rem;
  margin: 0;
  color: var(--navy);
}


.program-card__body{
  padding: 16px;
}


.program-card__body h4{
  font-weight: 950;
  margin-top: 10px;
  color: var(--navy);
}


.program-card__body h4:first-child{
  margin-top: 0;
}


/* Orange badge for age groups */
.badge-orange{
  background: linear-gradient(135deg, var(--orange), #FF8C00);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}


/* ===== Responsive ===== */
@media (max-width: 900px){
  .nav{
    display:none;
    width: 100%;
    padding: 10px 0 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  }
  .nav.open{ display:flex; }
  .nav a{
    width: 100%;
    text-align: center;
  }
  .nav-toggle{ display:flex; flex-direction: column; justify-content: center; }
  .header__inner{ flex-wrap:wrap; }
  .hero__right{ justify-content:flex-start; }
  
  .hero-banner__img{
    height: clamp(280px, 40vh, 450px);
  }
}


@media (max-width: 640px){
  .hero h1{
    font-size: 1.8rem;
  }
  
  .section__head h2{
    font-size: 1.5rem;
  }
  
  .metric-grid{
    grid-template-columns: 1fr;
  }
}



/* ===== Mobile Navigation ===== */
@media (max-width: 968px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 80px 20px 20px;
    flex-direction: column;
    gap: 0;
    box-shadow: -4px 0 20px rgba(15, 23, 42, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav--active {
    right: 0;
  }
  
  .nav a {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 4px;
    font-size: 1.05rem;
    display: block;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .nav a::after {
    display: none;
  }
  
  .nav__cta {
    margin-top: 12px;
  }
  
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000;
  }
  
  .nav-toggle span {
    transition: all 0.3s ease;
  }
  
  /* Hamburger animation */
  .nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle--active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Overlay when menu is open */
  .nav--active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 280px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}


/* ===== Mobile Navigation Fix ===== */
@media (max-width: 968px) {
  
  .header__inner {
    position: relative;
  }
  
  /* Hide desktop nav, show toggle button */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 80px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: -4px 0 20px rgba(15, 23, 42, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  /* Active state - menu open */
  .nav.active {
    right: 0;
  }
  
  /* Navigation links styling */
  .nav a {
    width: 100%;
    padding: 18px 16px;
    margin: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0;
    font-size: 1.05rem;
    transition: all 0.3s ease;
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .nav a:hover {
    background: rgba(62, 205, 196, 0.1);
    padding-left: 24px;
  }
  
  .nav a::after {
    display: none;
  }
  
  .nav__cta {
    margin-top: 16px;
    width: calc(100% - 32px);
    margin-left: 16px;
    text-align: center;
  }
  
  /* Show hamburger button */
  .nav-toggle {
    display: flex;
  }
  
  /* Hamburger icon animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--turquoise);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--turquoise);
  }
  
  /* Overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .nav {
    width: 260px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav {
    width: 240px;
  }
}
