/* ============================================================
   ICCSWO – Indian Cultural Centre
   Design System & Styles — Mobile-First Responsive
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary — Heritage Saffron */
  --saffron: #C05010;
  --saffron-dark: #9A3A00;
  --saffron-light: #E88B1A;
  --saffron-glow: rgba(192, 80, 16, 0.12);
  --saffron-bg: rgba(192, 80, 16, 0.06);

  /* Accent — Heritage Gold & Maroon */
  --gold: #D4AF37;
  --gold-light: #E1C675;
  --gold-dark: #B58D22;
  --maroon: #4A0B10;
  --maroon-light: #73171D;
  --green-india: #138808;

  /* Neutrals */
  --white: #FFFFFF;
  --cream: #FDF6EC;
  --cream-warm: #FFF3E0;
  --deep-brown: #2A1810;
  --charcoal: #1C1C1E;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #8E8E93;
  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 4px 24px rgba(192, 80, 16, 0.2);
  --shadow-wa: 0 4px 24px rgba(37, 211, 102, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Outfit', 'Inter', sans-serif;

  /* Layout — Mobile-first base values */
  --container: 1200px;
  --section-py: clamp(3rem, 6vw, 6.25rem);
  --card-radius: 16px;
  --btn-radius: 50px;
  --nav-height: 64px;
  --container-px: clamp(1rem, 4vw, 1.5rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s ease;
  --t-mid: 0.4s var(--ease-out);
  --t-slow: 0.6s var(--ease-out);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(135deg, var(--deep-brown), #120C08);
  color: var(--white);
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.6); }
.section--dark .section__title { color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.section__label {
  font-family: var(--font-accent);
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  display: inline-block;
}

.section__header .section__label::before { display: none; }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-gradient {
  background: linear-gradient(135deg, var(--saffron), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS — Touch-friendly mobile ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 2vw, 14px) clamp(22px, 4vw, 32px);
  border-radius: var(--btn-radius);
  font-family: var(--font-accent);
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  font-weight: 600;
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px; /* Touch-friendly minimum */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,80,16,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,80,16,0.45);
}

.btn--whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  box-shadow: var(--shadow-wa);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--saffron-dark);
  border: 2px solid var(--saffron);
}
.btn--outline-dark:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== NAVBAR — Mobile-first ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--t-mid);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar--solid {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-logo__icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo__icon svg {
  width: 100%;
  height: 100%;
}

.nav-logo__text {
  display: flex;
  flex-direction: column;
}

.nav-logo__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  transition: var(--t-mid);
}

.navbar--scrolled .nav-logo__name,
.navbar--solid .nav-logo__name {
  color: var(--text-primary);
}

.nav-logo__tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: var(--t-mid);
}

.navbar--scrolled .nav-logo__tagline,
.navbar--solid .nav-logo__tagline {
  color: var(--text-muted);
}

/* Nav Links — Mobile-first: drawer by default */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(82%, 340px);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: calc(var(--nav-height) + 2rem) var(--container-px) 2rem;
  gap: 0;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  transition: right 0.4s var(--ease-out);
  z-index: 1000;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-links--active { right: 0; }

.nav-links__item {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: var(--t-mid);
  -webkit-tap-highlight-color: transparent;
}

.nav-links__item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
  transition: var(--t-mid);
}

.nav-links__item:hover,
.nav-links__item--active {
  color: var(--saffron) !important;
}

.nav-links__item:hover::after,
.nav-links__item--active::after {
  width: 100%;
}

.nav-links__cta {
  margin-top: 14px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  border-radius: var(--btn-radius);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(192,80,16,0.3);
  width: 100%;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.nav-links__cta::after { display: none !important; }

.nav-links__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(192,80,16,0.4);
}

.nav-links__cta svg {
  width: 16px;
  height: 16px;
}

/* Hamburger — Visible by default (mobile-first) */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.hamburger__line {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-mid);
  display: block;
}

.navbar--scrolled .hamburger__line,
.navbar--solid .hamburger__line {
  background: var(--text-primary);
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger--active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Overlay — Present by default (mobile-first) */
.nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--t-mid);
}

.nav-overlay--active {
  opacity: 1;
  pointer-events: all;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
    rgba(26,15,8,0.88) 0%,
    rgba(50,28,12,0.72) 40%,
    rgba(80,40,15,0.5) 100%);
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 2rem;
}

