/* ============================================================
   MLZS Pusad – Brand Design System
   Brand: Deep Blue #0d2d6e | Orange #f58220 | White #fff
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --blue:       #0d2d6e;
  --blue-dark:  #081e4a;
  --blue-mid:   #1a4a9c;
  --blue-light: #e8eef8;
  --orange:     #f58220;
  --orange-dk:  #d96b10;
  --orange-lt:  #fff3e6;
  --white:      #ffffff;
  --gray-50:    #f8f9fa;
  --gray-100:   #f1f3f5;
  --gray-200:   #e9ecef;
  --gray-500:   #6c757d;
  --gray-700:   #495057;
  --gray-900:   #212529;
  --success:    #28a745;
  --font-main:  'Nunito', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(13,45,110,.08);
  --shadow:     0 8px 32px rgba(13,45,110,.12);
  --shadow-lg:  0 20px 60px rgba(13,45,110,.18);
  --trans:      .3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--gray-900); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-main); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: var(--gray-700); }
.serif { font-family: var(--font-serif); }

/* ── Layout ── */
.container  { width: 90%; max-width: 1180px; margin: 0 auto; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; 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; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 2rem; border-radius: 50px; font-weight: 700; font-size: .95rem; transition: all var(--trans); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(245,130,32,.35); }
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,130,32,.45); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ── Section Labels ── */
.section-label { display: inline-flex; align-items: center; gap: .5rem; background: var(--orange-lt); color: var(--orange-dk); padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { color: var(--blue); margin-bottom: .75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); max-width: 600px; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Announcement Bar ── */
.announcement-bar { background: var(--blue); color: var(--white); padding: .5rem 0; font-size: .85rem; font-weight: 600; }
.announcement-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.announcement-bar a { color: var(--orange); text-decoration: underline; }
.marquee-wrap { overflow: hidden; flex: 1; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Header / Navbar ── */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); }
.navbar { padding: .9rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo-wrap { display: flex; align-items: center; gap: .75rem; }
.logo-wrap img { height: 54px; width: auto; }
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; font-size: 1rem; font-weight: 900; color: var(--blue); }
.logo-text span { font-size: .75rem; color: var(--gray-500); }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: .3rem; padding: .5rem .75rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .88rem; color: var(--gray-700); transition: all var(--trans); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-light); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--trans); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--trans); z-index: 100; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: .75rem; padding: .6rem .9rem; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; color: var(--gray-700); transition: all var(--trans); }
.dropdown a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown a .d-icon { width: 32px; height: 32px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown a .d-icon svg { width: 16px; height: 16px; color: var(--blue); }
.nav-cta { margin-left: .5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all var(--trans); }

/* ── Mobile Nav ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; overflow-y: auto; padding: 1.5rem; }
.mobile-nav.open { display: block; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-nav a { display: block; padding: .85rem 1rem; border-bottom: 1px solid var(--gray-200); font-weight: 700; color: var(--gray-900); font-size: 1rem; }
.mobile-nav a.sub { padding-left: 2rem; font-weight: 600; color: var(--gray-500); font-size: .9rem; }
.mobile-nav-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }

/* ── Hero Section ── */
.hero { position: relative; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%); color: var(--white); padding: 80px 0 100px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(245,130,32,.2); border: 1px solid rgba(245,130,32,.4); color: var(--orange); padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.15rem; opacity: .85; max-width: 500px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; }
.trust-item strong { font-size: 1.3rem; font-weight: 900; color: var(--orange); }
.trust-item span { font-size: .8rem; opacity: .75; line-height: 1.2; }
.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 1.5rem; }
.hero-img-wrap { border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.1); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap img { width: 100%; object-fit: cover; }
.hero-badges { position: absolute; background: var(--white); border-radius: var(--radius); padding: .75rem 1rem; box-shadow: var(--shadow); }
.hero-badges-1 { top: -16px; right: -16px; }
.hero-badges-2 { bottom: -16px; left: -16px; }
.badge-mini { display: flex; align-items: center; gap: .5rem; }
.badge-mini .icon { width: 36px; height: 36px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.badge-mini .icon svg { color: var(--blue); width: 18px; height: 18px; }
.badge-mini strong { display: block; font-size: .9rem; color: var(--blue); }
.badge-mini span { font-size: .75rem; color: var(--gray-500); }
.hero-scroll { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .25rem; opacity: .6; }
.hero-scroll span { font-size: .75rem; letter-spacing: .1em; }
.scroll-dot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; animation: scrollBounce 1.5s infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── Stats Bar ── */
.stats-bar { background: var(--blue); color: var(--white); padding: 2rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 1rem; }
.stat-item { padding: 1rem; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.2); }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--orange); display: block; }
.stat-label { font-size: .85rem; opacity: .75; }

