/* ══════════════════════════════════════════
   GLOW STREAM SDN BHD — Main Website CSS
   Theme: Teal #00B4C6 + Gold #F5A623
   ══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --teal: #00B4C6;
  --teal-dark: #008EA0;
  --teal-darker: #006070;
  --teal-light: #E0F8FB;
  --gold: #F5A623;
  --gold-dark: #D48F15;
  --white: #FFFFFF;
  --dark: #0F2537;
  --gray: #6B7280;
  --light: #F8FAFB;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,180,198,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.section-desc { font-size: 1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-desc-inverse { color: rgba(255,255,255,0.75); }
.section-actions { display: flex; justify-content: center; margin-top: 32px; }
.highlight { color: var(--teal); }
.highlight-white { color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); cursor: pointer;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,198,0.35); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── AOS Animation ── */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 10px 0;
}
.navbar.navbar-solid {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 52px; width: auto; object-fit: contain;
  filter: none;
  transition: var(--transition);
}
.logo-img-footer { height: 60px; filter: none; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--teal); background: var(--teal-light); }
.navbar.navbar-solid .nav-link { color: var(--dark); }
.navbar.navbar-solid .nav-link:hover, .navbar.navbar-solid .nav-link.active { color: var(--teal); background: var(--teal-light); }

.nav-cta {
  padding: 10px 22px; background: var(--gold); color: #fff;
  border-radius: 50px; font-weight: 600; font-size: 0.88rem;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }

/* ── Dropdown ── */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif;
}
.nav-chevron { font-size: 0.7rem; transition: transform 0.3s ease; }
.nav-dropdown-wrap:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 14px; padding: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15); min-width: 300px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1); z-index: 999;
  border: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown-wrap:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  border-radius: 10px; transition: background 0.2s; text-decoration: none; color: var(--dark);
}
.dropdown-item:hover { background: var(--teal-light); }
.dropdown-item.active { background: var(--teal-light); }
.di-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.di-icon.health { background: rgba(0,180,198,0.12); color: var(--teal); }
.di-icon.tech { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.di-icon.academy { background: rgba(245,166,35,0.12); color: var(--gold); }
.di-text { display: flex; flex-direction: column; gap: 2px; }
.di-text strong { font-size: 0.88rem; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 6px; }
.di-text span { font-size: 0.78rem; color: var(--gray); }
.coming-soon-badge {
  background: var(--gold); color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.3px; vertical-align: middle;
}

/* ── Mobile Sidebar ── */
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.sidebar-overlay.open { opacity: 1; visibility: visible; }
.mobile-sidebar {
  position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
  background: #fff; z-index: 1002; transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}
.mobile-sidebar.open { left: 0; }
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.sidebar-close {
  background: none; border: none; font-size: 1.3rem; color: var(--gray);
  cursor: pointer; padding: 4px; line-height: 1;
}
.sidebar-nav-mobile {
  padding: 12px 12px; flex: 1; overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px;
}
.sb-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: 10px; color: var(--dark); font-size: 0.92rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.sb-link:hover, .sb-link.active { background: var(--teal-light); color: var(--teal); }
.sb-link i { width: 18px; text-align: center; color: var(--gray); }
.sb-link.active i { color: var(--teal); }

.sb-accordion { border-radius: 10px; overflow: hidden; }
.sb-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: none; border: none; cursor: pointer;
  font-size: 0.92rem; font-weight: 500; color: var(--dark); border-radius: 10px;
  font-family: 'Inter', sans-serif;
}
.sb-accordion-btn:hover { background: var(--teal-light); }
.sb-accordion-btn span { display: flex; align-items: center; gap: 12px; }
.sb-accordion-btn span i { width: 18px; text-align: center; color: var(--gray); }
.sb-chevron { font-size: 0.75rem; color: var(--gray); transition: transform 0.3s ease; }
.sb-accordion-btn.open .sb-chevron { transform: rotate(180deg); }
.sb-accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: var(--light); border-radius: 0 0 10px 10px;
}
.sb-accordion-body.open { max-height: 200px; }
.sb-sub-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 28px;
  color: var(--dark); font-size: 0.86rem; text-decoration: none; transition: color 0.2s;
}
.sb-sub-link:hover { color: var(--teal); }

