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

:root {
  --emerald: #1a1ee2;
  --emerald-dark: #10129c;
  --gold: #e8121f;
  --sky: #4a5eff;
  --coral: #ff5a5f;
  --cream: #f7f8fc;
  --dark: #1a1a2e;
  --light-green: #e8ecfd;
  --gray: #f5f5f5;
  --navy: #0d1240;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Fixed top-bar (40px) + fixed nav (70px) overlap the top of the page,
   so any #anchor link (e.g. About Us dropdown items) needs this offset —
   otherwise the target section lands hidden behind the header. */
[id] { scroll-margin-top: 120px; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }

/* ===== TOP BAR ===== */
.top-bar {
  background: #10129c;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  z-index: 1001;
  position: fixed;
  top: 0; width: 100%;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar-left a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  transition: color 0.2s;
}
.top-bar-left a:hover { color: var(--gold); }
.top-bar-center {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: 4px 18px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(232, 18, 31,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(232, 18, 31,0); }
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar-right a {
  background: transparent !important;
  width: 30px; height: 30px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.top-bar-right a:hover { transform: translateY(-2px); opacity: 1; }
.top-bar-right a img { width: 16px; height: 16px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 40px; width: 100%; z-index: 1000;
  transition: top 0.3s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo .logo-icon {
  width: 48px; height: 48px; background: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  padding: 5px; object-fit: contain;
  box-shadow: 0 0 0 3px rgba(232,18,31,0.25);
}
.logo-wide { height: 54px; width: auto; object-fit: contain; }
.nav-logo span { color: var(--dark); font-size: 18px; font-weight: 700; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--dark); text-decoration: none;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.2px;
  transition: color 0.2s; text-transform: uppercase;
  padding: 4px 0; border-bottom: 2px solid transparent;
  display: inline-flex; align-items: center; gap: 3px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-links .caret { font-size: 10px; transition: transform 0.2s; }
.nav-links li.has-dropdown:hover .caret { transform: rotate(180deg); }
.nav-links .dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: white; min-width: 240px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-radius: 10px; padding: 8px 0;
  list-style: none; z-index: 200;
  border: 1px solid #f0f0f0;
}
.nav-links li.has-dropdown:hover .dropdown { display: block; }
.nav-links .dropdown li { position: static; }
.nav-links .dropdown a {
  display: block; padding: 10px 20px; text-transform: none;
  font-size: 14px; font-weight: 600; color: var(--dark);
  border-bottom: none; letter-spacing: 0;
}
.nav-links .dropdown a:hover { background: var(--cream); color: var(--gold); }
.nav-links .dropdown-heading {
  padding: 10px 20px 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase; color: #999;
}
.nav-links .dropdown-heading:not(:first-child) {
  margin-top: 6px; border-top: 1px solid #f0f0f0; padding-top: 12px;
}
.nav-btn {
  background: var(--gold); color: white;
  padding: 9px 22px; border-radius: 25px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(232, 18, 31,0.4);
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232, 18, 31,0.5); }

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  padding: 156px 40px 70px;
  background: linear-gradient(135deg, #1a1ee2 0%, #a80d17 100%);
  text-align: center; color: white;
  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'%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 .badge {
  display: inline-block; background: rgba(232, 18, 31,0.2);
  border: 1px solid rgba(232, 18, 31,0.5);
  color: var(--gold); padding: 5px 18px;
  border-radius: 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 64px); font-weight: 900;
  margin-bottom: 12px; line-height: 1.1;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

/* ===== COMMON SECTION ===== */
section { padding: 90px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--light-green);
  color: var(--emerald); padding: 5px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px); font-weight: 900;
  line-height: 1.15; color: var(--dark); margin-bottom: 16px;
}
h2 span { color: var(--emerald); }
.section-sub { font-size: 17px; color: #666; line-height: 1.7; max-width: 540px; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 14px 36px; border-radius: 30px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(232, 18, 31,0.35);
  transition: all 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232, 18, 31,0.5); }
.btn-outline {
  border: 2px solid var(--emerald); color: var(--emerald);
  padding: 14px 36px; border-radius: 30px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  display: inline-block; transition: all 0.3s;
}
.btn-outline:hover { background: var(--emerald); color: white; }