/* ── Lead Capture Form ── */
.lead-form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
.lead-form h3 { color: var(--blue); margin-bottom: .5rem; }
.lead-form p { font-size: .9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: .85rem; font-weight: 700; color: var(--gray-700); margin-bottom: .35rem; }
input, select, textarea { width: 100%; padding: .75rem 1rem; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem; transition: border-color var(--trans); background: var(--white); color: var(--gray-900); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; }
.form-note { font-size: .78rem; color: var(--gray-500); margin-top: .75rem; text-align: center; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 1rem; border-radius: var(--radius-sm); text-align: center; font-weight: 600; margin-top: 1rem; }
.form-success.show { display: block; }

/* ── About Section ── */
.about-highlight { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.highlight-item { display: flex; align-items: flex-start; gap: .75rem; }
.h-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.h-icon svg { width: 20px; height: 20px; color: var(--blue); }
.h-text strong { display: block; font-weight: 700; color: var(--blue); font-size: .95rem; }
.h-text span { font-size: .85rem; color: var(--gray-500); }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; min-height: 400px; background: var(--blue-light); }
.about-badge { position: absolute; background: var(--orange); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius); bottom: 20px; right: -20px; text-align: center; box-shadow: var(--shadow); }
.about-badge strong { display: block; font-size: 2rem; font-weight: 900; }
.about-badge span { font-size: .8rem; }
.about-cbse { background: var(--blue-light); border-left: 4px solid var(--blue); padding: .75rem 1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .9rem; font-weight: 600; color: var(--blue); }

/* ── Program Cards ── */
.program-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: all var(--trans); }
.program-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.prog-header { background: var(--blue); color: var(--white); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: .75rem; }
.prog-header.orange { background: var(--orange); }
.prog-icon { width: 44px; height: 44px; background: rgba(255,255,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.prog-icon svg { width: 22px; height: 22px; }
.prog-header h4 { font-size: 1rem; margin-bottom: .15rem; }
.prog-header span { font-size: .8rem; opacity: .8; }
.prog-body { padding: 1.25rem 1.5rem; }
.prog-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.tag { background: var(--blue-light); color: var(--blue); padding: .3rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.tag.orange { background: var(--orange-lt); color: var(--orange-dk); }

/* ── Litera Octave ── */
.octave-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.octave-item { text-align: center; padding: 1.75rem 1.25rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: all var(--trans); border-bottom: 3px solid transparent; }
.octave-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-bottom-color: var(--orange); }
.octave-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--blue-light), #c5d5f0); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.octave-icon svg { width: 32px; height: 32px; color: var(--blue); }
.octave-item h4 { color: var(--blue); font-size: .95rem; margin-bottom: .5rem; }
.octave-item p { font-size: .82rem; }

/* ── Why Choose ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); transition: all var(--trans); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card:nth-child(3n+2)::before { background: linear-gradient(90deg, var(--orange), var(--orange-dk)); }
.why-number { font-size: 3rem; font-weight: 900; color: var(--blue-light); line-height: 1; margin-bottom: .5rem; }
.why-card h4 { color: var(--blue); margin-bottom: .5rem; font-size: 1rem; }
.why-card p { font-size: .88rem; }

/* ── Testimonials ── */
.testimonials-section { background: var(--blue); color: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 1.75rem; transition: all var(--trans); }
.testi-card:hover { background: rgba(255,255,255,.12); }
.testi-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testi-text { font-size: .9rem; opacity: .85; line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 44px; height: 44px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--orange); }
.testi-name strong { display: block; font-size: .9rem; }
.testi-name span { font-size: .78rem; opacity: .7; }

/* ── FAQ Accordion ── */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 2px solid var(--gray-200); overflow: hidden; transition: border-color var(--trans); }
.faq-item.active { border-color: var(--blue); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 700; font-size: 1rem; color: var(--gray-900); transition: color var(--trans); }
.faq-item.active .faq-question { color: var(--blue); }
.faq-icon { width: 28px; height: 28px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--trans); }
.faq-icon svg { width: 14px; height: 14px; color: var(--blue); transition: transform var(--trans); }
.faq-item.active .faq-icon { background: var(--blue); }
.faq-item.active .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: .95rem; color: var(--gray-700); border-top: 1px solid var(--gray-200); padding-top: 1rem; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ── CTA Banner ── */
.cta-section { background: linear-gradient(135deg, var(--orange), var(--orange-dk)); color: var(--white); padding: 70px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; opacity: .9; max-width: 600px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--orange-dk); }
.btn-white:hover { background: var(--orange-lt); }

