/* ═══════════════════════════════════════════
   ABUL HASAN HIGH SCHOOL – SHARED STYLESHEET
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --green:        #1a7c3e;
  --green-light:  #23a455;
  --green-dark:   #0d3d22;
  --red:          #c0392b;
  --blue:         #1a4fa0;
  --yellow:       #f0c500;
  --yellow-dark:  #d4a800;
  --white:        #ffffff;
  --off-white:    #f8f9fa;
  --text-dark:    #1a1a2e;
  --text-mid:     #3d3d5c;
  --text-light:   #6b7280;
  --border:       #e5e7eb;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.12);
  --radius:       12px;
  --radius-lg:    20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── UTILITIES ── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-desc  { margin: 0 auto; }

.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 30px; height: 3px;
  background: var(--yellow); border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.25; color: var(--text-dark); margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem; color: var(--text-light); line-height: 1.78; max-width: 560px;
}
section { padding: 80px 0; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--yellow); color: var(--text-dark); font-weight: 700;
  font-size: 0.9rem; padding: 14px 30px; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s; border: 2px solid var(--yellow);
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(240,197,0,0.35); }
.btn-outline {
  background: transparent; color: var(--green); font-weight: 600;
  font-size: 0.9rem; padding: 13px 28px; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--green); transition: all .25s;
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-white {
  background: transparent; color: #fff; font-weight: 600;
  font-size: 0.9rem; padding: 13px 28px; border-radius: 50px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.45); transition: all .25s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); }

/* ── TOP BAR ── */
.top-bar { background: var(--green); color: #fff; font-size: 0.8rem; padding: 7px 0; }
.top-bar .tb-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: #fff; text-decoration: none; }
.top-bar .tb-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar .tb-contacts span { display: flex; align-items: center; gap: 6px; }
.top-bar .tb-social { display: flex; gap: 8px; }
.top-bar .tb-social a {
  width: 26px; height: 26px; background: rgba(255,255,255,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; transition: background .2s;
}
.top-bar .tb-social a:hover { background: var(--yellow); color: var(--green); }

/* ── HEADER ── */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-wrap svg { width: 60px; height: auto; }
.logo-text h1 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green); line-height: 1.2; }
.logo-text p  { font-size: .7rem; color: var(--red); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* NAV */
nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
nav ul li { position: relative; }
nav ul li a {
  font-size: .87rem; font-weight: 500; color: var(--text-dark);
  text-decoration: none; padding: 9px 13px; border-radius: 6px;
  display: flex; align-items: center; gap: 4px; transition: all .2s; white-space: nowrap;
}
nav ul li a:hover,
nav ul li a.active { background: var(--green); color: #fff; }
.nav-btn { background: var(--yellow) !important; color: var(--text-dark) !important; font-weight: 700 !important; border-radius: 50px !important; }
.nav-btn:hover { background: var(--yellow-dark) !important; color: var(--text-dark) !important; }

/* Dropdown */
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: 8px; min-width: 200px; box-shadow: var(--shadow-lg); padding: 6px 0; z-index: 200; }
nav ul li:hover .dropdown { display: block; animation: dropIn .2s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.dropdown li a { border-radius: 0; padding: 10px 18px; font-size: .85rem; color: var(--text-dark); }
.dropdown li a:hover { background: var(--off-white); color: var(--green); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--blue) 100%);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' 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='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; color: #fff; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 14px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.75); list-style: none; }
.breadcrumb li a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
.breadcrumb li a:hover { color: var(--yellow); }
.breadcrumb li.sep::before { content: '/'; margin: 0 2px; }
.breadcrumb li.current { color: var(--yellow); font-weight: 600; }

/* ── MOBILE NAV PANEL ── */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; }
.mobile-nav-panel {
  position: fixed; top: 0; right: -100%; width: min(320px,85vw); height: 100%;
  background: #fff; z-index: 999; padding: 24px;
  overflow-y: auto; transition: right .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav-panel.open { right: 0; }
.mobile-close-btn {
  display: flex; align-items: center; justify-content: flex-end; margin-bottom: 20px;
}
.mobile-close-btn button { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-dark); }
.mobile-nav-panel ul { list-style: none; }
.mobile-nav-panel > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav-panel > ul > li > a { display: block; padding: 13px 0; font-size: .95rem; font-weight: 500; text-decoration: none; color: var(--text-dark); }
.mob-sub { padding: 4px 0 8px 16px; display: none; }
.mob-sub.show { display: block; }
.mob-sub li a { display: block; padding: 8px 0; font-size: .85rem; color: var(--text-light); text-decoration: none; }
.mob-sub li a:hover { color: var(--green); }
.mobile-cta-btn { display: block; text-align: center; background: var(--yellow); color: var(--text-dark); font-weight: 700; padding: 14px; border-radius: 50px; text-decoration: none; margin-top: 20px; }