.sidebar-footer-mobile { padding: 16px; border-top: 1px solid var(--border); }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--dark); }
.navbar.navbar-solid .hamburger span { background: var(--dark); }
.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 20, 32, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 980;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* —— Subpage Hero —— */
.subpage-hero {
  padding: 148px 0 72px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-darker) 100%);
  position: relative; overflow: hidden;
}
.subpage-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245,166,35,0.2), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 35%);
}
.subpage-hero-inner { position: relative; z-index: 1; text-align: center; }
.subpage-hero .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.95); }
.subpage-actions { margin-top: 24px; margin-bottom: 0; }
.subpage-title { font-size: clamp(2.1rem, 4vw, 3.2rem); color: #fff; margin-bottom: 14px; }
.subpage-desc { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,0.84); font-size: 1rem; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg-anim {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #003545 0%, #00606F 35%, #00B4C6 70%, #006070 100%);
}

/* Split layout */
.hero-split { padding: 100px 0 60px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
.hero-text-side { display: flex; flex-direction: column; position: relative; z-index: 2; }
.hero-logo-side {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* Three.js Galaxy — full hero background, text floats above */
.hero-art-side {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to left,  transparent 0%, black 20%),
    linear-gradient(to top,   transparent 0%, black 16%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to left,  transparent 0%, black 20%),
    linear-gradient(to top,   transparent 0%, black 16%);
  mask-composite: intersect;
}
/* Desktop: hide canvas, show CSS blobs */
.hero-galaxy-canvas {
  display: none;
}

/* Liquid Wave Columns — desktop only */
.hero-wave-cols {
  position: absolute;
  top: 0; right: 0;
  width: 58%; height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0 40px 0 20px;
  pointer-events: none;
  overflow: hidden;
  gap: 14px;
}
.wave-col {
  border-radius: 50px 50px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(0,140,160,0.95)  0%,
    rgba(0,180,198,0.85) 30%,
    rgba(0,239,255,0.7)  60%,
    rgba(245,166,35,0.5) 82%,
    rgba(255,210,80,0.15) 100%
  );
  box-shadow:
    0 0 28px rgba(0,180,198,0.35),
    inset 0 0 18px rgba(255,255,255,0.08);
  transform-origin: bottom center;
  flex-shrink: 0;
}
.wc-1 { width: 48px; height: 68%; animation: liqWave 4.2s ease-in-out infinite 0.0s; }
.wc-2 { width: 56px; height: 88%; animation: liqWave 3.8s ease-in-out infinite 0.7s; }
.wc-3 { width: 42px; height: 55%; animation: liqWave 5.1s ease-in-out infinite 1.3s; }
.wc-4 { width: 60px; height: 80%; animation: liqWave 4.6s ease-in-out infinite 0.4s; }
.wc-5 { width: 44px; height: 72%; animation: liqWave 3.6s ease-in-out infinite 1.8s; }
.wc-6 { width: 38px; height: 48%; animation: liqWave 4.9s ease-in-out infinite 1.0s; }

@keyframes liqWave {
  0%, 100% {
    transform: scaleY(1) translateX(0);
    border-radius: 50px 50px 16px 16px;
    opacity: 0.78;
  }
  25% {
    transform: scaleY(1.09) translateX(-5px);
    border-radius: 38px 62px 16px 16px;
    opacity: 0.88;
  }
  50% {
    transform: scaleY(1.2) translateX(0);
    border-radius: 65px 45px 16px 16px;
    opacity: 0.92;
  }
  75% {
    transform: scaleY(1.06) translateX(5px);
    border-radius: 44px 56px 16px 16px;
    opacity: 0.82;
  }
}

/* Mobile/tablet ≤1024px: wave cols full width, canvas hidden */
@media (max-width: 1024px) {
  .hero-galaxy-canvas { display: none; }
  .hero-wave-cols {
    width: 100%;
    padding: 0 16px;
    gap: 10px;
    opacity: 0.82;
  }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem !important; }
  .hero-wave-cols { width: 75%; height: 55%; gap: 7px; padding: 0 8px; }
  .wc-1 { width: 34px; } .wc-2 { width: 40px; }
  .wc-3 { width: 30px; } .wc-4 { width: 44px; }
  .wc-5 { width: 32px; } .wc-6 { width: 26px; }
}

/* Alive Logo */
.hero-logo-alive {
  width: 380px; max-width: 100%;
  filter: url(#liquid-filter);
  animation: logoFloat 7s ease-in-out infinite 3s, logoGlow 4s ease-in-out infinite 3s;
  position: relative; z-index: 2;
  clip-path: inset(0 0 30% 0);
  transform-origin: center 35%;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  30% { transform: translateY(-18px) rotate(4deg) scale(1.03); }
  60% { transform: translateY(10px) rotate(-3deg) scale(0.97); }
  80% { transform: translateY(-8px) rotate(2deg) scale(1.01); }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 25px rgba(0,180,198,0.5)) drop-shadow(0 0 50px rgba(245,166,35,0.25)); }
  50% { filter: drop-shadow(0 0 55px rgba(0,180,198,0.9)) drop-shadow(0 0 90px rgba(245,166,35,0.5)) drop-shadow(0 0 120px rgba(0,180,198,0.3)); }
}

/* Aura rings */
.logo-aura-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,180,198,0.3); animation: ringPulse 4s ease-in-out infinite;
}
.ring1 { width: 320px; height: 320px; animation-delay: 0s; }
.ring2 { width: 420px; height: 420px; animation-delay: 0.8s; border-color: rgba(245,166,35,0.2); }
.ring3 { width: 520px; height: 520px; animation-delay: 1.6s; border-color: rgba(0,180,198,0.15); }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 0.15; }
}

/* Floating sparks */
.logo-sparks { position: absolute; inset: 0; pointer-events: none; }
.spark {
  position: absolute; border-radius: 50%;
  animation: sparkFloat linear infinite;
}
.s1 { width:8px;height:8px;background:var(--gold);top:15%;left:10%;animation-duration:5s;animation-delay:3.2s;opacity:0.8; }
.s2 { width:5px;height:5px;background:#fff;top:70%;left:5%;animation-duration:6s;animation-delay:3.8s;opacity:0.6; }
.s3 { width:10px;height:10px;background:var(--teal);top:20%;right:8%;animation-duration:7s;animation-delay:4.2s;opacity:0.7; }
.s4 { width:6px;height:6px;background:var(--gold);top:80%;right:12%;animation-duration:5.5s;animation-delay:4.8s;opacity:0.9; }
.s5 { width:4px;height:4px;background:#fff;top:45%;left:2%;animation-duration:8s;animation-delay:5s;opacity:0.5; }
.s6 { width:7px;height:7px;background:var(--teal);top:55%;right:3%;animation-duration:6.5s;animation-delay:3.5s;opacity:0.6; }
@keyframes sparkFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  20% { opacity: 1; transform: translateY(-10px) scale(1); }
  80% { opacity: 0.8; }
  100% { transform: translateY(-60px) scale(0.5); opacity: 0; }
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9); padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800;
  color: #fff; margin-bottom: 16px; line-height: 1.15;
}
.hero-kicker {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  max-width: 680px;
  margin: 0 auto 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,0.82);
  max-width: 680px; margin: 0 auto 24px; font-weight: 400;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 18px 36px;
  max-width: 480px; margin: 0 auto;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: 2.4rem;
  font-weight: 800; color: var(--gold); line-height: 1;
}
.stat-plus { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

.hero-scroll {
  position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.75); font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
}
.hero-scroll a:hover { color: var(--gold); }
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-mouse-dot {
  width: 4px; height: 8px; background: var(--gold);
  border-radius: 2px; animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrapper { position: relative; margin-bottom: 24px; }
.about-img-bg {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), rgba(0,180,198,0.1));
  margin: 0 auto;
}
.about-img-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 220px; height: 220px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  border: 6px solid var(--gold);
  box-shadow: 0 16px 48px rgba(0,180,198,0.3);
}
.about-img-inner { font-size: 5rem; color: rgba(255,255,255,0.9); }
.about-real-img {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,180,198,0.2);
  border: 4px solid var(--gold);
}
.about-real-img img {
  width: 100%; display: block; object-fit: cover;
  transition: transform 0.5s ease;
}
.about-real-img:hover img { transform: scale(1.03); }