/* ── Gallery Grid ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--blue-light); position: relative; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--trans); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,45,110,.7), transparent); opacity: 0; transition: opacity var(--trans); display: flex; align-items: flex-end; padding: 1rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: var(--white); font-size: .85rem; font-weight: 700; }

/* ── Events/News ── */
.event-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; gap: 0; transition: all var(--trans); }
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-date { background: var(--blue); color: var(--white); padding: 1rem .75rem; text-align: center; min-width: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.event-date strong { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.event-date span { font-size: .75rem; text-transform: uppercase; opacity: .8; }
.event-content { padding: 1rem 1.25rem; }
.event-content h4 { color: var(--blue); font-size: .95rem; margin-bottom: .25rem; }
.event-content p { font-size: .83rem; }

/* ── Facilities Cards ── */
.facility-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--trans); }
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fac-img { height: 160px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fac-img svg { width: 64px; height: 64px; color: var(--blue); opacity: .3; }
.fac-body { padding: 1.25rem; }
.fac-body h4 { color: var(--blue); margin-bottom: .4rem; }
.fac-body p { font-size: .85rem; }

/* ── Leadership ── */
.leader-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; box-shadow: var(--shadow-sm); }
.leader-avatar { width: 80px; height: 80px; background: var(--blue-light); border-radius: 50%; margin: 0 auto .75rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: var(--blue); overflow: hidden; }
.leader-avatar img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h4 { color: var(--blue); }
.leader-card .role { font-size: .85rem; color: var(--orange); font-weight: 700; margin-bottom: .75rem; }
.leader-card blockquote { font-size: .88rem; color: var(--gray-500); font-style: italic; border-left: 3px solid var(--orange); padding-left: .75rem; text-align: left; }

/* ── Footer ── */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 50px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--trans); }
.social-btn:hover { background: var(--orange); }
.social-btn svg { width: 18px; height: 18px; }
.footer-col h5 { color: var(--white); font-size: .95rem; margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .85rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .75rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: .85rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--white); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── Sticky WhatsApp ── */
.sticky-wa { position: fixed; bottom: 24px; right: 24px; z-index: 998; display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; }
.wa-btn { width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all var(--trans); animation: waPulse 2s infinite; }
.wa-btn:hover { transform: scale(1.1); animation: none; }
.wa-btn svg { width: 28px; height: 28px; color: white; }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.7); } }
.call-btn { width: 48px; height: 48px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(245,130,32,.35); transition: all var(--trans); }
.call-btn:hover { transform: scale(1.1); }
.call-btn svg { width: 22px; height: 22px; color: white; }

/* ── Page Hero (inner pages) ── */
.page-hero { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: var(--white); padding: 60px 0; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: .5rem; }
.page-hero p { opacity: .8; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; opacity: .7; margin-bottom: 1rem; }
.breadcrumb a { opacity: .7; }
.breadcrumb span { opacity: .5; }

/* ── Inline CTA strip ── */
.inline-cta { background: var(--blue-light); border-radius: var(--radius-lg); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin: 3rem 0; flex-wrap: wrap; }
.inline-cta h4 { color: var(--blue); margin-bottom: .25rem; }
.inline-cta p { font-size: .9rem; margin: 0; }

/* ── Admission Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light)); z-index: 0; }
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num { width: 60px; height: 60px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; margin: 0 auto 1rem; border: 4px solid var(--white); box-shadow: var(--shadow); }
.step-item h4 { color: var(--blue); font-size: .95rem; margin-bottom: .4rem; }
.step-item p { font-size: .85rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .octave-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 56px 0 70px; }
  .hero .grid-2 { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .octave-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inline-cta { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .why-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Utilities ── */
.bg-blue { background: var(--blue); color: var(--white); }
.bg-blue .section-title { color: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-orange { background: var(--orange); color: var(--white); }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none; }

/* ── Animate on Scroll ── */
.aos { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
.aos-left.visible { opacity: 1; transform: translateX(0); }
.aos-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
.aos-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Schema/SEO helpers (hidden) ── */
[itemprop] {}
