/* ============================================
   ICALO - Premium Medical Education Landing
   ============================================ */

:root {
  --navy: #0a2540;
  --navy-light: #123a5f;
  --blue: #1e3a8a;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --gold: #d4af37;
  --gold-light: #f59e0b;
  --cream: #faf7f2;
  --text: #1a202c;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.12);
  --shadow-xl: 0 30px 80px rgba(10, 37, 64, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TOP HEADER ========== */
.top-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  padding: 0px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-header-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.top-header-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-info-item { display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.top-info-item:hover { color: var(--gold); }
.top-info-item a { color: inherit; }
.top-header-actions { display: flex; gap: 10px; }
.top-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  font-weight: 600; font-size: 0.8rem;
  transition: var(--transition);
}
.top-btn-call { background: var(--teal); color: white; }
.top-btn-call:hover { background: var(--teal-light); transform: translateY(-1px); }
.top-btn-wa { background: #25D366; color: white; }
.top-btn-wa:hover { background: #1ebe57; transform: translateY(-1px); }

/* ========== NAVBAR ========== */
.logo-text h1 {
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 700;
        }

        .logo-text span {
            font-size: 0.7rem;
            color: #64748b;
            display: block;
            line-height: 1.3;
        }
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10,37,64,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; width: auto; }
.logo-fallback {
  display: none; align-items: center; gap: 8px;
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 6px 20px rgba(13,148,136,0.3);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: 1.4rem;
  color: var(--navy); letter-spacing: 0.5px;
}
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  padding: 10px 16px; border-radius: 10px;
  font-weight: 500; font-size: 0.92rem;
  color: var(--text); transition: var(--transition);
  position: relative;
}
.nav-menu a:hover { color: var(--teal); background: rgba(13,148,136,0.06); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%) !important;
  color: white !important;
  padding: 10px 22px !important;
  margin-left: 8px;
  box-shadow: 0 6px 20px rgba(13,148,136,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(13,148,136,0.4); }
.nav-toggle { display: none; width: 30px; height: 24px; position: relative; }
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: calc(100vh - 120px);
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f0f9ff 0%, #faf7f2 50%, #f0fdfa 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--teal); top: -150px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; animation-delay: -7s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--blue); top: 40%; left: 30%; opacity: 0.2; animation-delay: -14s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,37,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,37,64,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 50px;
  background: rgba(13,148,136,0.1); color: var(--teal);
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(13,148,136,0.2);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); position: relative;
}
.badge-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid var(--teal);
  animation: pulse-ring 2s infinite;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  color: var(--navy); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient 8s ease infinite;
}
.gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-muted);
  margin-bottom: 28px; line-height: 1.7;
  max-width: 580px;
}
.hero-highlights {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px 20px;
  margin-bottom: 32px;
}
.hero-highlights li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 0.95rem; color: var(--navy);
}
.hero-highlights svg {
  width: 18px; height: 18px; color: var(--teal);
  flex-shrink: 0;
  background: rgba(13,148,136,0.1);
  border-radius: 50%; padding: 3px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  width: fit-content;
}
.trust-avatars { display: flex; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid white;
  margin-left: -10px;
  box-shadow: var(--shadow-sm);
}
.avatar:first-child { margin-left: 0; }
.avatar-count {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem;
}
.trust-text { font-size: 0.88rem; color: var(--text-muted); }
.trust-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.trust-text strong { color: var(--navy); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ========== FORMS ========== */
.form-card { padding: 36px; border-radius: var(--radius-xl); }
.form-header { margin-bottom: 24px; }
.form-tag {
  display: inline-block; padding: 4px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: #ffffff;
  margin-bottom: 6px;
}
.form-header p { color: var(--text-muted); font-size: 0.9rem; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { position: relative; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white; color: var(--text);
  transition: var(--transition);
  font-size: 0.95rem;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
}
.lead-form textarea { resize: vertical; min-height: 80px; }
.lead-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a2540' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.error-msg {
  display: block; color: #dc2626;
  font-size: 0.78rem; margin-top: 4px;
  min-height: 16px;
}
.form-group.error input, .form-group.error select {
  border-color: #dc2626;
  background: #fef2f2;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-disclaimer {
  font-size: 0.78rem; color: var(--text-muted);
  text-align: center; margin-top: 8px;
}
.form-disclaimer.light { color: rgba(255,255,255,0.8); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer; position: relative; overflow: hidden;
  border: none;
}
.btn svg { width: 18px; height: 18px; transition: var(--transition); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(13,148,136,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(13,148,136,0.45); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(212,175,55,0.55); }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: white; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ========== SECTION COMMON ========== */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(13,148,136,0.1); color: var(--teal);
  border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
  border: 1px solid rgba(13,148,136,0.2);
}
.section-tag.light { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.25); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--navy); margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-title.light { color: white; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ========== WHY CHOOSE ========== */
.section-why { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: white; padding: 32px 26px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(10,37,64,0.06);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(30,58,138,0.1));
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-icon svg { width: 28px; height: 28px; }
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white; transform: rotate(-5deg) scale(1.05);
}
.why-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.why-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ========== INLINE FORMS (FIXED VISIBILITY) ========== */
.inline-form-section { padding: 60px 0; background: white; }
.inline-form-card {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 40px; align-items: center;
  padding: 40px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl);
}
.inline-form-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; margin: 12px 0;
  color: white;
}
.inline-form-left p { opacity: 0.9; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.inline-form { display: flex; flex-direction: column; gap: 12px; }
.form-row {
  display: grid; grid-template-columns: 1.2fr 1fr 1.2fr 1fr auto;
  gap: 10px;
}
.inline-form input, .inline-form select {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15); color: white;
  transition: var(--transition);
  font-size: 0.9rem;
}
.inline-form input::placeholder { color: rgba(255,255,255,0.8); }
.inline-form input:focus, .inline-form select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.25);
  outline: none;
}
.inline-form select option { color: var(--text); background: white; }
.inline-form .btn-gold {
  white-space: nowrap;
  padding: 13px 24px;
}