/* ── FOOTER ── */
footer { background: #0a180d; color: rgba(255,255,255,.72); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand-desc { font-size: .85rem; line-height: 1.75; margin: 14px 0 20px; }
.footer-logo-text h1 { color: #fff !important; }
.footer-logo-text p  { color: var(--yellow) !important; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.7); text-decoration: none; transition: all .2s;
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-col h4 {
  color: #fff; font-size: .9rem; font-weight: 700;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--green); display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem;
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-col ul li a i { font-size: .62rem; color: var(--yellow); }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; }
.footer-contact-item i { color: var(--yellow); margin-top: 3px; font-size: .85rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .8rem;
}
.footer-bottom a { color: var(--yellow); text-decoration: none; }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; background: var(--green); color: #fff;
  border: none; border-radius: 50%; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); opacity: 0; transform: translateY(10px);
  transition: all .3s; z-index: 900;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.d1{animation-delay:.1s} .d2{animation-delay:.25s} .d3{animation-delay:.4s} .d4{animation-delay:.55s}

/* ── RESPONSIVE ── */
@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media(max-width:480px) { .top-bar .tb-contacts { display: none; } }





    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── TOP BAR ── */
    .top-bar {
      background: var(--green);
      color: #fff;
      font-size: 0.8rem;
      padding: 6px 0;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .top-bar a { color: #fff; text-decoration: none; }
    .top-bar .contact-items { display: flex; gap: 20px; flex-wrap: wrap; }
    .top-bar .contact-items span { display: flex; align-items: center; gap: 6px; }
    .top-bar .social-links { display: flex; gap: 10px; }
    .top-bar .social-links a {
      width: 26px; height: 26px;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem;
      transition: background .2s;
    }
    .top-bar .social-links a:hover { background: var(--yellow); color: var(--green); }

    /* ── HEADER ── */
    header {
      background: var(--white);
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      gap: 16px;
    }
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }
    .logo-img { width: 70px; height: auto; }
    .logo-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--green);
      line-height: 1.2;
    }
    .logo-text p {
      font-size: 0.72rem;
      color: var(--red);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* NAV */
    nav { display: flex; align-items: center; gap: 4px; }
    nav ul { list-style: none; display: flex; align-items: center; gap: 4px; }
    nav ul li { position: relative; }
    nav ul li a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
      padding: 8px 13px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: all .2s;
      white-space: nowrap;
    }
    nav ul li a:hover, nav ul li a.active { background: var(--green); color: #fff; }

    /* Dropdown */
    .dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: 8px; min-width: 200px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); padding: 6px 0; z-index: 200; }
    nav ul li:hover .dropdown { display: block; }
    .dropdown li a { border-radius: 0; padding: 9px 18px; font-size: 0.85rem; color: var(--text-dark); }
    .dropdown li a:hover { background: var(--off-white); color: var(--green); }

    .nav-btn {
      background: var(--yellow);
      color: var(--text-dark) !important;
      font-weight: 600 !important;
      border-radius: 50px !important;
      padding: 8px 20px !important;
    }
    .nav-btn:hover { background: var(--yellow-dark) !important; color: var(--text-dark) !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #0d3d22 0%, #1a7c3e 50%, #1a4fa0 100%);
    }
    .hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .hero-shapes .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.07;
      background: var(--yellow);
    }
    .hero-shapes .s1 { width: 600px; height: 600px; top: -200px; right: -100px; }
    .hero-shapes .s2 { width: 300px; height: 300px; bottom: -80px; left: 10%; background: #fff; }
    .hero-shapes .s3 { width: 150px; height: 150px; top: 30%; left: 5%; background: var(--red); opacity: 0.1; }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      color: #fff;
      padding: 60px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(240,197,0,0.2);
      border: 1px solid rgba(240,197,0,0.4);
      color: var(--yellow);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
    .hero-badge i { font-size: 0.7rem; }
    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero h2 span { color: var(--yellow); }
    .hero p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 540px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--yellow);
      color: var(--text-dark);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .25s;
      border: 2px solid var(--yellow);
    }
    .btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(240,197,0,0.35); }
    .btn-outline {
      background: transparent;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid rgba(255,255,255,0.4);
      transition: all .25s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 50px;
      flex-wrap: wrap;
    }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--yellow);
    }
    .hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

    /* ── SECTIONS COMMON ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
    section { padding: 80px 0; }
    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 30px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      line-height: 1.25;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.75;
      max-width: 560px;
    }
    .text-center { text-align: center; }
    .text-center .section-label { justify-content: center; }
    .text-center .section-desc { margin: 0 auto; }

    /* ── ABOUT ── */
    .about { background: var(--off-white); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 5rem;
    }
    .about-img-placeholder p { font-size: 1rem; margin-top: 12px; opacity: 0.8; }
    .about-badge-float {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--yellow);
      border-radius: 12px;
      padding: 16px 20px;
      box-shadow: var(--shadow);
      text-align: center;
    }
    .about-badge-float .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1;
    }
    .about-badge-float .lbl { font-size: 0.75rem; color: var(--text-mid); font-weight: 600; }

    .about-text .section-desc { max-width: 100%; margin-bottom: 28px; }
    .vm-cards { display: flex; flex-direction: column; gap: 16px; }
    .vm-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 20px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      border-left: 4px solid var(--green);
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .vm-card.red { border-color: var(--red); }
    .vm-card .icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--green);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem; flex-shrink: 0;
    }
    .vm-card.red .icon { background: var(--red); }
    .vm-card h4 { font-weight: 700; margin-bottom: 4px; font-size: 0.95rem; }
    .vm-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

    /* ── STATS BAR ── */
    .stats-bar { background: var(--green); padding: 50px 0; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: center;
    }
    .stat-item { color: #fff; }
    .stat-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--yellow);
    }
    .stat-item .lbl { font-size: 0.88rem; opacity: 0.8; margin-top: 4px; }
    .stat-divider {
      border-right: 1px solid rgba(255,255,255,0.2);
    }

    /* ── PROGRAMS ── */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .program-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .program-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: var(--green);
      transform: scaleX(0);
      transition: transform .3s;
      transform-origin: left;
    }
    .program-card:nth-child(3n+2)::after { background: var(--red); }
    .program-card:nth-child(3n)::after { background: var(--blue); }
    .program-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
    .program-card:hover::after { transform: scaleX(1); }
    .program-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      background: rgba(26,124,62,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--green);
      margin-bottom: 18px;
    }
    .program-card:nth-child(3n+2) .program-icon { background: rgba(192,57,43,0.1); color: var(--red); }
    .program-card:nth-child(3n) .program-icon { background: rgba(26,79,160,0.1); color: var(--blue); }
    .program-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .program-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

    /* ── NOTICE / NEWS ── */
    .notice { background: var(--off-white); }
    .notice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
    }
    .notice-box {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .notice-box-head {
      background: var(--green);
      color: #fff;
      padding: 16px 24px;
      font-weight: 700;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .notice-box-head.red { background: var(--red); }
    .notice-body { padding: 8px 0; max-height: 280px; overflow-y: auto; }
    .notice-item {
      padding: 14px 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: background .2s;
    }
    .notice-item:last-child { border-bottom: none; }
    .notice-item:hover { background: var(--off-white); }
    .notice-date {
      background: var(--green);
      color: #fff;
      border-radius: 8px;
      padding: 6px 10px;
      text-align: center;
      font-size: 0.72rem;
      font-weight: 700;
      flex-shrink: 0;
      line-height: 1.3;
    }
    .notice-date.red { background: var(--red); }
    .notice-item-text h5 { font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
    .notice-item-text p { font-size: 0.78rem; color: var(--text-light); }

    /* ── ADMISSION CTA ── */
    .admission-cta {
      background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .admission-cta::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .admission-cta .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      color: #fff;
      margin-bottom: 12px;
    }
    .cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 480px; }
    .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ── GALLERY PREVIEW ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 200px);
      gap: 12px;
      margin-top: 48px;
    }
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column;
      gap: 8px;
      font-size: 2rem;
      color: #fff;
      transition: transform .4s;
    }
    .gallery-placeholder span { font-size: 0.8rem; opacity: 0.8; font-family: 'DM Sans'; }
    .gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
    .g1 { background: linear-gradient(135deg, var(--green), #0d3d22); }
    .g2 { background: linear-gradient(135deg, var(--red), #7b1c14); }
    .g3 { background: linear-gradient(135deg, var(--blue), #0d2a5e); }
    .g4 { background: linear-gradient(135deg, var(--yellow-dark), #8a6500); }
    .g5 { background: linear-gradient(135deg, #2c7a7b, #1a4646); }

    /* ── FOOTER ── */
    footer { background: #0d1a0f; color: rgba(255,255,255,0.75); }
    .footer-top { padding: 64px 0 40px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand .logo-wrap { margin-bottom: 16px; }
    .footer-brand .logo-text h1 { color: #fff; font-size: 1rem; }
    .footer-brand .logo-text p { color: var(--yellow); }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .footer-social a {
      width: 34px; height: 34px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all .2s;
    }
    .footer-social a:hover { background: var(--green); color: #fff; }
    .footer-col h4 {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--green);
      display: inline-block;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color .2s;
      display: flex; align-items: center; gap: 6px;
    }
    .footer-col ul li a:hover { color: var(--yellow); }
    .footer-col ul li a i { font-size: 0.65rem; color: var(--yellow); }
    .contact-info { display: flex; flex-direction: column; gap: 12px; }
    .contact-info-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; }
    .contact-info-item i { color: var(--yellow); margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.8rem;
    }
    .footer-bottom a { color: var(--yellow); text-decoration: none; }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 998;
    }
    .mobile-nav-panel {
      position: fixed;
      top: 0; right: -100%;
      width: min(320px, 85vw);
      height: 100%;
      background: #fff;
      z-index: 999;
      padding: 80px 24px 40px;
      overflow-y: auto;
      transition: right .35s cubic-bezier(.4,0,.2,1);
    }
    .mobile-nav-panel.open { right: 0; }
    .mobile-nav-panel ul { list-style: none; }
    .mobile-nav-panel ul li { border-bottom: 1px solid var(--border); }
    .mobile-nav-panel ul li a {
      display: block;
      padding: 14px 0;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-dark);
      text-decoration: none;
    }
    .mobile-nav-panel .mobile-sub { padding-left: 16px; display: none; }
    .mobile-nav-panel .mobile-sub.show { display: block; }
    .mobile-nav-panel .mobile-sub li a { font-size: 0.88rem; color: var(--text-light); }
    .mobile-nav-cta { margin-top: 24px; }
    .mobile-nav-cta a {
      display: block;
      text-align: center;
      background: var(--yellow);
      color: var(--text-dark);
      font-weight: 700;
      padding: 14px;
      border-radius: 50px;
      text-decoration: none;
    }
    .close-nav {
      position: fixed;
      top: 18px; right: calc(min(320px, 85vw) + 10px);
      background: #fff;
      border: none;
      width: 36px; height: 36px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 1000;
      display: flex; align-items: center; justify-content: center;
    }

    /* ── SCROLL TO TOP ── */
    .scroll-top {
      position: fixed;
      bottom: 24px; right: 24px;
      width: 44px; height: 44px;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
      opacity: 0;
      transform: translateY(10px);
      transition: all .3s;
      z-index: 900;
    }
    .scroll-top.visible { opacity: 1; transform: translateY(0); }
    .scroll-top:hover { background: var(--green-light); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .programs-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }
      .about-grid { grid-template-columns: 1fr; }
      .about-badge-float { right: 0; bottom: -10px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-divider { border-right: none; }
      .programs-grid { grid-template-columns: 1fr; }
      .notice-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .admission-cta .container { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .top-bar .contact-items { display: none; }
      .hero { min-height: 80vh; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:nth-child(1) { grid-column: span 1; }
    }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
    .d1 { animation-delay: .1s; }
    .d2 { animation-delay: .25s; }
    .d3 { animation-delay: .4s; }
    .d4 { animation-delay: .55s; }
  




        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

            .text-center .section-label {
                justify-content: center;
            }

            .text-center .section-desc {
                margin: 0 auto;
            }

        .section-label {
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--green);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

            .section-label::before {
                content: '';
                display: block;
                width: 30px;
                height: 3px;
                background: var(--yellow);
                border-radius: 2px;
            }

        .section-title {
            font-family: 'Playfair Display',serif;
            font-size: clamp(1.7rem,3.5vw,2.5rem);
            line-height: 1.25;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.78;
            max-width: 560px;
        }

        .btn-primary {
            background: var(--yellow);
            color: var(--text-dark);
            font-weight: 700;
            font-size: .9rem;
            padding: 14px 30px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .25s;
            border: 2px solid var(--yellow);
        }

            .btn-primary:hover {
                background: var(--yellow-dark);
                border-color: var(--yellow-dark);
                transform: translateY(-2px);
                box-shadow: 0 8px 20px rgba(240,197,0,.35);
            }

        .btn-outline-white {
            background: transparent;
            color: #fff;
            font-weight: 600;
            font-size: .9rem;
            padding: 13px 28px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255,255,255,.45);
            transition: all .25s;
        }

            .btn-outline-white:hover {
                border-color: #fff;
                background: rgba(255,255,255,.12);
            }

        /* TOPBAR+HEADER+NAV identical */
        .top-bar {
            background: var(--green);
            color: #fff;
            font-size: .8rem;
            padding: 6px 0;
        }

            .top-bar .container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 6px;
            }

            .top-bar a {
                color: #fff;
                text-decoration: none;
            }

            .top-bar .contact-items {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
            }

                .top-bar .contact-items span {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                }

            .top-bar .social-links {
                display: flex;
                gap: 10px;
            }

                .top-bar .social-links a {
                    width: 26px;
                    height: 26px;
                    background: rgba(255,255,255,.15);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: .75rem;
                    transition: background .2s;
                }

                    .top-bar .social-links a:hover {
                        background: var(--yellow);
                        color: var(--green);
                    }

        header {
            background: var(--white);
            box-shadow: 0 2px 12px rgba(0,0,0,.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 16px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .logo-img {
            width: 70px;
            height: auto;
        }

        .logo-text h1 {
            font-family: 'Playfair Display',serif;
            font-size: 1.15rem;
            color: var(--green);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: .72rem;
            color: var(--red);
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 4px;
        }

            nav ul li {
                position: relative;
            }

                nav ul li a {
                    font-size: .88rem;
                    font-weight: 500;
                    color: var(--text-dark);
                    text-decoration: none;
                    padding: 8px 13px;
                    border-radius: 6px;
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    transition: all .2s;
                    white-space: nowrap;
                }

                    nav ul li a:hover, nav ul li a.active {
                        background: var(--green);
                        color: #fff;
                    }

        .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border-radius: 8px;
            min-width: 200px;
            box-shadow: 0 8px 30px rgba(0,0,0,.12);
            padding: 6px 0;
            z-index: 200;
        }

        nav ul li:hover .dropdown {
            display: block;
        }

        .dropdown li a {
            border-radius: 0;
            padding: 9px 18px;
            font-size: .85rem;
            color: var(--text-dark);
        }

            .dropdown li a:hover {
                background: var(--off-white);
                color: var(--green);
            }

        .nav-btn {
            background: var(--yellow);
            color: var(--text-dark) !important;
            font-weight: 600 !important;
            border-radius: 50px !important;
            padding: 8px 20px !important;
        }

            .nav-btn:hover {
                background: var(--yellow-dark) !important;
            }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            background: none;
            border: none;
        }

            .hamburger span {
                display: block;
                width: 24px;
                height: 2px;
                background: var(--text-dark);
                border-radius: 2px;
                transition: .3s;
            }

            .hamburger.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .hamburger.open span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

        .page-hero {
            background: linear-gradient(135deg,var(--green-dark) 0%,var(--green) 60%,var(--blue) 100%);
            padding: 70px 0 60px;
            position: relative;
            overflow: hidden;
        }

            .page-hero::before {
                content: '';
                position: absolute;
                inset: 0;
                background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
            }

        .page-hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
        }

        .page-hero h1 {
            font-family: 'Playfair Display',serif;
            font-size: clamp(2rem,4.5vw,3rem);
            margin-bottom: 14px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .88rem;
            color: rgba(255,255,255,.75);
            list-style: none;
        }

            .breadcrumb li a {
                color: rgba(255,255,255,.75);
                text-decoration: none;
                transition: color .2s;
            }

                .breadcrumb li a:hover {
                    color: var(--yellow);
                }

            .breadcrumb li.sep::before {
                content: '/';
                margin: 0 2px;
            }

            .breadcrumb li.current {
                color: var(--yellow);
                font-weight: 600;
            }

        .mobile-nav {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.5);
            z-index: 998;
        }

        .mobile-nav-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: min(320px,85vw);
            height: 100%;
            background: #fff;
            z-index: 999;
            padding: 80px 24px 40px;
            overflow-y: auto;
            transition: right .35s cubic-bezier(.4,0,.2,1);
        }

            .mobile-nav-panel.open {
                right: 0;
            }

            .mobile-nav-panel ul {
                list-style: none;
            }

                .mobile-nav-panel ul li {
                    border-bottom: 1px solid var(--border);
                }

                    .mobile-nav-panel ul li a {
                        display: block;
                        padding: 14px 0;
                        font-size: .95rem;
                        font-weight: 500;
                        color: var(--text-dark);
                        text-decoration: none;
                    }

        .mobile-nav-cta {
            margin-top: 24px;
        }

            .mobile-nav-cta a {
                display: block;
                text-align: center;
                background: var(--yellow);
                color: var(--text-dark);
                font-weight: 700;
                padding: 14px;
                border-radius: 50px;
                text-decoration: none;
            }

        .close-nav {
            position: fixed;
            top: 18px;
            right: calc(min(320px,85vw) + 10px);
            background: #fff;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* PAGE SPECIFIC */
        .facility-intro {
            background: var(--off-white);
        }

        .fac-big-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .fac-big-card {
            background: #fff;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all .3s;
        }

            .fac-big-card:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-lg);
            }

        .fac-big-img {
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            color: rgba(255,255,255,.3);
        }

        .fbc-g {
            background: linear-gradient(135deg,var(--green),var(--green-dark));
        }

        .fbc-r {
            background: linear-gradient(135deg,var(--red),#7b1c14);
        }

        .fbc-b {
            background: linear-gradient(135deg,var(--blue),#0d2a5e);
        }

        .fbc-y {
            background: linear-gradient(135deg,var(--yellow-dark),#8a6500);
        }

        .fbc-t {
            background: linear-gradient(135deg,#2c7a7b,#1a4646);
        }

        .fbc-p {
            background: linear-gradient(135deg,#6d28d9,#3b0764);
        }

        .fac-big-body {
            padding: 24px;
        }

            .fac-big-body h3 {
                font-size: 1.1rem;
                font-weight: 700;
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .fac-big-body h3 i {
                    color: var(--green);
                    font-size: 1rem;
                }

        .fac-big-card:nth-child(2) .fac-big-body h3 i {
            color: var(--red);
        }

        .fac-big-card:nth-child(3) .fac-big-body h3 i {
            color: var(--blue);
        }

        .fac-big-card:nth-child(4) .fac-big-body h3 i {
            color: var(--yellow-dark);
        }

        .fac-big-card:nth-child(5) .fac-big-body h3 i {
            color: #2c7a7b;
        }

        .fac-big-card:nth-child(6) .fac-big-body h3 i {
            color: #6d28d9;
        }

        .fac-big-body p {
            font-size: .88rem;
            color: var(--text-light);
            line-height: 1.65;
        }

        .fac-tag {
            display: inline-block;
            background: rgba(26,124,62,.1);
            color: var(--green);
            font-size: .72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 50px;
            margin-top: 12px;
        }

        .fac-big-card:nth-child(2) .fac-tag {
            background: rgba(192,57,43,.1);
            color: var(--red);
        }

        .fac-big-card:nth-child(3) .fac-tag {
            background: rgba(26,79,160,.1);
            color: var(--blue);
        }

        .extra-facilities {
            background: var(--white);
        }

        .extra-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .extra-card {
            background: var(--off-white);
            border-radius: var(--radius);
            padding: 24px;
            text-align: center;
            transition: all .3s;
            border-bottom: 3px solid transparent;
        }

            .extra-card:hover {
                transform: translateY(-4px);
                box-shadow: var(--shadow-lg);
                border-color: var(--green);
            }

            .extra-card:nth-child(4n+2):hover {
                border-color: var(--red);
            }

            .extra-card:nth-child(4n+3):hover {
                border-color: var(--blue);
            }

            .extra-card:nth-child(4n):hover {
                border-color: var(--yellow-dark);
            }

        .extra-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(26,124,62,.1);
            color: var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin: 0 auto 14px;
        }

        .extra-card:nth-child(4n+2) .extra-icon {
            background: rgba(192,57,43,.1);
            color: var(--red);
        }

        .extra-card:nth-child(4n+3) .extra-icon {
            background: rgba(26,79,160,.1);
            color: var(--blue);
        }

        .extra-card:nth-child(4n) .extra-icon {
            background: rgba(212,168,0,.15);
            color: var(--yellow-dark);
        }

        .extra-card h4 {
            font-size: .9rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .extra-card p {
            font-size: .8rem;
            color: var(--text-light);
            line-height: 1.55;
        }

        .stats-bar {
            background: var(--green);
            padding: 50px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-item {
            color: #fff;
        }

            .stat-item .num {
                font-family: 'Playfair Display',serif;
                font-size: 2.4rem;
                font-weight: 700;
                color: var(--yellow);
            }

            .stat-item .lbl {
                font-size: .88rem;
                opacity: .8;
                margin-top: 4px;
            }

        .stat-divider {
            border-right: 1px solid rgba(255,255,255,.2);
        }

        .fac-cta {
            background: linear-gradient(135deg,var(--blue),var(--green));
            padding: 72px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

            .fac-cta::before {
                content: '';
                position: absolute;
                width: 400px;
                height: 400px;
                border-radius: 50%;
                background: rgba(255,255,255,.04);
                top: -150px;
                right: -100px;
            }

            .fac-cta h2 {
                font-family: 'Playfair Display',serif;
                font-size: clamp(1.6rem,3vw,2.3rem);
                color: #fff;
                margin-bottom: 12px;
            }

            .fac-cta p {
                color: rgba(255,255,255,.8);
                font-size: 1rem;
                max-width: 520px;
                margin: 0 auto 32px;
            }

        .cta-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        footer {
            background: #0d1a0f;
            color: rgba(255,255,255,.75);
        }

        .footer-top {
            padding: 64px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand p {
            font-size: .85rem;
            line-height: 1.7;
            margin: 14px 0 20px;
        }

        .footer-brand .logo-text h1 {
            color: #fff;
        }

        .footer-brand .logo-text p {
            color: var(--yellow);
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

            .footer-social a {
                width: 34px;
                height: 34px;
                background: rgba(255,255,255,.1);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .85rem;
                color: rgba(255,255,255,.7);
                text-decoration: none;
                transition: all .2s;
            }

                .footer-social a:hover {
                    background: var(--green);
                    color: #fff;
                }

        .footer-col h4 {
            color: #fff;
            font-size: .9rem;
            font-weight: 700;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--green);
            display: inline-block;
        }

        .footer-col ul {
            list-style: none;
        }

            .footer-col ul li {
                margin-bottom: 10px;
            }

                .footer-col ul li a {
                    color: rgba(255,255,255,.65);
                    text-decoration: none;
                    font-size: .85rem;
                    transition: color .2s;
                    display: flex;
                    align-items: center;
                    gap: 6px;
                }

                    .footer-col ul li a:hover {
                        color: var(--yellow);
                    }

                    .footer-col ul li a i {
                        font-size: .65rem;
                        color: var(--yellow);
                    }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-info-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: .85rem;
        }

            .contact-info-item i {
                color: var(--yellow);
                margin-top: 3px;
                font-size: .85rem;
                flex-shrink: 0;
            }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: .8rem;
        }

            .footer-bottom a {
                color: var(--yellow);
                text-decoration: none;
            }

        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,.2);
            opacity: 0;
            transform: translateY(10px);
            transition: all .3s;
            z-index: 900;
        }

            .scroll-top.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .scroll-top:hover {
                background: var(--green-light);
            }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-up {
            opacity: 0;
            animation: fadeUp .7s ease forwards;
        }

        .d1 {
            animation-delay: .1s;
        }

        .d2 {
            animation-delay: .25s;
        }

        @media(max-width:1024px) {
            .fac-big-grid {
                grid-template-columns: 1fr;
            }

            .extra-grid {
                grid-template-columns: repeat(2,1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media(max-width:768px) {
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .stats-grid {
                grid-template-columns: repeat(2,1fr);
            }

            .stat-divider {
                border-right: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            section {
                padding: 60px 0;
            }
        }

        @media(max-width:480px) {
            .top-bar .contact-items {
                display: none;
            }

            .extra-grid {
                grid-template-columns: 1fr;
            }
        }