/* ===== ASPIRA AIR-1 — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #121f36;
  --navy-light: #1a2d4d;
  --gold: #2ebd59;
  --gold-light: #5ce888;
  --gold-dark: #22a348;
  --electric: #3b82f6;
  --electric-light: #60a5fa;
  --teal: #14b8a6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --red: #ef4444;
  --green: #22c55e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.15);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.site-header.scrolled { background: rgba(10,22,40,.98); box-shadow: var(--shadow-lg); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; width: auto; }
.logo-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px; color: var(--navy);
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white); }
.logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 14px;
  color: var(--gray-300); transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important; font-weight: 700 !important; padding: 10px 22px !important;
  border-radius: 10px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(46,189,89,.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy); flex-direction: column; padding: 32px 24px; gap: 8px;
    transform: translateX(100%); transition: var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; padding: 14px 20px; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59,130,246,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(46,189,89,.08) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 60px; }
.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,189,89,.12); border: 1px solid rgba(46,189,89,.25);
  padding: 6px 16px; border-radius: 99px; font-size: 13px; font-weight: 600;
  color: var(--gold-light); margin-bottom: 28px;
  animation: fadeInUp .8s ease both;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s infinite; }

.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 24px;
  animation: fadeInUp .8s ease .15s both;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .electric { color: var(--electric-light); }

.hero-sub {
  font-size: 18px; color: var(--gray-400); line-height: 1.7; margin-bottom: 40px;
  max-width: 560px; animation: fadeInUp .8s ease .3s both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp .8s ease .45s both;
}

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  animation: fadeInUp .8s ease .6s both;
}
.hero-stats .stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--gold);
}
.hero-stats .stat-label { font-size: 13px; color: var(--gray-400); margin-top: 4px; }

/* floating shapes */
.hero-float {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .15;
}
.hero-float-1 { width: 300px; height: 300px; background: var(--gold); top: 10%; right: 5%; animation: float 8s ease-in-out infinite; }
.hero-float-2 { width: 200px; height: 200px; background: var(--electric); bottom: 15%; right: 25%; animation: float 10s ease-in-out 2s infinite; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); box-shadow: 0 4px 20px rgba(46,189,89,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,189,89,.45); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--navy); color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ===== SECTION DEFAULTS ===== */
section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold-dark); margin-bottom: 16px;
}
.section-label .line { width: 32px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 20px;
}
.section-desc { font-size: 17px; color: var(--gray-500); max-width: 600px; line-height: 1.7; }

/* ===== WHY ASPIRA (FEATURES) ===== */
.features { background: var(--gray-50); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px; margin-top: 52px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--electric)); opacity: 0; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.feature-icon.gold { background: rgba(46,189,89,.1); }
.feature-icon.blue { background: rgba(59,130,246,.1); }
.feature-icon.teal { background: rgba(20,184,166,.1); }
.feature-icon.red { background: rgba(239,68,68,.08); }

.feature-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ===== PROGRAMS ===== */
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 52px;
}
.program-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); background: var(--white);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.program-header {
  padding: 32px 28px 24px; position: relative;
}
.program-header.jee-adv { background: linear-gradient(135deg, #1e3a5f, #0a1628); }
.program-header.jee-main { background: linear-gradient(135deg, #1a4731, #0a2818); }
.program-header.neet { background: linear-gradient(135deg, #4a1942, #2a0e28); }
.program-header.foundation { background: linear-gradient(135deg, #3d2e0a, #1a1400); }

.program-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold-light); margin-bottom: 12px;
}
.program-header h3 { font-family: var(--font-display); font-size: 24px; color: var(--white); font-weight: 700; }
.program-header p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 8px; }

.program-body { padding: 24px 28px 28px; }
.program-body ul { display: flex; flex-direction: column; gap: 12px; }
.program-body li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600);
}
.program-body li::before {
  content: '✓'; font-weight: 700; color: var(--green); flex-shrink: 0; margin-top: 1px;
}
.program-body .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ===== RESULTS / STATS ===== */
.results { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.results::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(46,189,89,.06), transparent);
}
.results .section-label { color: var(--gold-light); }
.results .section-title { color: var(--white); }
.results .section-desc { color: var(--gray-400); }

.results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; margin-top: 52px;
}
.result-card {
  text-align: center; padding: 36px 20px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.result-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.result-num {
  font-family: var(--font-display); font-size: 48px; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.result-label { font-size: 14px; color: var(--gray-400); margin-top: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px; margin-top: 52px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card .quote { font-size: 15px; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-card .quote::before { content: '"'; font-family: var(--font-display); font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -16px; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--electric));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 16px;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial-rank { font-size: 13px; color: var(--gold-dark); font-weight: 600; }

/* ===== CENTERS ===== */
.centers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 52px;
}
.center-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.center-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.center-img {
  height: 180px; background-size: cover; background-position: center;
  position: relative;
}
.center-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,.6));
}
.center-info { padding: 24px; }
.center-info h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.center-info p { font-size: 14px; color: var(--gray-500); margin-bottom: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(46,189,89,.1), transparent 60%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white); font-weight: 800; margin-bottom: 16px;
}
.cta-banner p { color: var(--gray-400); font-size: 17px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: var(--gray-400); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand p { font-size: 14px; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--gray-400); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats .stat-num { font-size: 28px; }
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(59,130,246,.08), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white); font-weight: 800; margin-bottom: 16px;
}
.page-hero p { color: var(--gray-400); font-size: 18px; max-width: 600px; }

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content p { margin-bottom: 20px; font-size: 16px; }
.about-image {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
}
.about-image-placeholder {
  font-family: var(--font-display); font-size: 64px; color: var(--gold); opacity: .3;
}

.timeline { margin-top: 52px; max-width: 700px; margin-left: auto; margin-right: auto; }
.timeline-item {
  display: flex; gap: 28px; padding-bottom: 40px; position: relative;
}
.timeline-item::before {
  content: ''; position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--navy);
}
.timeline-content h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: var(--gray-500); }

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-200);
}
.contact-info-card .icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(46,189,89,.1); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-card h4 { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray-500); }

.contact-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; transition: var(--transition);
  background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(46,189,89,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== FACULTY ===== */
.faculty-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 52px;
}
.faculty-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); text-align: center; transition: var(--transition);
}
.faculty-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.faculty-photo {
  height: 220px; background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.faculty-photo .initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy);
}
.faculty-info { padding: 24px; }
.faculty-info h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); }
.faculty-info .subject { font-size: 14px; color: var(--gold-dark); font-weight: 600; margin-top: 4px; }
.faculty-info .credentials { font-size: 13px; color: var(--gray-500); margin-top: 8px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 52px auto 0; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; background: var(--white);
}
.faq-q {
  padding: 20px 24px; font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition); font-size: 15px;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q .arrow { transition: var(--transition); font-size: 18px; color: var(--gray-400); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold); overflow: hidden; padding: 12px 0;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-weight: 700; font-size: 14px; color: var(--navy); text-transform: uppercase; letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