/* ===== FOOTER ===== */
footer {
  background: white; color: #555;
  padding: 50px 40px 30px;
  border-top: 3px solid var(--emerald);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 50px; flex-wrap: wrap; margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin-bottom: 16px; font-family: 'Playfair Display', serif;
}
.footer-logo {
  height: 90px; width: auto; object-fit: contain;
  margin-bottom: 16px;
  padding: 0;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; color: #666;
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--gold); }
.footer-col:first-child { flex: 1.5; }
.footer-col { flex: 1; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px; text-align: center;
  font-size: 14px; color: #888;
}
.footer-bottom span { color: var(--gold); font-weight: 700; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none; border: none;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1100;
}
.hamburger:hover { background: rgba(0,0,0,0.06); }
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* X animation when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 130px; /* topbar (~60px, 2 rows on mobile) + navbar (70px) */
  left: 0; right: 0;
  background: rgba(13, 18, 64, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 0;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav ul {
  list-style: none;
  padding: 12px 0;
}
.mobile-nav ul li a {
  display: block;
  padding: 14px 28px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}
.mobile-parent { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-parent a { flex: 1; border-bottom: none; }
.mobile-toggle {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 16px; padding: 14px 24px; cursor: pointer;
  transition: transform 0.2s;
}
.mobile-toggle.open { transform: rotate(180deg); }
.mobile-submenu {
  list-style: none; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.2);
}
.mobile-submenu.open { max-height: 800px; }
.mobile-submenu li a {
  padding: 12px 28px 12px 44px;
  font-size: 13px; text-transform: none; letter-spacing: 0;
  font-weight: 500; color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-submenu .mobile-dropdown-heading {
  padding: 12px 28px 6px 44px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.mobile-submenu .mobile-dropdown-heading:not(:first-child) {
  margin-top: 4px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 14px;
}
.mobile-nav .mobile-apply-btn {
  display: block;
  margin: 16px 28px 24px;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mobile-nav .mobile-apply-btn:hover { opacity: 0.9; }

/* Overlay behind mobile nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.nav-overlay.open { display: block; }

@media (max-width: 768px) {
  /* Topbar — hide social icons, keep contact + badge */
  .top-bar {
    padding: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    row-gap: 6px;
  }
  .top-bar-left { gap: 12px; }
  .top-bar-left a:nth-child(2) { display: none; } /* hide email on mobile — phone tap-to-call is enough */
  .top-bar-right { display: none; }
  .top-bar-center {
    position: static;
    transform: none;
    font-size: 11px;
    padding: 3px 12px;
    order: 3;
    width: 100%;
    text-align: center;
  }

  /* Navbar — top-bar is now 2 rows on mobile (~60px), so nav must sit lower */
  nav { padding: 0 16px; top: 60px; }
  .nav-links { display: none; }
  .nav-btn { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  section { padding: 60px 20px; }
  .page-hero { padding: 140px 20px 50px; }
  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-map { flex-direction: column; gap: 20px; padding: 30px 20px; }
  .footer-map-card { width: 100%; }
}

/* ===== FOOTER MAP ===== */
/* Purana footer-map CSS replace karo is se: */
.footer-map {
  display: flex;
  gap: 32px;
  padding: 50px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, #edeffa 100%);
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.footer-map-card {
  position: relative;
  width: 380px;
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.footer-map-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,30,226,0.16); }
.footer-map-card .card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.96); color: var(--dark);
  padding: 6px 14px; border-radius: 20px; font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 6px;
}
.footer-map-card .card-tag.dark { background: rgba(20,20,26,0.85); color: white; }
.footer-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}
.footer-playlist {
  width: 380px;
  max-width: 100%;
  height: 220px;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
}
.footer-playlist .yt-play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #ff0000; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
  transition: transform 0.25s;
}
.footer-map-card:hover .footer-playlist .yt-play-icon { transform: scale(1.1); }
.footer-playlist h4 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.footer-playlist span {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.footer-playlist.has-thumb {
  background-size: cover;
  background-position: center;
}
.footer-playlist.has-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
  transition: background 0.2s;
}
.footer-map-card:hover .footer-playlist.has-thumb::before { background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.65) 100%); }
.footer-playlist.has-thumb .yt-play-icon {
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: nowrap;
}
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--emerald);
  border: 1px solid var(--emerald);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.social-icons a:hover {
  transform: translateY(-3px);
  background: var(--gold);
  border-color: var(--gold);
}
.social-icons a img { width: 18px; height: 18px; }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9998;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float img { width: 32px; height: 32px; }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a2e; color: white;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 20px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Nunito', sans-serif;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}
/* ===== ADMISSION POPUP ===== */
.popup-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s ease;
}
.popup-overlay.hide { display: none; }
.popup-box {
  position: relative;
  width: 90%; max-width: 480px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.4);
  color: white; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.popup-close:hover { background: rgba(0,0,0,0.7); }
.popup-inner {
  background: linear-gradient(160deg, #0f2d5e 0%, #1a1ee2 100%);
  padding: 48px 36px 40px;
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
.popup-inner::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.popup-inner::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.popup-tag {
  display: inline-block;
  background: var(--gold); color: #1a1a2e;
  font-size: 12px; font-weight: 800;
  padding: 6px 18px; border-radius: 20px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.popup-icon { font-size: 64px; margin-bottom: 16px; line-height: 1; }
.popup-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 800;
  margin-bottom: 8px; line-height: 1.2;
}
.popup-inner h2 span { color: var(--gold); }
.popup-inner p {
  font-size: 15px; opacity: 0.85;
  margin-bottom: 28px; line-height: 1.6;
}
.popup-session {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 16px 20px;
  margin-bottom: 28px; backdrop-filter: blur(4px);
}
.popup-session .ps-label { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.popup-session .ps-year { font-size: 28px; font-weight: 900; color: var(--gold); font-family: 'Playfair Display', serif; }
.popup-classes {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}
.popup-classes span {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 700;
}
.popup-btn {
  display: inline-block;
  background: var(--gold); color: #1a1a2e;
  font-size: 15px; font-weight: 800;
  padding: 14px 36px; border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(212,175,55,0.4);
}
.popup-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,175,55,0.5); }
.popup-footer {
  background: rgba(0,0,0,0.25); padding: 14px;
  font-size: 13px; opacity: 0.75; text-align: center; color: white;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: white; border: none;
  border-radius: 50%; font-size: 20px;
  cursor: pointer; z-index: 9997;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
#backToTop.visible {
  opacity: 1; pointer-events: all;
}
#backToTop:hover { transform: translateY(-3px); }
/* ===== TESTIMONIALS SLIDER ===== */
.t-slide {
  min-width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 36px;
  box-sizing: border-box;
}
.t-stars { color: var(--gold); font-size: 20px; margin-bottom: 16px; }
.t-quote {
  font-size: 16px; color: rgba(255,255,255,0.9);
  line-height: 1.8; font-style: italic;
  margin-bottom: 28px;
}
.t-author {
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.t-name { font-weight: 700; color: white; font-size: 15px; }
.t-role { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.t-tag {
  margin-left: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 12px;
}
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  border: none;
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }