/* ============================================================
   SIR SYED MISSION SCHOOL (SSMS) — Master Stylesheet
   Theme: Deep Forest Green (#0F3D25, #1B5E3B) & Royal Gold (#C9A84C)
   Ultra-Responsive (Mobile-First) & Interactive Animations
   ============================================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── CSS Variables ─── */
:root {
  --green-darkest: #0A2816;
  --green-dark:    #0F3D25;
  --green-primary: #1B5E3B;
  --green-mid:     #2D7A55;
  --green-light:   #3D9970;
  --green-pale:    #EAF4EE;
  --green-subtle:  #F4F9F6;
  --gold:          #C9A84C;
  --gold-dark:     #9E7520;
  --gold-light:    #EBD68C;
  --gold-pale:     #FDF9EE;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #EBD68C 50%, #A07830 100%);
  --green-gradient:linear-gradient(135deg, #0F3D25 0%, #1B5E3B 60%, #2D7A55 100%);
  --white:         #FFFFFF;
  --off-white:     #F9F8F5;
  --cream:         #FBF7F0;
  --text-dark:     #111827;
  --text-mid:      #374151;
  --text-light:    #6B7280;
  --text-muted:    #9CA3AF;
  --border:        #E5E0D8;
  --border-light:  #F0EBE1;
  --shadow-sm:     0 2px 8px rgba(15, 61, 37, 0.06);
  --shadow:        0 8px 24px rgba(15, 61, 37, 0.08);
  --shadow-lg:     0 20px 48px rgba(15, 61, 37, 0.12);
  --shadow-gold:   0 10px 30px rgba(201, 168, 76, 0.25);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --radius-full:   9999px;
  --transition:    all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic:   'Amiri', serif;
  --container-max: 1240px;
  --header-h:      76px;
}

/* ─── Reset & Core ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.85rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}
p:last-child { margin-bottom: 0; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ─── Utilities ─── */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-right    { text-align: right; }
.text-green    { color: var(--green-primary); }
.text-gold     { color: var(--gold); }
.text-white    { color: var(--white); }
.bg-green      { background: var(--green-primary); }
.bg-dark-green { background: var(--green-dark); }
.bg-cream      { background: var(--cream); }
.bg-off-white  { background: var(--off-white); }
.bg-gold-pale  { background: var(--gold-pale); }
.bg-green-pale { background: var(--green-pale); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.2px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--green-darkest);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  border: 1px solid var(--gold-light);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(27, 94, 59, 0.3);
}
.btn-secondary:hover {
  background: var(--green-darkest);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27, 94, 59, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
}
.btn-outline-green:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

@media (max-width: 640px) {
  .btn { width: 100%; padding: 14px 20px; }
  .btn-sm { width: auto; }
}

/* ─── Section Layout ─── */
.section    { padding: clamp(50px, 8vw, 90px) 0; }
.section-sm { padding: clamp(30px, 5vw, 50px) 0; }
.section-lg { padding: clamp(70px, 10vw, 120px) 0; }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 60px);
}
.section-header.left { text-align: left; margin-left: 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-label.label-left::after { display: none; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-family: var(--font-heading);
  color: var(--green-darkest);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title span {
  color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.text-white span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.7;
}

.section-divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  border-radius: 4px;
  margin: 18px auto 0;
}
.section-divider.left { margin-left: 0; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--green-darkest);
  padding: 8px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.top-bar-item i { color: var(--gold); font-size: 0.82rem; }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .top-bar { display: none; }
}

/* ─── TICKER / MARQUEE BAR ─── */
.marquee-bar {
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.marquee-label {
  background: var(--gold);
  color: var(--green-darkest);
  font-weight: 800;
  padding: 4px 14px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: var(--radius-sm);
  margin-left: 16px;
}
.marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  gap: 40px;
}
.marquee-content:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── STICKY HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header.scrolled {
  height: 68px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.logo-icon-text {
  font-family: var(--font-arabic);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.logo-text-wrap { line-height: 1.2; }
.logo-name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 800;
  color: var(--green-darkest);
  letter-spacing: -0.2px;
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--green-primary);
  background: var(--green-pale);
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-cta {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  margin-left: 6px;
  box-shadow: 0 4px 14px rgba(27, 94, 59, 0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--green-darkest) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  transition: var(--transition-fast);
  z-index: 2001;
}
.hamburger:hover { background: var(--green-light); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-darkest);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 340px);
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding: 28px 20px;
  flex-direction: column;
}
.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
}
.mobile-close:hover { background: var(--green-pale); color: var(--green-primary); }