.hero__content {
  max-width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(192,80,16,0.12);
  border: 1px solid rgba(192,80,16,0.25);
  border-radius: 50px;
  color: var(--saffron-light);
  font-family: var(--font-accent);
  font-size: clamp(0.65rem, 1.5vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
  animation: fadeInUp 0.6s ease forwards;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2.5vw, 1.375rem);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero__desc {
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero__actions .btn {
  width: 100%;
  justify-content: center;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding-top: clamp(1.25rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease 0.5s forwards;
  opacity: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(192,80,16,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 2.5rem) 0 2.5rem;
  background: linear-gradient(135deg, var(--deep-brown), #1A0F08);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  color: rgba(255,255,255,0.5);
}

.page-hero__breadcrumb a {
  color: var(--saffron-light);
}

.page-hero__breadcrumb a:hover { color: var(--saffron); }

.page-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img:hover img { transform: scale(1.04); }

.about-img__accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 90px;
  height: 90px;
  border: 3px solid var(--saffron);
  border-radius: 18px;
  opacity: 0.25;
  z-index: -1;
}

.about-img__dots {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  background: radial-gradient(var(--saffron) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.15;
  z-index: -1;
}

/* Feature list */
.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--saffron-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-dark);
}

.feature__icon svg {
  width: 20px;
  height: 20px;
}

.feature__title {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  font-weight: 600;
  margin-bottom: 4px;
}

.feature__text {
  font-size: clamp(0.82rem, 1.4vw, 0.9rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CARDS GRID — Mobile-first: 1 column ===== */
.cards-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr;
}

/* Course Card */
.card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: var(--t-mid);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto clamp(0.875rem, 2vw, 1.25rem);
  background: linear-gradient(135deg, var(--saffron-glow), rgba(201,168,76,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-dark);
  transition: var(--t-mid);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card:hover .card__icon {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  transform: scale(1.08);
}

.card__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.card__text {
  font-size: clamp(0.82rem, 1.4vw, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.85rem;
}

/* Dark card variant */
.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.card--dark::before { display: none; }

.card--dark:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(192,80,16,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: rgba(255,255,255,0.5); }

/* ===== ACADEMY BANNER ===== */
.academy-banner {
  background: linear-gradient(135deg, var(--deep-brown), var(--maroon));
  border-radius: clamp(16px, 3vw, 24px);
  padding: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
  position: relative;
  overflow: hidden;
}

.academy-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
}

.academy-banner__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.academy-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academy-banner__body {
  position: relative;
  z-index: 1;
}

.academy-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.academy-banner__title svg {
  width: 24px;
  height: 24px;
  color: var(--saffron-light);
  flex-shrink: 0;
}

.academy-banner__text {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 500px;
}

/* ===== TRAVEL GRID ===== */
.travel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.travel-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.travel-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.travel-img:hover img { transform: scale(1.04); }

.travel-img__badge {
  position: absolute;
  bottom: clamp(12px, 2vw, 20px);
  left: clamp(12px, 2vw, 20px);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.travel-img__badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.travel-img__badge-icon svg {
  width: 18px;
  height: 18px;
}

.travel-img__badge-text {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
}

.travel-img__badge-sub {
  display: block;
  font-size: clamp(0.68rem, 1.2vw, 0.76rem);
  font-weight: 400;
  color: var(--text-muted);
}

/* Travel services list */
.travel-services {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.travel-svc {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(14px, 3vw, 20px);
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--t-mid);
}

.section--white .travel-svc {
  background: var(--cream-warm);
}

.travel-svc:hover {
  background: var(--white);
  border-color: var(--saffron);
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}

.travel-svc__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.travel-svc__icon svg {
  width: 18px;
  height: 18px;
}

.travel-svc__title {
  font-family: var(--font-accent);
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  font-weight: 600;
  margin-bottom: 4px;
}

.travel-svc__text {
  font-size: clamp(0.8rem, 1.4vw, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item--tall {
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  opacity: 0;
  transition: var(--t-mid);
  display: flex;
  align-items: flex-end;
  padding: clamp(16px, 3vw, 24px);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--white);
  margin-bottom: 2px;
}

.gallery-item__sub {
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  color: rgba(255,255,255,0.65);
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--cream);
  border-radius: var(--card-radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--border-light);
  transition: var(--t-mid);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial__quote {
  font-size: 2rem;
  color: var(--saffron);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.4;
}

.testimonial__text {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 600;
}

.testimonial__role {
  font-size: clamp(0.72rem, 1.2vw, 0.78rem);
  color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.75rem);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: clamp(16px, 3vw, 22px);
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: var(--t-mid);
}

.contact-card:hover {
  border-color: var(--saffron);
  box-shadow: var(--shadow-glow);
}

.contact-card__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--saffron-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-dark);
}

.contact-card__icon svg {
  width: 18px;
  height: 18px;
}

.contact-card__title {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-card__text {
  font-size: clamp(0.8rem, 1.4vw, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card__text a {
  color: var(--saffron-dark);
  font-weight: 500;
}

.contact-card__text a:hover { color: var(--saffron); }

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 280px;
  aspect-ratio: 16 / 10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact form row */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  padding: clamp(12px, 2vw, 14px) clamp(14px, 2.5vw, 18px);
  border: 1.5px solid var(--border-medium);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem; /* Prevent iOS zoom */
  transition: var(--t-fast);
  background: var(--white);
  color: var(--text-primary);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px var(--saffron-glow);
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand-desc {
  font-size: clamp(0.82rem, 1.4vw, 0.88rem);
  line-height: 1.7;
  margin: 14px 0 18px;
  color: rgba(255,255,255,0.45);
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--t-mid);
  min-width: 42px;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.5vw, 0.92rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__link {
  display: flex;
  align-items: center;
  font-size: clamp(0.82rem, 1.4vw, 0.85rem);
  color: rgba(255,255,255,0.45);
  padding: 6px 0;
  transition: var(--t-fast);
  min-height: 36px;
}

.footer__link:hover {
  color: var(--saffron);
  transform: translateX(3px);
}

.footer__bottom {
  padding: clamp(1rem, 2.5vw, 1.375rem) 0;
  text-align: center;
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  color: rgba(255,255,255,0.3);
}

.footer__tricolor {
  display: inline-flex;
  gap: 3px;
  margin: 0 6px;
  vertical-align: middle;
}

.footer__tricolor span {
  width: 14px;
  height: 3px;
  border-radius: 2px;
}

.tri--saffron { background: var(--saffron); }
.tri--white { background: var(--white); }
.tri--green { background: var(--green-india); }

/* ===== STICKY WHATSAPP ===== */
.wa-sticky {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 998;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  transition: var(--t-mid);
  animation: waPulse 3s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}

.wa-sticky svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.5);
}

.wa-sticky__tip {
  display: none;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 997;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--t-mid);
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
  -webkit-tap-highlight-color: transparent;
}

.back-top svg {
  width: 18px;
  height: 18px;
}

.back-top--visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
  transform: translateY(-3px);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--t-mid);
}

.lightbox--active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: var(--t-mid);
  object-fit: contain;
}