/* ========== STATS ========== */
.section-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white; position: relative; overflow: hidden;
}
.section-stats::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13,148,136,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212,175,55,0.2) 0%, transparent 50%);
}
.stats-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; opacity: 0.85; font-weight: 500; }

/* ========== NEW: PRESENCE SECTION ========== */
.section-presence {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
.section-presence::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.presence-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.presence-map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  min-height: 500px;
}
.presence-map-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  position: absolute; inset: 0;
}
.presence-map-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.7) 0%, rgba(30,58,138,0.5) 100%);
  display: flex; align-items: center; justify-content: center;
}
.presence-map-badge {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}
.presence-map-badge svg { color: var(--teal); flex-shrink: 0; }
.map-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.map-badge-text {
  font-size: 0.9rem; font-weight: 600;
  color: var(--navy); text-transform: uppercase;
  letter-spacing: 1px;
}
.presence-pin {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--gold);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.3), var(--shadow-md);
  animation: pulse-pin 2s infinite;
}
.presence-pin::after {
  content: ''; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--gold);
}
.presence-pin.pin-1 { top: 30%; left: 45%; animation-delay: 0s; }
.presence-pin.pin-2 { top: 50%; left: 60%; animation-delay: 0.5s; }
.presence-pin.pin-3 { top: 40%; left: 70%; animation-delay: 1s; }
.presence-pin.pin-4 { top: 60%; left: 40%; animation-delay: 1.5s; }
.presence-pin.pin-5 { top: 35%; left: 55%; animation-delay: 2s; }

@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,175,55,0.3), var(--shadow-md); }
  50% { box-shadow: 0 0 0 8px rgba(212,175,55,0.1), var(--shadow-md); }
}