.mobile-nav-links { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition-fast);
}
.mobile-nav-link i {
  width: 22px;
  color: var(--gold-dark);
  font-size: 1.05rem;
  text-align: center;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--green-pale);
  color: var(--green-primary);
}
.mobile-nav-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-contact-info {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 40, 22, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ─── PAGE BANNER ─── */
.page-banner {
  background: var(--green-gradient);
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 8vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.page-banner-label::before,
.page-banner-label::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold-light);
}
.page-banner h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 14px;
}
.page-banner p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-darkest);
  padding: clamp(40px, 6vw, 80px) 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 40, 22, 0.96) 0%,
    rgba(15, 61, 37, 0.90) 50%,
    rgba(27, 94, 59, 0.70) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  width: fit-content;
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 600;
}

/* Hero Visual & Real Photo Stack */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  aspect-ratio: 4/5;
  border: 3px solid rgba(201, 168, 76, 0.35);
  position: relative;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-img-main:hover img { transform: scale(1.04); }

.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite alternate;
}
.hero-floating-card.card-1 {
  bottom: 24px;
  left: -20px;
  animation-delay: 0s;
}
.hero-floating-card.card-2 {
  top: 24px;
  right: -20px;
  animation-delay: 2s;
}
@keyframes floatCard {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-card-icon.green { background: var(--green-pale); color: var(--green-primary); }
.hero-card-icon.gold  { background: var(--gold-pale);  color: var(--gold-dark); }
.hero-card-text strong { display: block; font-size: 0.95rem; color: var(--green-darkest); }
.hero-card-text span   { font-size: 0.78rem; color: var(--text-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
  z-index: 2;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-visual { margin-top: 30px; }
  .hero-floating-card.card-1 { left: 0; bottom: 10px; }
  .hero-floating-card.card-2 { right: 0; top: 10px; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--green-darkest);
  padding: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: clamp(24px, 4vw, 40px) 20px;
  position: relative;
  transition: var(--transition);
}
.stat-item::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-item:last-child::after { display: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: var(--gold-light);
  transition: var(--transition);
}
.stat-item:hover .stat-icon {
  background: var(--gold);
  color: var(--green-darkest);
  transform: rotate(10deg);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number .plus { color: var(--gold-light); }
.stat-label {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
}

/* ─── ABOUT / WHO WE ARE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.05); }

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: clamp(140px, 30vw, 220px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-badge-float {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--green-darkest);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-light);
}
.about-badge-float strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  line-height: 1;
}
.about-badge-float span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-points {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-point-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border: 1.5px solid rgba(27,94,59,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.about-point:hover .about-point-icon {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.08);
}
.about-point-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-darkest);
  margin-bottom: 2px;
}
.about-point-text span {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-top: 20px;
}
.trust-badge i { font-size: 1.3rem; color: var(--gold-dark); }
.trust-badge span { font-size: 0.86rem; color: var(--text-dark); font-weight: 600; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; margin: 0 auto 30px; }
  .about-img-accent { bottom: -10px; right: -10px; width: 160px; }
  .about-badge-float { top: 10px; left: -10px; }
}

/* ─── DUAL CURRICULUM SECTION ─── */
.dual-curriculum {
  background: var(--green-gradient);
  position: relative;
  overflow: hidden;
}
.dual-curriculum::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 168, 76, 0.1) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.curriculum-col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
}
.curriculum-col:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.curriculum-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.curriculum-divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.6), transparent);
  min-height: 80px;
}
.curriculum-divider-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.curriculum-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-family: var(--font-heading);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.curriculum-item i {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .curriculum-grid { grid-template-columns: 1fr; }
  .curriculum-divider { flex-direction: row; }
  .curriculum-divider-line { width: 60px; min-height: auto; height: 1px; }
}

/* ─── FEATURES / WHY CHOOSE US CARDS ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3vw, 28px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-icon.green-icon { background: var(--green-pale); color: var(--green-primary); }
.feature-icon.gold-icon  { background: var(--gold-pale);  color: var(--gold-dark); }
.feature-card:hover .feature-icon {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.08);
}
.feature-card:hover .feature-icon.gold-icon {
  background: var(--gold);
  color: var(--green-darkest);
}
.feature-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--green-darkest);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── PROGRAM CARDS ─── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.program-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.program-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.program-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.program-card:hover .program-img img { transform: scale(1.08); }
.program-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,40,22,0.7), transparent 60%);
}
.program-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--green-darkest);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.program-body {
  padding: clamp(20px, 3vw, 26px);
}
.program-body h3 {
  font-size: 1.2rem;
  color: var(--green-darkest);
  margin-bottom: 8px;
}
.program-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}
.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.program-tag {
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-primary);
  transition: var(--transition-fast);
}
.program-link:hover { color: var(--gold-dark); gap: 10px; }

/* ─── TESTIMONIALS ─── */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 34px) clamp(20px, 3vw, 30px);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-5px);
}
.testimonial-quote {
  font-size: 2.8rem;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-primary);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-darkest);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}