.about-badge-float {
  position: absolute; bottom: -10px; right: 20px;
  background: var(--gold); color: #fff; padding: 10px 16px;
  border-radius: 10px; display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pillar {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  background: var(--teal-light); border-radius: 8px; font-size: 0.82rem; font-weight: 500;
  color: var(--teal-dark);
}
.pillar i { color: var(--teal); }

.about-content .section-tag { text-align: left; display: block; }
.section-title.left { text-align: left; }
.about-text { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.about-content .btn { margin-top: 8px; }

.home-about-section .about-grid {
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  grid-template-areas:
    "visual content"
    "visual cta";
}

.home-about-section .about-real-img {
  border-width: 0;
  border-color: transparent;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(15,37,55,0.12);
}

.home-about-section .about-img-wrapper {
  margin-bottom: 20px;
}

.home-about-section .about-visual {
  grid-area: visual;
}

.home-about-content {
  grid-area: content;
}

.home-about-cta {
  grid-area: cta;
}

.home-about-section .about-badge-float {
  right: 24px;
  bottom: -14px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 0.82rem;
}

.home-about-content .section-tag {
  margin-bottom: 16px;
  letter-spacing: 1.6px;
}

.home-about-content .section-title {
  max-width: 560px;
  margin-bottom: 18px;
}

.home-about-copy {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 560px;
}

.home-about-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-about-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,180,198,0.1), rgba(0,180,198,0.04));
  border: 1px solid rgba(0,180,198,0.14);
  color: var(--teal-darker);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,180,198,0.08);
}

.home-about-pill i {
  color: var(--teal);
  font-size: 0.92rem;
}

.home-about-points {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.home-about-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(0,180,198,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(224,248,251,0.78));
  box-shadow: 0 12px 34px rgba(15,37,55,0.06);
}

.home-about-point-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,180,198,0.16), rgba(0,180,198,0.06));
  color: var(--teal-dark);
  font-size: 1rem;
}

.home-about-point-copy h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.home-about-point-copy p {
  color: var(--gray);
  line-height: 1.75;
}

.home-about-cta .btn {
  margin-top: 26px;
}

/* ══════════════════════════════════════════
   VISION & MISSION
   ══════════════════════════════════════════ */
.vm-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-darker) 100%);
  position: relative; overflow: hidden;
}
.vm-section::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
  top: -200px; right: -100px;
}
.vm-section .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.vm-section .section-title { color: #fff; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 520px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.9); transition: var(--transition);
  overflow: hidden;
}
.vm-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); }
.vm-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 24, 31, 0.14) 0%, rgba(5, 24, 31, 0.28) 32%, rgba(5, 24, 31, 0.86) 100%),
    linear-gradient(135deg, rgba(0,180,198,0.18), rgba(245,166,35,0.08));
  z-index: 1;
}
.vm-icon {
  width: 60px; height: 60px; background: var(--gold); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; margin-bottom: 20px;
}
.vm-media {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.vm-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.vm-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
  padding: 34px 30px 30px;
}
.vm-card h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.vm-card p { line-height: 1.8; color: rgba(255,255,255,0.92); }
.vm-list { display: flex; flex-direction: column; gap: 12px; }
.vm-list li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; color: rgba(255,255,255,0.9); }
.vm-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
}
.service-card.aos-animate { opacity: 1; transform: translateY(0); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,180,198,0.25);
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.service-items { display: flex; flex-direction: column; gap: 8px; }
.service-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.83rem; color: var(--gray); line-height: 1.5;
}
.service-item i { color: var(--teal); margin-top: 3px; flex-shrink: 0; }
.division-card { display: flex; flex-direction: column; min-height: 100%; }
.division-card-immersive {
  min-height: 540px;
  padding: 0;
  border: none;
  background: #062b33;
  box-shadow: 0 18px 42px rgba(15,37,55,0.12);
}
.division-card-immersive::before {
  display: none;
}
.division-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.division-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 23, 29, 0.18) 0%, rgba(4, 23, 29, 0.42) 38%, rgba(4, 23, 29, 0.86) 100%),
    linear-gradient(135deg, rgba(0,180,198,0.16), rgba(245,166,35,0.08));
  z-index: 1;
}
.division-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 28px;
}
.division-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}
.division-card-immersive h3 {
  color: #fff;
  font-size: 1.85rem;
  margin-bottom: 12px;
}
.division-card-immersive p {
  color: rgba(255,255,255,0.88);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 30ch;
}
.division-tags { flex-direction: row; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.division-pill {
  background: rgba(255,255,255,0.88);
  color: var(--teal-darker);
}
.service-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 12px; border-radius: 999px;
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 0.76rem; font-weight: 600; line-height: 1;
}
.division-btn { margin-top: auto; align-self: flex-start; }

.healthcare-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.healthcare-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 28px;
}

.healthcare-service-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.healthcare-service-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.healthcare-service-tags {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.healthcare-service-tag {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  padding: 8px 12px;
}

.services-detail-overview {
  padding-bottom: 32px;
}

.service-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,180,198,0.14);
  box-shadow: 0 10px 24px rgba(15,37,55,0.06);
  color: var(--dark);
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-detail-chip:hover {
  transform: translateY(-2px);
  color: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(0,180,198,0.12);
}

