/* ============================================================
   MATRIX GROUP OF EDUCATION — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --gold:        #00b5b8;
  --gold-light:  #4dd4d6;
  --gold-dark:   #008a8c;
  --gold-dim:    rgba(0,181,184,0.12);
  --navy:        #0d0d0d;
  --navy-mid:    #161616;
  --navy-light:  #222222;
  --navy-card:   #1c1c1c;
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --text:        #f0f0f0;
  --text-muted:  #999999;
  --green:       #22c55e;
  --red:         #ef4444;
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(0,181,184,0.3);
  --shadow-gold: 0 8px 32px rgba(0,181,184,0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Outfit', sans-serif;
  --nav-h:       76px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--navy); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Noise texture */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.25;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 600; }
.display-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
}
.section-title em, .display-title em { font-style: normal; color: var(--gold); }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--border-gold);
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-tag::before { content: '◆'; font-size: 0.5rem; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; max-width: 560px; }

/* ─── LAYOUT ─── */
.container { width: min(1200px, 94%); margin: 0 auto; }
section { padding: 6rem 0; }
.page-hero { padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; background: var(--navy-mid); }
.page-hero .container { display: grid; gap: 1.5rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero p { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); } .breadcrumb span { opacity: 0.4; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem; transition: var(--transition); border: none; }
.btn-primary { background: linear-gradient(135deg, #00b5b8, #008a8c); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,166,35,0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid var(--border-gold); }
.btn-secondary:hover { background: var(--gold-dim); border-color: var(--gold); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(10,15,44,0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
#navbar.scrolled { border-bottom-color: var(--border-gold); box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 16px; height: 2px; background: var(--gold); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--gold); }
.nav-phone svg { width: 16px; height: 16px; }
/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 30%, rgba(0,181,184,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(17,23,64,0.9) 0%, transparent 70%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.045;
  background-image:
    linear-gradient(rgba(0,181,184,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,181,184,1) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  right: -100px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0,181,184,0.08) 0%, transparent 70%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; background: var(--gold-dim); border: 1px solid var(--border-gold); padding: 0.5rem 1.1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; }
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.hero h1 { margin-bottom: 1.2rem; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-gold); }

/* ─── GUARANTEE STRIP ─── */
.guarantee-strip {
  background: linear-gradient(135deg, #008a8c 0%, #00b5b8 50%, #008a8c 100%);
  padding: 1.1rem 0; overflow: hidden; position: relative;
}
.guarantee-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.05) 40px, rgba(255,255,255,0.05) 41px
  );
}
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; }
.strip-item { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.strip-item .icon { font-size: 1.1rem; }
.strip-divider { width: 1px; height: 20px; background: rgba(10,15,44,0.2); }

/* ─── CARDS ─── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover::before { opacity: 1; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-dim); border: 1px solid var(--border-gold); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1.4rem; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; font-family: var(--font-body); font-weight: 700; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── GRID LAYOUTS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }

/* ─── SECTION BACKGROUNDS ─── */
.bg-mid { background: var(--navy-mid); }
.bg-navy { background: var(--navy); }
.bg-card { background: var(--navy-card); }

/* ─── INTERNSHIP SECTION ─── */
.internship-number { font-family: var(--font-display); font-size: 7rem; font-weight: 900; color: var(--gold); line-height: 1; }
.internship-number sub { font-size: 2.5rem; vertical-align: baseline; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── CERT CARDS ─── */
.cert-card { background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; transition: var(--transition); }
.cert-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.cert-logo { width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, #008a8c, #00b5b8); margin: 0 auto 1.1rem; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 1rem; color: var(--white); }
.cert-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ─── TAX MODULE PILLS ─── */
.tax-pill { background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: 10px; padding: 1.3rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.tax-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 5px; }
.tax-pill strong { font-size: 0.95rem; font-weight: 600; display: block; margin-bottom: 0.2rem; }
.tax-pill span { font-size: 0.8rem; color: var(--text-muted); }

/* ─── MODULE CARDS ─── */
.module-card { background: var(--navy-light); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
.module-card:hover { border-color: var(--border-gold); }
.module-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, #00b5b8, #008a8c); display: grid; place-items: center; font-family: var(--font-body); font-weight: 800; font-size: 0.82rem; color: var(--white); }
.module-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.module-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; }

/* ─── SEATS WARNING ─── */
.seats-warning { background: linear-gradient(135deg, #001a1a, #002a2a); border: 1px solid rgba(0,181,184,0.35); border-radius: var(--radius); padding: 2rem 2.5rem; display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.warning-icon { font-size: 2.5rem; flex-shrink: 0; }
.seats-warning h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem; }
.seats-warning p { font-size: 0.9rem; color: var(--text-muted); max-width: 500px; }
.seats-warning .btn { flex-shrink: 0; }

/* ─── CTA SECTION ─── */
.cta-section { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); border-top: 1px solid var(--border); padding: 5rem 0; text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.phone-cards { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.phone-card { background: var(--gold-dim); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 1.2rem 2rem; text-decoration: none; transition: var(--transition); text-align: center; }
.phone-card:hover { background: rgba(245,166,35,0.2); transform: translateY(-3px); }
.phone-card .ph-icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
.phone-card .ph-label { font-size: 0.72rem; color: var(--text-muted); }
.phone-card .ph-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--gold); }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; transition: border-color var(--transition); }
.contact-info-item:hover { border-color: var(--border-gold); }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-dim); border: 1px solid var(--border-gold); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-item p { font-size: 0.95rem; font-weight: 500; }
.contact-info-item a { color: var(--gold); }
/* Form */
.contact-form { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.contact-form p.sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem; color: var(--white); font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(0,181,184,0.1);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; font-weight: 700; border-radius: 10px; }
.form-success { display: none; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--green); font-size: 0.9rem; margin-top: 1rem; text-align: center; }

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius);
  height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--text-muted); font-size: 0.9rem; margin-top: 2rem;
}
.map-placeholder .map-icon { font-size: 2.5rem; }