.testimonial-stars {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 2px;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #eee;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 22, 0.65);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--gold-light);
  background: rgba(15, 61, 37, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── CONTACT & FORMS ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 22px);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); border-color: var(--green-pale); }
.contact-card-icon {
  width: 46px;
  height: 46px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-primary);
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.95rem; color: var(--green-darkest); margin-bottom: 4px; }
.contact-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin: 0; }
.contact-card a { color: var(--green-primary); font-weight: 700; }
.contact-card a:hover { color: var(--gold-dark); }

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 44px) clamp(18px, 4vw, 36px);
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  color: var(--green-darkest);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label .req { color: #dc2626; }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(27,94,59,0.1);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 6px; }

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

/* ─── MAP WRAP ─── */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: clamp(280px, 40vw, 400px);
  width: 100%;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ─── FACILITIES GRID ─── */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 3vw, 24px);
}
.facility-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.facility-img { height: 190px; overflow: hidden; }
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.facility-card:hover .facility-img img { transform: scale(1.08); }
.facility-body { padding: 20px; }
.facility-body h3 {
  font-size: 1.1rem;
  color: var(--green-darkest);
  margin-bottom: 8px;
}
.facility-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ─── ADMISSION STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.step-card {
  text-align: center;
  padding: 36px 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--green-darkest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.step-card:hover .step-icon { background: var(--green-primary); color: var(--white); }
.step-card h3 { font-size: 1.1rem; color: var(--green-darkest); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

/* ─── INFO STRIP ─── */
.info-strip {
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-strip i { color: var(--gold-dark); font-size: 1.3rem; flex-shrink: 0; }
.info-strip p { margin: 0; font-size: 0.9rem; color: var(--text-dark); }
.info-strip strong { color: var(--green-darkest); }

@media (max-width: 640px) {
  .info-strip { flex-direction: column; text-align: center; }
}

/* ─── NEWS GRID ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-img { height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-body { padding: 22px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.news-cat {
  background: var(--green-pale);
  color: var(--green-primary);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.news-body h3 { font-size: 1.1rem; color: var(--green-darkest); margin-bottom: 8px; line-height: 1.4; }
.news-body p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 14px; }
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-primary);
}
.news-link:hover { color: var(--gold-dark); gap: 10px; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--green-gradient);
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 18px;
}
.cta-title span { color: var(--gold-light); }
.cta-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-info {
  margin-top: 28px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--green-darkest);
  color: rgba(255, 255, 255, 0.8);
  border-top: 2px solid var(--gold);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 50px);
  padding: clamp(50px, 8vw, 80px) 0 clamp(30px, 5vw, 50px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 0.72rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--green-darkest);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}
.footer-link i { color: var(--gold); font-size: 0.65rem; }
.footer-link:hover { color: var(--white); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 18px; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── FLOATING WHATSAPP & SCROLL TO TOP ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
}
.whatsapp-btn i { font-size: 1.35rem; }
.whatsapp-ping {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: ping 2s infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

.scroll-top {
  position: fixed;
  bottom: 82px;
  right: 24px;
  z-index: 990;
  width: 42px;
  height: 42px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: 0.95rem;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover {
  background: var(--gold);
  color: var(--green-darkest);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .whatsapp-btn .whatsapp-label { display: none; }
  .whatsapp-btn { padding: 13px; border-radius: 50%; bottom: 20px; right: 20px; }
  .scroll-top { bottom: 74px; right: 20px; width: 38px; height: 38px; }
}

/* ─── SCROLL & ENTRANCE ANIMATIONS ─── */
.fade-up, .fade-in, .scale-in, .slide-left, .slide-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-up    { transform: translateY(35px); }
.fade-in    { transform: translateY(0); }
.scale-in   { transform: scale(0.94); }
.slide-left { transform: translateX(-40px); }
.slide-right{ transform: translateX(40px); }

.fade-up.in, .fade-in.in, .scale-in.in, .slide-left.in, .slide-right.in {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* ─── RESPONSIVE TABLES ─── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ─── PRINT OPTIMIZATIONS ─── */
@media print {
  .top-bar, .marquee-bar, .site-header, .whatsapp-btn, .scroll-top, .mobile-nav, .nav-overlay {
    display: none !important;
  }
  .section { padding: 20px 0 !important; }
}