.service-detail-chip i {
  color: var(--teal);
}

.service-detail-stack {
  display: grid;
  gap: 28px;
}

.service-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0,180,198,0.12);
  box-shadow: 0 20px 48px rgba(15,37,55,0.07);
}

.service-detail-panel.is-alt {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(224,248,251,0.62));
}

.service-detail-summary,
.service-detail-body {
  min-width: 0;
}

.service-detail-summary {
  position: relative;
}

.service-detail-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(0,180,198,0.1);
  color: var(--teal-dark);
  font-weight: 700;
}

.service-detail-icon {
  margin-bottom: 18px;
}

.service-detail-summary .section-tag {
  margin-bottom: 14px;
}

.service-detail-summary h2 {
  font-size: 1.7rem;
  line-height: 1.18;
  margin-bottom: 14px;
  color: var(--dark);
}

.service-detail-summary p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray);
}

.service-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-detail-body {
  display: grid;
  gap: 16px;
}

.service-detail-card,
.service-detail-note {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(224,248,251,0.72));
  border: 1px solid rgba(0,180,198,0.1);
}

.service-detail-card h3,
.service-detail-note-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
}

.service-detail-list {
  display: grid;
  gap: 12px;
}

.service-detail-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-detail-list i {
  color: var(--teal);
  margin-top: 3px;
}

.service-detail-note p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.72;
}

/* ══════════════════════════════════════════
   INDUSTRY FOCUS
   ══════════════════════════════════════════ */
.focus-section {
  background: linear-gradient(135deg, var(--teal-darker) 0%, #003040 100%);
  position: relative; overflow: hidden;
}
.focus-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.focus-section .section-title { color: #fff; }
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.focus-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.focus-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); border-color: var(--gold); }
.focus-icon {
  width: 68px; height: 68px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; margin: 0 auto 20px;
  transition: var(--transition);
}
.focus-card:hover .focus-icon { transform: scale(1.1); }
.focus-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.focus-card p { font-size: 0.83rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ══════════════════════════════════════════
   STRENGTHS
   ══════════════════════════════════════════ */
.strengths-section { background: var(--white); }
.strengths-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.strengths-content .section-tag { display: block; }
.strength-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.strength-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  background: var(--light); border-radius: 10px; transition: var(--transition);
}
.strength-item:hover { background: var(--teal-light); transform: translateX(4px); }
.strength-item i { color: var(--teal); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.strength-item span { font-size: 0.92rem; color: var(--dark); font-weight: 500; }

.strengths-quote { position: relative; }
blockquote {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius); padding: 40px; color: rgba(255,255,255,0.9);
  position: relative; margin-bottom: 16px;
}
blockquote .fa-quote-left { font-size: 3rem; color: rgba(255,255,255,0.2); margin-bottom: 16px; display: block; }
blockquote p { font-size: 1.05rem; line-height: 1.8; font-style: italic; margin-bottom: 16px; }
blockquote cite { font-size: 0.85rem; color: var(--gold); font-weight: 600; font-style: normal; }
.quote-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 10px 20px;
  border-radius: 8px; font-size: 0.85rem; font-weight: 600;
}

