/* ============================================================
   IAOFE — Premium Revamp Stylesheet
   Color palette derived from logo: deep navy #0a1628, gold #c9a84c,
   light cream #f8f5f0, accent teal #1a7a8a
   ============================================================ */

:root {
  --navy:   #0a1628;
  --navy2:  #112240;
  --gold:   #c9a84c;
  --gold2:  #e8c96b;
  --cream:  #f8f5f0;
  --white:  #ffffff;
  --gray:   #6c757d;
  --light:  #f0ece4;
  --teal:   #1a7a8a;
  --dark:   #060e1c;
  --shadow: 0 8px 40px rgba(10,22,40,0.12);
  --radius: 16px;
  --trans:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1.2; }
p { font-family: 'Inter', 'Open Sans', sans-serif; font-weight: 400; font-size: 1rem; }

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

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

/* ── UTILITY ─────────────────────────────────────────────── */
.section-pad   { padding: 100px 0; }
.section-pad-sm{ padding: 60px 0;  }
.bg-cream      { background: var(--cream); }
.bg-navy       { background: var(--navy); color: var(--white); }
.bg-dark       { background: var(--dark); color: var(--white); }
.text-gold     { color: var(--gold); }
.text-navy     { color: var(--navy); }
.text-center   { text-align: center; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 18px auto 0;
  border-radius: 2px;
}
.divider.left { margin: 18px 0 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  color: var(--dark);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.3);
  color: var(--gold);
}

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.top-bar-info { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,0.75); }
.top-bar-info span { display: flex; align-items: center; gap: 8px; }
.top-bar-info i { color: var(--gold); font-size: 0.8rem; }
.top-bar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  margin-left: 8px;
  transition: var(--trans);
}
.top-bar-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: var(--trans);
  box-shadow: 0 2px 20px rgba(10,22,40,0.08);
}
.navbar-main.scrolled {
  height: 72px;
  box-shadow: 0 4px 30px rgba(10,22,40,0.15);
}
.navbar-logo { display: flex; align-items: center; text-decoration: none; }
.navbar-logo img {
  height: 72px;
  width: 163px;
  object-fit: contain;
  border-radius: 10px;
  transition: var(--trans);
  display: block;
}
.navbar-main.scrolled .navbar-logo img { height: 60px; width: 163px; }

/* Preloader */
.preloader-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  animation: pulse 1.4s ease-in-out infinite;
}
.preloader-logo-wrap img {
  height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
}
.preloader-logo-wrap p {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}
.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); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--trans);
}
.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, #0d2244 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/newimages/homebanner.png') center/contain no-repeat;
  opacity: 0.08;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.6;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-gold-circle {
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 680px; height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(201,168,76,0.15) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50%      { transform: translateY(-50%) scale(1.08); opacity: 0.7; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1.1s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 1.2s ease 0.4s both;
}
.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.hero-image-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.75;
  mix-blend-mode: luminosity;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%),
              linear-gradient(180deg, transparent 60%, var(--dark) 100%);
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--gold);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-item i { font-size: 1.2rem; }
.trust-sep { width: 1px; height: 30px; background: rgba(10,22,40,0.25); }