/* ─── ABOUT PAGE ─── */
.about-visual { position: relative; }
.about-visual img { width: 100%; border-radius: var(--radius-lg); }
.about-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--navy-card); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 1.2rem 1.5rem; }
.about-badge .ab-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--gold); }
.about-badge p { font-size: 0.8rem; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.value-card { background: var(--navy-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--border-gold); }
.value-card .v-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.8rem; color: var(--text-muted); }
.team-card { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: var(--transition); }
.team-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #008a8c, #00b5b8); margin: 0 auto 1rem; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.6rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 0; cursor: pointer; font-weight: 600; font-size: 0.97rem; gap: 1rem; transition: color var(--transition); }
.faq-question:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border-gold); display: grid; place-items: center; font-size: 1rem; transition: transform var(--transition); color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer p { padding-bottom: 1.2rem; color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── TESTIMONIALS ─── */
.testimonial-card { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; }
.testimonial-card .quote { font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; opacity: 0.6; font-family: Georgia; }
.testimonial-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #008a8c, #00b5b8); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.author-info strong { font-size: 0.9rem; display: block; }
.author-info span { font-size: 0.78rem; color: var(--gold); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 2px; }

/* ─── FLOATING WIDGETS ─── */
.floating-actions { position: fixed; bottom: 28px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab { display: flex; align-items: center; justify-content: center; gap: 0.6rem; width: 58px; height: 58px; border-radius: 50%; border: none; font-size: 1.5rem; text-decoration: none; box-shadow: 0 6px 24px rgba(0,0,0,0.35); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.fab:hover { transform: translateY(-3px) scale(1.06); }
.fab-whatsapp { background: #25D366; color: white; }
.fab-whatsapp:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.fab-call { background: linear-gradient(135deg, #00b5b8, #008a8c); color: var(--white); }
.fab-call:hover { box-shadow: 0 8px 28px rgba(245,166,35,0.5); }
.fab-label { position: absolute; right: calc(100% + 12px); background: var(--navy-card); border: 1px solid var(--border); border-radius: 6px; padding: 0.3rem 0.75rem; font-size: 0.8rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition); color: var(--white); }
.fab:hover .fab-label { opacity: 1; }
/* Pulse ring on call button */
.fab-call::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--gold); animation: ring-pulse 2s infinite; }
@keyframes ring-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }

/* ─── FOOTER ─── */
footer { background: var(--navy-mid); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand img { height: 48px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: var(--navy-light); border: 1px solid var(--border); display: grid; place-items: center; font-size: 0.9rem; transition: var(--transition); }
.social-btn:hover { background: var(--gold-dim); border-color: var(--border-gold); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.88rem; color: var(--text-muted); }
.footer-contact-item .fci { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; margin-top: 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.anim-1 { animation: fadeInUp 0.7s 0.1s both; }
.anim-2 { animation: fadeInUp 0.7s 0.2s both; }
.anim-3 { animation: fadeInUp 0.7s 0.3s both; }
.anim-4 { animation: fadeInUp 0.7s 0.4s both; }
.anim-5 { animation: fadeInUp 0.7s 0.5s both; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--navy); border-bottom: 1px solid var(--border); flex-direction: column; padding: 1.5rem; gap: 0.25rem; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-phone { display: none; }
  .hero-stats { gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .seats-warning { flex-direction: column; text-align: center; }
  .strip-divider { display: none; }
  section { padding: 4rem 0; }
  .about-badge { position: static; margin-top: 1rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .phone-cards { flex-direction: column; align-items: center; }
}