.presence-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.presence-column {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.presence-column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.presence-col-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.presence-col-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.india-icon { background: linear-gradient(135deg, #ff9933, #138808); }
.global-icon { background: linear-gradient(135deg, var(--teal), var(--blue)); }
.presence-col-header h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.location-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.location-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.location-list li:hover {
  background: rgba(13,148,136,0.05);
  color: var(--teal);
  transform: translateX(4px);
}
.loc-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.presence-cta-mini {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.presence-cta-mini p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ========== PROGRAMS ========== */
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  position: relative;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.program-image {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--navy));
}
.program-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.program-card:hover .program-image img { transform: scale(1.1); }
.program-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(255,255,255,0.95); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(10px);
}
.program-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.program-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}
.program-body > p {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 16px; line-height: 1.6;
}
.program-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding: 12px 0; margin-bottom: 14px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.program-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-muted);
}
.program-meta-item svg { width: 14px; height: 14px; color: var(--teal); }
.program-benefits {
  list-style: none; margin-bottom: 18px;
}
.program-benefits li {
  font-size: 0.82rem; color: var(--text);
  padding: 4px 0; display: flex; gap: 8px;
}
.program-benefits li::before {
  content: '✓'; color: var(--teal); font-weight: 700;
}
.program-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.program-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(13,148,136,0.35); }
.program-cta svg { width: 16px; height: 16px; }

/* ========== BATCHES ========== */
.section-batches {
  background: linear-gradient(135deg, #f0f9ff 0%, #faf7f2 100%);
}
.batches-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 40px; align-items: start;
}
.countdown-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white; padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: sticky; top: 100px;
}
.countdown-label {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 2px; opacity: 0.8; margin-bottom: 20px;
}
.countdown { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.cd-unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px 14px; min-width: 80px;
  backdrop-filter: blur(10px);
}
.cd-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.cd-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.7; margin-top: 6px; }
.cd-sep { font-size: 2rem; color: var(--gold); align-self: center; font-weight: 300; }
.urgency-row {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.urgency-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  font-size: 0.85rem;
}
.urgency-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.batches-list { display: flex; flex-direction: column; gap: 16px; }
.batch-item {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px; background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.batch-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.batch-date {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white; border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.batch-date .day { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; line-height: 1; }
.batch-date .mon { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }
.batch-info h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.batch-info p { font-size: 0.85rem; color: var(--text-muted); }
.batch-status {
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.batch-status.open { background: rgba(13,148,136,0.1); color: var(--teal); }
.batch-status.filling { background: rgba(245,158,11,0.1); color: var(--gold-light); }

/* ========== EXPERIENCE ========== */
.experience-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.experience-content p { color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
.experience-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.experience-list > li {
  display: flex; gap: 18px;
  padding: 18px; border-radius: var(--radius-md);
  background: white; border: 1px solid var(--border);
  transition: var(--transition);
}
.experience-list > li:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.exp-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(30,58,138,0.1));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.experience-list h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.experience-list p { font-size: 0.88rem; color: #38383b; margin: 0; }
.experience-visual {
  position: relative; height: 520px;
}
.exp-card {
  position: absolute; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
  transition: transform 0.6s;
}
.exp-card img { width: 100%; height: 100%; object-fit: cover; }
.exp-card-1 {
  width: 70%; height: 70%;
  top: 0; right: 0;
  transform: rotate(3deg);
}
.exp-card-2 {
  width: 55%; height: 55%;
  bottom: 0; left: 0;
  transform: rotate(-4deg);
  border: 6px solid white;
}
.experience-visual:hover .exp-card-1 { transform: rotate(0deg) scale(1.02); }
.experience-visual:hover .exp-card-2 { transform: rotate(0deg) scale(1.02); }
.exp-badge {
  position: absolute; bottom: 30%; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}
.exp-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800; line-height: 1;
}
.exp-badge div:last-child { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ========== GALLERY ========== */
.section-gallery { background: var(--cream); }
.gallery-slider {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl);
}
.slider-track {
  display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  flex: 0 0 100%; height: 500px;
  position: relative;
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 300;
  box-shadow: var(--shadow-md);
  transition: var(--transition); z-index: 2;
}
.slider-btn:hover { background: var(--teal); color: white; transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* ========== TESTIMONIALS (DUAL INFINITE SCROLL) ========== */
.section-testimonials {
  background: var(--cream);
  overflow: hidden;
  padding: 100px 0;
}
.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}
.testimonials-row {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.testimonials-row::before,
.testimonials-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-row::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 100%);
}
.testimonials-row::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream) 0%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

/* Top row slides RIGHT (from left to right) */
.top-row .testimonial-track {
  animation: scrollRight 60s linear infinite;
}

/* Bottom row slides LEFT (from right to left) */
.bottom-row .testimonial-track {
  animation: scrollLeft 60s linear infinite;
}

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonials-row:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 400px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-info h5 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========== TRUST ========== */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  padding: 36px 30px; border-radius: var(--radius-lg);
  background: white; border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.trust-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trust-card:hover::after { transform: scaleX(1); }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 16px;
}
.trust-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.trust-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ========== CERTIFICATION ========== */
.section-certification { background: var(--cream); }
.certification-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.cert-visual {
  display: flex; justify-content: center; align-items: center;
  min-height: 400px;
}
.cert-card {
  background: white; padding: 60px 50px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid var(--border);
}
.cert-card::before {
  content: ''; position: absolute; inset: 10px;
  border: 2px dashed var(--gold);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}