/* ── ABOUT STRIP ─────────────────────────────────────────── */
.about-strip { padding: 100px 40px; }
.about-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-img-stack { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.6s; }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.about-img-badge strong { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-img-badge span { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content { padding: 20px 0; }
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: var(--trans);
}
.about-feature:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.about-feature-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-feature-desc { font-family: 'Inter', sans-serif; font-size: 0.88rem; color: var(--gray); }

/* ── STATS BANNER ────────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 70px 40px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.stat-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  transition: var(--trans);
}
.stat-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-4px); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 60px auto 0; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(10,22,40,0.08);
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  opacity: 0;
  transition: var(--trans);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10,22,40,0.15); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap { background: rgba(201,168,76,0.2); }
.service-card:hover .service-icon-wrap i { color: var(--gold); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.75); }
.service-card:hover .service-link { color: var(--gold); }
.service-icon-wrap {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--trans);
}
.service-icon-wrap i { font-size: 1.5rem; color: var(--navy); transition: var(--trans); }
.service-card h3 { position: relative; z-index: 1; font-size: 1.3rem; color: var(--navy); margin-bottom: 14px; transition: var(--trans); }
.service-card p { position: relative; z-index: 1; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--gray); line-height: 1.7; transition: var(--trans); }
.service-link { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-top: 20px; transition: var(--trans); }
.service-link i { font-size: 0.7rem; transition: var(--trans); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ── WHY IAOFE ───────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1200px; margin: 0 auto; }
.why-image { position: relative; border-radius: var(--radius) 0 0 var(--radius); overflow: hidden; min-height: 500px; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.3) 100%);
}
.why-content {
  background: var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 60px 50px;
  color: var(--white);
}
.why-points { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 16px; }
.why-check {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
}
.why-point-text h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.why-point-text p { font-family: 'Inter', sans-serif; font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ── TEAM ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 1200px; margin: 60px auto 0; }
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(10,22,40,0.15); }
.team-img-wrap { position: relative; height: 280px; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.6s; }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,0.85) 100%);
  opacity: 0;
  transition: var(--trans);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-socials { display: flex; gap: 10px; }
.team-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--trans);
}
.team-socials a:hover { background: var(--gold); color: var(--navy); }
.team-info { padding: 24px; }
.team-name { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.team-role { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── GALLERY PREVIEW ─────────────────────────────────────── */
.gallery-masonry { columns: 3; gap: 16px; max-width: 1200px; margin: 60px auto 0; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 1.8rem; color: var(--white); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-carousel-wrap { max-width: 900px; margin: 60px auto 0; position: relative; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 50px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--gold);
}
.testimonial-quote { font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.8; margin-bottom: 30px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.testimonial-title { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--gray); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 24px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('img/newimages/23.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px; }
.cta-desc { font-family: 'Inter', sans-serif; font-size: 1.05rem; color: rgba(10,22,40,0.75); margin-bottom: 36px; }

/* ── CONTACT STRIP ───────────────────────────────────────── */
.contact-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto 60px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.contact-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.14); }
.contact-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.5rem;
}
.contact-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.contact-card p { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--gray); }
.contact-form-wrap {
  max-width: 900px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10,22,40,0.1);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: var(--trans);
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,168,76,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── MAP EMBED ───────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 380px; margin-top: 60px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer-main {
  background: var(--dark);
  padding: 80px 40px 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { height: 60px; width: auto; object-fit: contain; border-radius: 12px; margin-bottom: 20px; }
.footer-tagline { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: var(--trans);
}
.footer-social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 60px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.float-btns {
  position: fixed;
  bottom: 30px; right: 28px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: var(--trans);
  position: relative;
}
.float-btn:hover { transform: translateY(-4px) scale(1.08); }
.float-btn-label {
  position: absolute;
  right: 66px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  transform: translateX(10px);
}
.float-btn:hover .float-btn-label { opacity: 1; transform: translateX(0); }
.float-btn-whatsapp { background: #25d366; color: var(--white); }
.float-btn-call     { background: var(--gold); color: var(--navy); }
.float-btn-top      { background: var(--navy); color: var(--white); font-size: 1rem; opacity: 0; pointer-events: none; transition: var(--trans); }
.float-btn-top.visible { opacity: 1; pointer-events: all; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 120px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; font-family: 'Inter', sans-serif; font-size: 0.82rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── ACCORDION ───────────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid rgba(10,22,40,0.1);
  padding: 4px 0;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
  gap: 16px;
}
.accordion-header i { color: var(--gold); font-size: 0.9rem; transition: var(--trans); flex-shrink: 0; }
.accordion-header.open i { transform: rotate(45deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s;
}
.accordion-body.open { max-height: 500px; padding-bottom: 22px; }

/* ── COURSES CARDS ───────────────────────────────────────── */
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1100px; margin: 60px auto 0; }
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,22,40,0.08);
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(10,22,40,0.15); }
.course-img { height: 200px; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.course-card:hover .course-img img { transform: scale(1.06); }
.course-body { padding: 30px; flex: 1; }
.course-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(201,168,76,0.4);
}
.course-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; }
.course-desc { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.course-footer {
  padding: 20px 30px;
  border-top: 1px solid rgba(10,22,40,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-meta { font-family: 'Inter', sans-serif; font-size: 0.82rem; color: var(--gray); display: flex; gap: 16px; }
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-meta i { color: var(--gold); }

/* ── GALLERY PAGE ────────────────────────────────────────── */
.gallery-filter { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.filter-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: 50px;
  border: 2px solid rgba(10,22,40,0.15);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.gallery-grid-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-grid-item:hover img { transform: scale(1.08); }
.gallery-grid-item-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans);
}
.gallery-grid-item:hover .gallery-grid-item-overlay { opacity: 1; }
.gallery-grid-item-overlay i { font-size: 2rem; color: var(--white); }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 80px rgba(0,0,0,0.5); }
.lightbox-close { position: fixed; top: 24px; right: 28px; font-size: 2.2rem; color: var(--white); cursor: pointer; line-height: 1; transition: var(--trans); }
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes slideInLeft{ from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }

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

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-strip-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-badge  { right: 0; bottom: -20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { min-height: 280px; border-radius: var(--radius) var(--radius) 0 0; }
  .why-content { border-radius: 0 0 var(--radius) var(--radius); padding: 40px 30px; }
  .gallery-masonry { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .navbar-main { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-logo-text span { display: none; } /* hide sub-text on small screens */
  .hero-image-wrap { display: none; }
  .hero { min-height: 85vh; }
  .hero-content { padding: 40px 24px; }
  .hero-stats { gap: 24px; }
  .trust-bar { padding: 16px 20px; gap: 12px; }
  .trust-sep { display: none; }
  .about-strip { padding: 70px 24px; }
  .section-pad { padding: 70px 24px; }
  .section-pad-sm { padding: 44px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-main { padding: 60px 24px 30px; }
  .page-hero { padding: 100px 24px 60px; }
  .gallery-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .float-btns { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { flex-direction: column; text-align: center; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── SELECTION ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--navy); }

/* ── PRELOADER ───────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