/* ══════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════ */
.team-section { background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  opacity: 0; transform: translateY(30px);
}
.team-card.aos-animate { opacity: 1; transform: translateY(0); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-img {
  height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-light), rgba(0,180,198,0.15));
  display: flex; align-items: center; justify-content: center;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.4s ease; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.8);
  border: 4px solid white; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.team-name-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--gold); color: #fff;
  padding: 8px 16px; font-size: 0.8rem; font-weight: 700;
  text-align: center; text-transform: uppercase; letter-spacing: 0.5px;
}
.team-info { padding: 20px; text-align: center; }
.team-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.team-position {
  font-size: 0.82rem; color: var(--teal); font-weight: 600;
  margin-bottom: 10px; line-height: 1.4;
}
.team-bio { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.team-page-section { padding-top: 72px; }
.team-grid-large { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.team-grid-large .team-img { height: 300px; }
.team-grid-large .team-info { padding: 24px; }
.team-grid-large .team-info h3 { font-size: 1rem; }
.team-grid-large .team-position { font-size: 0.84rem; }
.team-grid-large .team-bio { display: block; }

/* ══════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  grid-auto-rows: 200px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative; background: var(--teal-light);
  transition: var(--transition);
}
.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,144,160,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }

.gallery-placeholder {
  grid-column: 1/-1; text-align: center; padding: 80px; color: var(--gray);
  background: var(--light); border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.gallery-placeholder i { font-size: 3rem; color: var(--teal); margin-bottom: 16px; display: block; }
.gallery-placeholder p { font-size: 0.95rem; line-height: 1.7; }

/* ══════════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════════ */
.projects-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  position: relative;
}
.projects-section .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.projects-section .section-title { color: #fff; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.project-card {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  opacity: 0; transform: translateY(30px);
}
.project-card.aos-animate { opacity: 1; transform: translateY(0); }
.project-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.18); }
.project-img {
  height: 180px; background: rgba(0,0,0,0.2); overflow: hidden;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
}
.project-img-placeholder i { font-size: 2.5rem; }
.project-status {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  background: var(--gold); color: #fff;
}
.project-body { padding: 24px; }
.project-body h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.project-location { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.project-location i { margin-right: 4px; color: var(--gold); }
.project-body p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contact-info > p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
}
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 2px; }
.contact-item span { color: var(--dark); font-weight: 500; font-size: 0.92rem; }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--dark);
  background: var(--white); transition: var(--transition); outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,198,0.1); }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-message {
  padding: 14px 18px; border-radius: 10px; font-size: 0.9rem;
  font-weight: 500; display: none;
}
.form-message.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; display: block; }
.form-message.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; display: block; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 8px; }
.footer-reg { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-size: 0.95rem; font-weight: 700; color: #fff;
  margin-bottom: 20px; padding-bottom: 8px;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-services li { font-size: 0.88rem; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.fc-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
.fc-item span { font-size: 0.85rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-admin-link {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  padding: 4px 12px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; transition: var(--transition);
}
.footer-admin-link:hover { color: var(--teal); border-color: var(--teal); }

/* ══════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox img { transition: opacity 0.15s ease; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2.5rem; line-height: 1; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* Mobile floating CTA */
.mobile-float-wrap { display: none; }
@media (max-width: 1024px) {
  .mobile-float-wrap {
    position: fixed; bottom: 24px; right: 16px;
    z-index: 900; display: flex; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, bottom 0.3s;
  }
  .mobile-float-wrap.visible { opacity: 1; pointer-events: auto; }

  .mobile-float-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--gold); color: #fff;
    font-weight: 700; font-size: 0.85rem; white-space: nowrap;
    padding: 13px 22px; border-radius: 50px;
    box-shadow: 0 4px 20px rgba(245,166,35,0.45);
    text-decoration: none;
    transition: padding 0.3s, border-radius 0.3s;
  }
  .mobile-float-cta:active { transform: scale(0.96); }

  /* Collapsed — phone icon only */
  .mobile-float-wrap.collapsed .mobile-float-cta {
    padding: 14px; border-radius: 50%; justify-content: center;
  }
  .mobile-float-wrap.collapsed .mobile-float-label { display: none; }
  .mobile-float-wrap.collapsed .mobile-float-close { display: none; }

  /* X button */
  .mobile-float-close {
    position: absolute; top: -8px; right: -6px;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,0,0,0.55); border: none;
    color: #fff; font-size: 0.65rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-float-close:hover { background: rgba(0,0,0,0.8); }
}

/* Services show more button */
.show-more-services {
  display: block; width: 100%; margin: 16px 0 0;
  background: none; border: 2px solid var(--teal);
  color: var(--teal); border-radius: 50px; padding: 11px 20px;
  font-weight: 600; font-size: 0.88rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.show-more-services:hover { background: var(--teal); color: #fff; }

/* ══════════════════════════════════════════
   GLOW TECH PAGE
   ══════════════════════════════════════════ */
:root {
  --blue: #0057FF;
  --blue-light: #EEF3FF;
  --cyan: #00C8FF;
  --blue-dark: #003DB3;
}
.gt-hero {
  background: linear-gradient(135deg, #001A4D 0%, #0033A0 45%, #0057FF 75%, #00C8FF 100%);
}
.gt-tag { background: rgba(0,87,255,0.12); color: var(--blue); border-color: rgba(0,87,255,0.2); }
.gt-highlight { color: var(--cyan); }
.gt-btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px rgba(0,87,255,0.35);
}
.gt-btn-primary:hover { background: var(--blue-dark); }

/* Visual box */
.gt-visual-box {
  width: 100%; aspect-ratio: 1; max-width: 320px;
  margin: 0 auto; border-radius: 24px;
  background: linear-gradient(135deg, #EEF3FF, #DBEAFE);
  border: 2px solid rgba(0,87,255,0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px; position: relative;
}
.gt-visual-icon { font-size: 4rem; color: var(--blue); opacity: 0.85; }
.gt-visual-dots {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}
.gt-visual-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue); opacity: 0.2;
  animation: dotPulse 2s ease-in-out infinite;
}
.gt-visual-dots span:nth-child(2) { animation-delay: 0.2s; }
.gt-visual-dots span:nth-child(3) { animation-delay: 0.4s; }
.gt-visual-dots span:nth-child(4) { animation-delay: 0.6s; }
.gt-visual-dots span:nth-child(5) { animation-delay: 0.8s; background: var(--cyan); opacity: 0.5; }
.gt-visual-dots span:nth-child(6) { animation-delay: 1.0s; }
.gt-visual-dots span:nth-child(7) { animation-delay: 1.2s; }
.gt-visual-dots span:nth-child(8) { animation-delay: 1.4s; }
.gt-visual-dots span:nth-child(9) { animation-delay: 1.6s; background: var(--cyan); opacity: 0.5; }
@keyframes dotPulse {
  0%,100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.3); }
}
.gt-badge-float { background: var(--blue) !important; }
.gt-pillar i { color: var(--blue); }

/* Services */
.gt-services-section { background: linear-gradient(135deg, #001A4D, #003580); }
.gt-service-card .service-card-icon.gt-icon {
  background: rgba(0,87,255,0.12); color: var(--blue);
}
.gt-service-card:hover .service-card-icon.gt-icon { background: var(--blue); color: #fff; }
.gt-service-card .service-item i { color: var(--blue); }

/* Why Glow Tech */
.gt-focus-icon { background: rgba(0,87,255,0.1) !important; color: var(--blue) !important; }
.gt-focus-card:hover .gt-focus-icon { background: var(--blue) !important; color: #fff !important; }

/* How We Work */
.gt-process-section { background: #fff; padding: 80px 0; }
.gt-process-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-top: 48px;
}
.gt-process-step {
  background: var(--light); border-radius: 20px;
  padding: 36px 28px; text-align: center;
  flex: 1; min-width: 200px; max-width: 260px;
  border: 1px solid rgba(0,87,255,0.1);
  transition: var(--transition);
}
.gt-process-step:hover { transform: translateY(-4px); border-color: var(--blue); }
.gt-step-num {
  font-size: 0.75rem; font-weight: 800; color: var(--blue);
  letter-spacing: 2px; margin-bottom: 12px;
}
.gt-step-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(0,87,255,0.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.gt-process-step h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.gt-process-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.gt-process-arrow { color: rgba(0,87,255,0.3); font-size: 1.5rem; }
@media (max-width: 768px) {
  .gt-process-grid { flex-direction: column; align-items: stretch; }
  .gt-process-arrow { transform: rotate(90deg); text-align: center; }
  .gt-process-step { max-width: 100%; }
}

/* ── Expert Card ── */
.gt-expert-section { background: #fff; }
.expert-card {
  display: flex; border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  max-width: 860px; margin: 0 auto;
}
.expert-card-img {
  width: 280px; flex-shrink: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: 32px; overflow: hidden;
}
.gt-card-img { background: linear-gradient(160deg, #EEF3FF 0%, #DBEAFE 100%); }
.ga-card-img { background: linear-gradient(160deg, #ECFDF5 0%, #D1FAE5 100%); }
.expert-card-img img {
  height: 320px; width: auto;
  object-fit: contain; object-position: bottom;
  display: block;
}
.expert-card-info {
  flex: 1; padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.expert-card-badge {
  display: inline-flex; width: fit-content;
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  margin-bottom: 14px;
}
.expert-card-name {
  font-size: 1.7rem; font-weight: 800;
  color: var(--dark); margin-bottom: 12px; line-height: 1.2;
}
.expert-card-bio {
  font-size: 0.9rem; color: var(--gray);
  line-height: 1.75; margin-bottom: 22px;
}
.expert-card-stack { display: flex; flex-wrap: wrap; gap: 8px; }
.expert-card-stack span {
  display: flex; align-items: center; gap: 6px;
  background: var(--light); border: 1px solid var(--border);
  color: var(--dark-light); border-radius: 50px;
  padding: 5px 12px; font-size: 0.78rem; font-weight: 500;
}
.gt-card-img ~ .expert-card-info .expert-card-stack span i { color: var(--blue); }
.ga-card-img ~ .expert-card-info .expert-card-stack span i { color: var(--green); }

@media (max-width: 768px) {
  .expert-card { flex-direction: column; }
  .expert-card-img { width: 100%; height: 260px; padding-top: 24px; }
  .expert-card-img img { height: 240px; }
  .expert-card-info { padding: 24px 20px; }
  .expert-card-name { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   GLOW ACADEMY PAGE
   ══════════════════════════════════════════ */
:root {
  --green: #059669;
  --green-light: #ECFDF5;
  --green-bright: #10B981;
  --green-dark: #047857;
}
.ga-hero { background: linear-gradient(135deg, #022C22 0%, #064E3B 40%, #059669 75%, #10B981 100%); }
.ga-tag { background: rgba(5,150,105,0.12); color: var(--green); border-color: rgba(5,150,105,0.2); }
.ga-highlight { color: var(--green-bright); }
.ga-btn-primary { background: var(--green); color: #fff; box-shadow: 0 4px 20px rgba(5,150,105,0.35); }
.ga-btn-primary:hover { background: var(--green-dark); }
.ga-badge-float { background: var(--green) !important; }
.ga-pillar i { color: var(--green); }

/* Visual box */
.ga-visual-box {
  width: 100%; aspect-ratio: 1; max-width: 320px;
  margin: 0 auto; border-radius: 24px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 2px solid rgba(5,150,105,0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; position: relative; overflow: hidden;
}
.ga-visual-icon { font-size: 3.5rem; color: var(--green); }
.ga-visual-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0 16px; }
.ga-visual-chips span {
  background: rgba(5,150,105,0.1); color: var(--green-dark);
  border: 1px solid rgba(5,150,105,0.2);
  border-radius: 50px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600;
}

/* Courses section */
.ga-courses-section { background: linear-gradient(135deg, #022C22, #065F46); }
.ga-course-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.ga-course-card {
  background: #fff; border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.ga-course-card:hover { transform: translateY(-4px); }
.ga-course-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.ga-level-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 14px;
}
.ga-level-badge.beginner { background: #ECFDF5; color: #065F46; }
.ga-level-badge.intermediate { background: #FFF7ED; color: #92400E; }
.ga-level-badge.advanced { background: #EFF6FF; color: #1E40AF; }
.ga-course-header h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.ga-course-header p { font-size: 0.84rem; color: var(--gray); line-height: 1.6; }
.ga-course-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 20px; }
.ga-module { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.ga-module-header {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--light);
  border-bottom: 1px solid var(--border);
}
.ga-module-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(5,150,105,0.1); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.ga-module-header strong { font-size: 0.9rem; display: block; color: var(--dark); }
.ga-module-header span { font-size: 0.75rem; color: var(--gray); }
.ga-lesson-list {
  list-style: none; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.ga-lesson-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--dark-light);
}
.ga-lesson-list li i { font-size: 0.4rem; color: var(--green); flex-shrink: 0; }
.ga-enroll-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 24px 24px; padding: 12px;
  background: var(--green); color: #fff;
  border-radius: 12px; font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: background 0.2s;
}
.ga-enroll-btn:hover { background: var(--green-dark); }

/* Why section */
.ga-focus-icon { background: rgba(5,150,105,0.1) !important; color: var(--green) !important; }
.ga-focus-card:hover .ga-focus-icon { background: var(--green) !important; color: #fff !important; }

/* Responsive */
@media (max-width: 1024px) {
  .ga-course-grid { grid-template-columns: 1fr; max-width: 600px; margin: 48px auto 0; }
}

/* ── Coming Soon Pages ── */
.coming-soon-section {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.cs-bg-tech {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0533 0%, #2d1b69 40%, #4c1d95 100%);
}
.cs-bg-academy {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0c2340 0%, #00B4C6 60%, #F5A623 100%);
}
.cs-bg-tech::after, .cs-bg-academy::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cs-content { position: relative; z-index: 1; text-align: center; }
.cs-division-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px; font-size: 0.88rem; font-weight: 700;
  margin-bottom: 28px; letter-spacing: 0.5px;
}
.cs-division-badge.tech { background: rgba(139,92,246,0.25); color: #C4B5FD; border: 1px solid rgba(139,92,246,0.4); }
.cs-division-badge.academy { background: rgba(245,166,35,0.2); color: #FDE68A; border: 1px solid rgba(245,166,35,0.4); }
.cs-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800;
  color: #fff; margin-bottom: 20px; line-height: 1.15;
}
.cs-content h1 span { color: var(--gold); }
.cs-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 620px; margin: 0 auto 48px; line-height: 1.8;
}
.cs-services-preview {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 56px;
}
.cs-service-item {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 14px;
  padding: 24px 16px; text-align: center; transition: var(--transition);
}
.cs-service-item:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.cs-service-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; display: block; }
.cs-service-item strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 6px; }
.cs-service-item span { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.cs-notify {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 36px; max-width: 480px; margin: 0 auto;
}
.cs-notify h3 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.btn-cs {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: var(--transition);
}
.btn-cs:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,180,198,0.4);
  transition: var(--transition); opacity: 0; transform: translateY(20px);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-panel { grid-template-columns: 1fr; }
  .about-img-bg { width: 260px; height: 260px; }
  .about-img-circle { width: 160px; height: 160px; }
  .about-img-inner { font-size: 3.5rem; }

  /* ─ Navbar: hide desktop links, show hamburger ─ */
  .nav-links { display: none !important; }
  .nav-cta  { display: none; }
  .hamburger {
    display: flex; z-index: 1001;
    width: 44px; height: 44px; align-items: center; justify-content: center;
    border-radius: 12px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .hamburger span { background: #fff; width: 22px; height: 2px; border-radius: 2px; display: block; }
  .navbar.scrolled .hamburger,
  .navbar.navbar-solid .hamburger { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
  .navbar.scrolled .hamburger span,
  .navbar.navbar-solid .hamburger span { background: var(--dark); }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ─ Navbar background on mobile/tablet ─ */
  .navbar { background: transparent; backdrop-filter: none; padding: 10px 0; }
  .navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); padding: 8px 0; }
  .navbar.navbar-solid { background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); }
  .nav-container { padding: 0 20px; justify-content: space-between; gap: 0; }
  .logo-img { height: 38px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ─ Section spacing ─ */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.5rem; }
  .section-desc { font-size: 0.9rem; }
  .container { padding: 0 16px; }

  /* ─ Navbar (phone-specific overrides) ─ */
  .nav-container { padding: 0 14px; }
  .logo-img { height: 34px; }
  .mobile-nav-backdrop { display: block; }
  .cs-services-preview { grid-template-columns: repeat(2, 1fr); }

  /* ─ Hero — full screen mobile, AFED-style ─ */
  .hero { padding: 0; min-height: 100svh; align-items: flex-start; }
  .hero-inner {
    grid-template-columns: 1fr; gap: 0; text-align: left;
    padding: 82px 24px 48px; height: 100svh; align-content: center;
  }
  .hero-logo-side { order: -1; }
  .hero-logo-alive { width: 200px; }
  .hero-art-side { opacity: 1; }
  .subpage-hero { padding: 100px 0 40px; }
  .subpage-title { font-size: 1.8rem; }
  .subpage-desc { font-size: 0.88rem; }
  /* Badge left-aligned */
  .hero-badge { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 14px; display: inline-flex; align-self: flex-start; }
  /* Big bold title */
  .hero-title { font-size: 2.1rem !important; margin-bottom: 12px; line-height: 1.12; }
  /* Desc — 3 lines max */
  .hero-desc {
    font-size: 0.88rem !important; margin-bottom: 26px; line-height: 1.65;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  /* Buttons left-aligned */
  .hero-btns { justify-content: flex-start; gap: 10px; margin-bottom: 0; flex-wrap: wrap; }
  .hero-btns .btn { flex: 0 0 auto; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
  /* Hide stats card */
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  /* Wave cols — bottom-right corner like AFED 3D object */
  .hero-wave-cols {
    top: auto; bottom: 0; right: -10px; left: auto;
    width: 68%; height: 60%;
    padding: 0 10px; gap: 9px; opacity: 0.78;
  }
  /* hero wave smaller on phone */
  .hero-wave svg { height: 36px; }

  /* ─ About ─ */
  .about-section { padding-top: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-visual { order: -1; }
  .about-real-img { border: 2px solid rgba(245,166,35,0.35); border-radius: 14px; }
  .about-img-bg { width: 200px; height: 200px; }
  .about-img-circle { width: 130px; height: 130px; }
  .about-img-inner { font-size: 2.8rem; }
  .about-badge-float { font-size: 0.72rem; padding: 7px 12px; right: 8px; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pillar { font-size: 0.76rem; padding: 9px 10px; }
  .about-real-img img { max-height: 220px; object-fit: cover; object-position: top; }

  .home-about-section .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "cta";
    gap: 24px;
  }
  .home-about-section .about-visual { order: 2; }
  .home-about-section .about-img-wrapper {
    max-width: 360px;
    margin: 0 auto 12px;
  }
  .home-about-section .about-real-img {
    border: none;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(15,37,55,0.12);
  }
  .home-about-section .about-real-img img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }
  .home-about-section .about-badge-float {
    position: static;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 0.72rem;
    background: #fff;
    color: var(--dark);
    border: 1px solid rgba(0,180,198,0.12);
    box-shadow: 0 10px 24px rgba(15,37,55,0.08);
  }
  .home-about-section .about-badge-float i {
    color: var(--gold);
  }
  .home-about-content .section-tag { margin-bottom: 12px; }
  .home-about-content .section-title {
    font-size: 1.7rem;
    line-height: 1.14;
    margin-bottom: 12px;
  }
  .home-about-copy {
    font-size: 0.92rem;
    line-height: 1.72;
  }
  .home-about-pills {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .home-about-pill {
    padding: 10px 11px;
    border-radius: 12px;
    font-size: 0.76rem;
  }
  .home-about-points {
    gap: 10px;
    margin-top: 18px;
  }
  .home-about-point {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 14px;
    border-radius: 16px;
  }
  .home-about-point-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.88rem;
  }
  .home-about-point-copy h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .home-about-point-copy p {
    font-size: 0.84rem;
    line-height: 1.62;
  }
  .home-about-cta .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }

  .home-about-cta {
    width: 100%;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
  }

  /* ─ Vision & Mission ─ */
  .vm-grid { grid-template-columns: 1fr; gap: 16px; }
  .vm-card { border-radius: 18px; min-height: 420px; }
  .vm-card-body { padding: 22px 18px 20px; }
  .vm-card h3 { font-size: 1.1rem; }
  .vm-card p { line-height: 1.68; }
  .vm-list { gap: 10px; }
  .vm-list li { font-size: 0.84rem; line-height: 1.55; }

  /* ─ Services — 2 columns ─ */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 22px 18px; }
  .service-card-icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 12px; border-radius: 12px; }
  .service-card h3 { font-size: 0.96rem; margin-bottom: 8px; }
  .service-card p { font-size: 0.84rem; margin-bottom: 12px; display: block; }
  .service-item { font-size: 0.8rem; gap: 8px; }
  .division-card-immersive {
    min-height: 460px;
    padding: 0;
  }
  .division-card-content {
    padding: 20px 18px 18px;
  }
  .division-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .division-card-immersive h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }
  .division-card-immersive p {
    font-size: 0.83rem;
    line-height: 1.62;
    margin-bottom: 14px;
    max-width: none;
  }
  .division-tags {
    gap: 8px;
    margin-bottom: 16px;
  }
  .division-pill {
    font-size: 0.7rem;
    padding: 7px 10px;
  }
  .division-btn {
    width: 100%;
    justify-content: center;
  }
  .healthcare-service-card { padding: 24px 18px; }
  .healthcare-service-card h3 { font-size: 1.02rem; }
  .healthcare-service-card p { font-size: 0.84rem; line-height: 1.65; margin-bottom: 14px; }
  .healthcare-service-tags { gap: 8px; }
  .healthcare-service-tag { font-size: 0.72rem; padding: 7px 10px; }
  .services-detail-overview { padding-bottom: 20px; }
  .service-detail-nav { justify-content: flex-start; gap: 10px; }
  .service-detail-chip {
    width: 100%;
    justify-content: flex-start;
    padding: 11px 14px;
    font-size: 0.8rem;
  }
  .service-detail-panel {
    gap: 20px;
    padding: 22px 18px;
    border-radius: 20px;
  }
  .service-detail-step {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 0.84rem;
  }
  .service-detail-summary h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .service-detail-summary p {
    font-size: 0.88rem;
    line-height: 1.72;
  }
  .service-detail-tags {
    gap: 8px;
    margin-top: 18px;
  }
  .service-detail-card,
  .service-detail-note {
    padding: 18px 16px;
    border-radius: 18px;
  }
  .service-detail-card h3,
  .service-detail-note-label {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }
  .service-detail-list {
    gap: 10px;
  }
  .service-detail-list li {
    grid-template-columns: 16px 1fr;
    gap: 8px;
    font-size: 0.84rem;
    line-height: 1.58;
  }
  .service-detail-note p {
    font-size: 0.85rem;
    line-height: 1.62;
  }

  /* ─ Industry Focus — 2 columns ─ */
  .focus-grid { grid-template-columns: 1fr; gap: 14px; }
  .focus-card { padding: 22px 18px; text-align: left; }
  .focus-icon { width: 50px; height: 50px; font-size: 1.2rem; margin: 0 0 12px; }
  .focus-card h3 { font-size: 0.96rem; margin-bottom: 8px; }
  .focus-card p { font-size: 0.8rem; }

  /* ─ Strengths ─ */
  .strengths-inner { grid-template-columns: 1fr; gap: 24px; }
  blockquote { padding: 24px 20px; }
  blockquote p { font-size: 0.9rem; }
  .strength-item { padding: 12px; }
  .strength-item span { font-size: 0.85rem; }

  /* ─ Team — 2 columns ─ */
  .team-grid { grid-template-columns: 1fr; gap: 14px; }
  .team-grid-large { grid-template-columns: 1fr; gap: 16px; }
  .team-img { height: 220px; }
  .team-grid-large .team-img { height: 260px; }
  .team-name-badge {
    font-size: 0.7rem; padding: 6px 10px;
    max-width: calc(100% - 24px); white-space: normal; line-height: 1.4;
  }
  .team-info { padding: 14px; }
  .team-grid-large .team-info { padding: 18px; }
  .team-info h3 { font-size: 0.92rem; margin-bottom: 4px; }
  .team-grid-large .team-info h3 { font-size: 0.98rem; }
  .team-position { font-size: 0.74rem; margin-bottom: 8px; }
  .team-bio { display: block; font-size: 0.8rem; }
  .team-grid-large .team-bio { font-size: 0.82rem; }

  /* ─ Gallery ─ */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 10px; }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }

  /* ─ Projects — 1 column ─ */
  .projects-grid { grid-template-columns: 1fr; gap: 16px; }
  .project-img { height: 150px; }
  .project-body { padding: 16px; }
  .project-body h3 { font-size: 0.95rem; }

  /* ─ Contact ─ */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-wrap { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-info h3 { font-size: 1.1rem; }
  .contact-info > p { margin-bottom: 20px; font-size: 0.88rem; }
  .contact-item { gap: 12px; }
  .ci-icon { width: 38px; height: 38px; font-size: 0.9rem; }

  /* ─ Footer ─ */
  .footer-top { padding: 40px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }
  .footer-bottom p { font-size: 0.78rem; }
  .section-actions .btn { width: min(100%, 320px); justify-content: center; }
  .gallery-placeholder { padding: 36px 20px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE (max 400px)
   ══════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-stats { padding: 12px 10px; max-width: 100%; }
  .stat-item { padding: 2px 4px; }
  .stat-num { font-size: 1.25rem; }
  .stat-item p { font-size: 0.65rem; }
  .hero-title { font-size: 1.65rem; }
  .hero-btns .btn { flex: 1 1 120px; font-size: 0.82rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: auto; }
}