.lightbox--active img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.reveal--visible {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================================
   RESPONSIVE BREAKPOINTS — Progressive Enhancement
   ========================================================== */

/* ===== 480px+ — Large phones / Foldable unfolded ===== */
@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-item--tall {
    grid-row: auto;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__actions .btn {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===== 768px+ — Tablets ===== */
@media (min-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  /* Navbar — Desktop horizontal layout */
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    box-shadow: none;
    transition: none;
    overflow: visible;
  }

  .nav-links__item {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 4px 0;
    width: auto;
    border-bottom: none;
  }

  .navbar--scrolled .nav-links__item,
  .navbar--solid .nav-links__item {
    color: var(--text-secondary);
  }

  .nav-links__cta {
    margin-top: 0;
    width: auto;
    padding: 10px 22px;
  }

  .hamburger { display: none; }
  .nav-overlay { display: none; }

  .nav-logo__icon {
    width: 44px;
    height: 44px;
  }

  .nav-logo__icon svg {
    width: 100%;
    height: 100%;
  }

  .nav-logo__name { font-size: 1.1rem; }
  .nav-logo__tagline { font-size: 0.62rem; }
  .nav-logo { gap: 12px; }

  /* About grid — 2 columns */
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid--reverse > div:first-child {
    order: 2;
  }
  
  .about-grid--reverse > div:last-child {
    order: 1;
  }

  /* Contact form */
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-img img {
    aspect-ratio: auto;
    height: 380px;
  }

  /* Travel grid — 2 columns */
  .travel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .travel-img img {
    aspect-ratio: auto;
    height: 420px;
  }

  /* Contact grid — 2 columns */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-map {
    aspect-ratio: auto;
    height: 100%;
    min-height: 380px;
  }

  /* Cards grid */
  .cards-grid--3,
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  /* Hero */
  .hero__content {
    max-width: 660px;
  }

  .hero__scroll {
    display: flex;
  }

  /* Academy banner — horizontal */
  .academy-banner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .academy-banner__img {
    width: 280px;
    min-width: 280px;
    aspect-ratio: auto;
    height: 200px;
  }

  .academy-banner__title {
    justify-content: flex-start;
  }

  /* WhatsApp sticky */
  .wa-sticky {
    width: 58px;
    height: 58px;
    bottom: 26px;
    right: 26px;
  }

  .wa-sticky svg {
    width: 28px;
    height: 28px;
  }

  .wa-sticky__tip {
    display: block;
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text-primary);
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--t-mid);
  }

  .wa-sticky:hover .wa-sticky__tip { opacity: 1; }

  .wa-sticky__tip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--white);
  }

  .back-top {
    bottom: 26px;
    left: 26px;
  }

  .feature__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .feature__icon svg {
    width: 22px;
    height: 22px;
  }

  .travel-svc__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .travel-svc__icon svg {
    width: 20px;
    height: 20px;
  }

  .travel-img__badge {
    padding: 14px 20px;
  }

  .travel-img__badge-icon {
    width: 42px;
    height: 42px;
  }

  .travel-img__badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
  }

  .contact-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .card__icon {
    width: 68px;
    height: 68px;
  }

  .card__icon svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== 1024px+ — Laptops / small desktops ===== */