.cert-seal {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  animation: float 4s ease-in-out infinite;
}
.cert-seal svg { width: 50px; height: 50px; }
.cert-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--navy); margin-bottom: 8px;
}
.cert-card p { color: var(--text-muted); font-size: 0.9rem; }
.cert-content p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.cert-benefits { list-style: none; margin-bottom: 30px; display: grid; gap: 12px; }
.cert-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--navy); font-weight: 500;
}
.cert-benefits svg {
  width: 22px; height: 22px; color: var(--teal);
  background: rgba(13,148,136,0.1);
  border-radius: 50%; padding: 4px; flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq-wrapper {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 40px; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
}
.faq-item.active { border-color: var(--teal); box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(13,148,136,0.1); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--teal); color: white; transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted); font-size: 0.93rem; line-height: 1.7;
}
.faq-cta {
  padding: 40px 30px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white; text-align: center;
  position: sticky; top: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}
.faq-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 12px; }
.faq-cta p { opacity: 0.85; margin-bottom: 24px; font-size: 0.93rem; }

/* ========== CONTACT ========== */
.section-contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 50px; align-items: stretch;
}
.contact-info p { color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover { transform: translateX(6px); border-color: var(--teal); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.contact-item a:hover { color: var(--teal); }
.contact-map {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); min-height: 500px;
  background: white;
}

/* ========== FINAL CTA ========== */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white; position: relative; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(13,148,136,0.3) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(212,175,55,0.2) 0%, transparent 50%);
}
.cta-card {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.cta-content p { opacity: 0.9; margin-bottom: 30px; line-height: 1.7; font-size: 1.02rem; }
.cta-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-features > div {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 500;
}
.cta-features svg {
  width: 20px; height: 20px; color: var(--gold);
  flex-shrink: 0;
}
.cta-form {
  padding: 26px !important;
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: white;
}
.cta-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin-bottom: 20px;
}
.cta-form input, .cta-form select, .cta-form textarea {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.2) !important;
  color: white !important;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.cta-form select option { color: var(--text); background: white; }

/* ========== FOOTER ========== */
.footer {
  background: #050f1f; color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 50px;
}
.footer-logo .logo-text { color: white; }
.footer-about { font-size: 0.9rem; line-height: 1.7; margin: 18px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: white; font-size: 1rem;
  margin-bottom: 20px; font-weight: 700;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 30px; height: 2px;
  background: var(--gold);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul a:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--gold); }
.footer-bottom {
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold); }

/* ========== FLOATING BUTTONS ========== */
.floating-buttons {
  position: fixed; right: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 90;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}
.float-btn svg { width: 26px; height: 26px; }
.float-label {
  position: absolute; right: calc(100% + 12px);
  background: var(--navy); color: white;
  padding: 6px 12px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
}
.float-btn:hover .float-label { opacity: 1; transform: translateX(0); }
.float-wa { background: #25D366; }
.float-wa:hover { background: #1ebe57; transform: scale(1.1); }
.float-call { background: var(--teal); }
.float-call:hover { background: var(--teal-light); transform: scale(1.1); }
.float-enquiry { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }
.float-enquiry:hover { transform: scale(1.1); }
.float-wa::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: white; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 95;
  padding: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.mobile-bar-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 8px; border-radius: 10px;
  color: white; font-size: 0.72rem; font-weight: 600;
}
.mobile-bar-btn svg { width: 20px; height: 20px; }
.bar-call { background: var(--teal); }
.bar-wa { background: #25D366; }
.bar-enq { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); }

/* ========== POPUPS ========== */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(10,37,64,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.popup-overlay.active { opacity: 1; pointer-events: auto; }
.popup-card {
  background: white; padding: 40px;
  border-radius: var(--radius-xl);
  max-width: 460px; width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh; overflow-y: auto;
}
.popup-overlay.active .popup-card { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,37,64,0.08); color: var(--navy);
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.popup-close:hover { background: var(--navy); color: white; transform: rotate(90deg); }
.popup-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(212,175,55,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
}
.popup-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: #f8fafc;
  text-align: center; margin-bottom: 10px;
}
.popup-card > p { text-align: center; color: var(--text-muted); margin-bottom: 24px; }
.popup-overlay {
  display: none;
}

.popup-overlay.active {
  display: flex;
}
/* ========== TOAST ========== */
.toast {
  position: fixed; top: 24px; right: 24px;
  background: white; padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 14px;
  z-index: 2000;
  transform: translateX(calc(100% + 30px));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--teal);
  max-width: 380px;
}
.toast.show { transform: translateX(0); }
.toast svg {
  width: 32px; height: 32px; color: var(--teal);
  flex-shrink: 0;
  background: rgba(13,148,136,0.1);
  padding: 6px; border-radius: 50%;
}
.toast strong { color: var(--navy); display: block; margin-bottom: 2px; }
.toast p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ========== ANIMATIONS ========== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-20px) rotate(var(--r, 0deg)); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}
@keyframes gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

.glass-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE - MOBILE FIRST FIXES
   ============================================ */
@media (max-width: 1200px) {
  .why-grid, .programs-grid, .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .presence-wrapper { gap: 30px; }
  .presence-locations { gap: 20px; }
  .location-list { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .hero-inner, .batches-wrapper, .experience-grid, .certification-grid, .contact-grid, .cta-card, .faq-wrapper, .presence-wrapper {
    grid-template-columns: 1fr;
  }
   .countdown-card {
    position: static !important;
    width: 100%;
    max-width: 100%;
    margin: 16px 0;
    padding: 4px;
    border-radius: 16px;
  }

  /* countdown boxes layout fix */
  .countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .countdown-box {
    padding: 10px 6px;
    font-size: 12px;
    text-align: center;
    border-radius: 10px;
  }

  .countdown-box span {
    font-size: 16px;
    display: block;
  }

  /* info rows fix */
  .countdown-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  .countdown-info div {
    font-size: 13px;
  }

  /* CTA button fix */
  .countdown-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
  }
  .faq-cta { position: static; }
  .why-grid, .programs-grid, .testimonials-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .inline-form-card { grid-template-columns: 1fr; gap: 24px; padding: 30px; }
  .presence-locations { grid-template-columns: 1fr; }
  .presence-map-card { min-height: 350px; }
  .hero { padding: 60px 0 80px; }
  .section { padding: 70px 0; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column;
    padding: 20px; gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.4s;
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu a { width: 100%; padding: 14px 18px; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; }
  .nav-toggle { display: block; }
  .top-header-info { display: none; }
  .top-header-inner { justify-content: center; }
  .floating-buttons { right: 16px; bottom: 90px; }
  .float-btn { width: 50px; height: 50px; }
  .float-label { display: none; }
  .mobile-sticky-bar { display: grid; }
  body { padding-bottom: 0px; }
  .hero-scroll { display: none; }
  .experience-visual { height: 400px; }
  .exp-card-1 { width: 75%; height: 75%; }
  .exp-card-2 { width: 60%; height: 60%; }
  .testimonial-card { width: 320px; padding: 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; 
        overflow: hidden;}
  .why-grid, .programs-grid, .testimonials-grid, .trust-grid, .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-highlights { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: 1.7rem; }
  .form-card { padding: 26px 22px; }
  .slide { height: 320px; }
  .cd-unit { min-width: 65px; padding: 12px 8px; }
  .cd-num { font-size: 1.8rem; }
  .batch-item { grid-template-columns: auto 1fr; gap: 14px; padding: 16px; }
  .batch-status { grid-column: 1 / -1; justify-self: start; }
  .popup-card { padding: 30px 24px; }
  .cta-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .toast { right: 12px; left: 12px; max-width: none; }
  .floating-buttons { right: 12px; bottom: 30px; gap: 10px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 22px; height: 22px; }
  .presence-column { padding: 24px; }
  .presence-col-header h3 { font-size: 0.85rem; }
  .location-list li { font-size: 0.85rem; padding: 6px 10px; }
  .testimonial-card { width: 280px; padding: 20px; }
  .testimonial-text { font-size: 0.88rem; }
  .inline-form-card { padding: 24px; }
  .inline-form-left h3 { font-size: 1.4rem; }
  .inline-form .btn-gold { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* rope line css section start */
.rope-cinema{
  background: radial-gradient(circle at top, #0b1220, #070b14);
  padding:80px 20px;
  overflow:hidden;
  color:#fff;
}

/* TRUST */
.trust-wrap{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:70px;
}

.trust-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:18px 12px;
  text-align:center;
  backdrop-filter: blur(14px);
  transition:.35s ease;
}

.trust-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,0.07);
}

.trust-card span{
  font-size:24px;
  display:block;
  margin-bottom:8px;
}

.trust-card p{
  font-size:13px;
  color:#183353;
}

/* ROPE */
.rope-row{
  position:relative;
  margin:70px 0;
}

.rope{
  position:absolute;
  top:50%;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

/* MARQUEE FIX (REAL INFINITE LOOP) */
.marquee{
  overflow:hidden;
}

.track{
  display:flex;
  width:max-content;
  animation:scroll 28s linear infinite;
  will-change:transform;
}

.marquee.reverse .track{
  animation:scrollReverse 28s linear infinite;
}

.set{
  display:flex;
  gap:18px;
  padding-right:18px;
}

/* IMAGE CARD */
.set img{
  width:140px;
  height:180px;
  object-fit:cover;
  border-radius:16px;

  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 12px 30px rgba(0,0,0,0.5);

  transition:.35s ease;
  filter:brightness(0.9);
}

.set img:hover{
  transform:scale(1.07);
  filter:brightness(1.05);
}

/* LOOP ANIMATION (IMPORTANT FIX) */
@keyframes scroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-50%);}
}

@keyframes scrollReverse{
  0%{transform:translateX(-50%);}
  100%{transform:translateX(0);}
}

/* MOBILE */
@media(max-width:768px){
  .trust-wrap{
    grid-template-columns:repeat(2,1fr);
  }

  .set img{
    width:115px;
    height:150px;
  }

  .track{
    animation-duration:20s;
  }
}