@media (min-width: 1024px) {
  .nav-links {
    gap: 28px;
  }

  .nav-links__item {
    font-size: 0.88rem;
  }

  .nav-links__cta {
    padding: 10px 24px;
  }

  .about-img img {
    height: 440px;
  }

  .travel-img img {
    height: 480px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    gap: 18px;
  }

  .academy-banner__img {
    width: 300px;
    min-width: 300px;
    height: 220px;
  }

  .academy-banner {
    padding: 48px;
    gap: 40px;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
  }
}

/* ===== 1280px+ — Large desktops / Ultra-wide ===== */
@media (min-width: 1280px) {
  :root {
    --container: 1280px;
  }

  .hero .container {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
  }

  .about-grid {
    gap: 72px;
  }

  .travel-grid {
    gap: 60px;
  }

  .contact-grid {
    gap: 60px;
  }

  .cards-grid {
    gap: 24px;
  }

  .footer-grid {
    gap: 40px;
  }
}

/* ===== Ultra-wide displays 1600px+ ===== */
@media (min-width: 1600px) {
  :root {
    --container: 1400px;
  }
}

/* ===== Foldable / unusual widths (280–360px) ===== */
@media (max-width: 360px) {
  .hero__badge {
    font-size: 0.6rem;
    padding: 5px 10px;
    letter-spacing: 0.5px;
  }

  .hero__stats {
    gap: 1rem;
  }

  .hero__stats > div {
    min-width: 0;
  }

  .travel-img__badge {
    padding: 8px 10px;
    gap: 8px;
  }

  .travel-img__badge-icon {
    width: 30px;
    height: 30px;
  }

  .travel-img__badge-icon svg {
    width: 14px;
    height: 14px;
  }

  .travel-img__badge-text {
    font-size: 0.7rem;
  }

  .travel-img__badge-sub {
    font-size: 0.6rem;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.78rem;
  }

  .nav-links {
    width: 90%;
  }
}

/* ===== Landscape phones ===== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 1rem) 0 2rem;
  }

  .hero .container {
    padding-top: 1rem;
  }

  .hero__scroll {
    display: none;
  }
}

/* ===== Prefer reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ===== High contrast support ===== */
@media (prefers-contrast: high) {
  :root {
    --border-light: rgba(0, 0, 0, 0.15);
    --border-medium: rgba(0, 0, 0, 0.25);
  }

  .nav-links__item::after {
    height: 3px;
  }
}

/* ===== Print styles ===== */
@media print {
  .navbar,
  .hamburger,
  .wa-sticky,
  .back-top,
  .nav-overlay,
  .hero__scroll {
    display: none !important;
  }

  .section {
    break-inside: avoid;
  }

  body {
    color: #000;
    background: #fff;
  }
}
