/* ===========================
   TANISHA I TICKETS PVT LTD
   Main Stylesheet
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  --clr-primary: #0A2A6E;       /* Deep Navy Blue */
  --clr-primary-light: #1A3A8F;
  --clr-primary-dark: #071A50;
  --clr-accent: #F97316;        /* Vibrant Orange */
  --clr-accent-dark: #EA6C0A;
  --clr-white: #FFFFFF;
  --clr-bg: #F8FAFF;
  --clr-bg-alt: #EEF3FF;
  --clr-text: #1A1A2E;
  --clr-text-muted: #6B7280;
  --clr-text-light: #9CA3AF;
  --clr-border: #E2E8F0;
  --clr-card: #FFFFFF;
  --clr-card-shadow: rgba(10, 42, 110, 0.10);
  --clr-overlay: rgba(7, 26, 80, 0.72);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px var(--clr-card-shadow);
  --shadow-md: 0 8px 32px var(--clr-card-shadow);
  --shadow-lg: 0 20px 60px rgba(10, 42, 110, 0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
  --section-pad: clamp(60px, 8vw, 100px);
  --container: 1200px;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --clr-bg: #0D1B3E;
  --clr-bg-alt: #0A1530;
  --clr-text: #F0F4FF;
  --clr-text-muted: #94A3B8;
  --clr-border: #1E3163;
  --clr-card: #122050;
  --clr-card-shadow: rgba(0, 0, 0, 0.4);
  --clr-overlay: rgba(5, 15, 45, 0.80);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  transition: background 0.4s, color 0.4s;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--clr-bg-alt); }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
[data-theme="dark"] .section-title { color: var(--clr-white); }

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-header .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}
.btn--primary:hover {
  background: var(--clr-accent-dark);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.55);
  transform: translateY(-2px);
}

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

.btn--ghost {
  border: 2px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}
[data-theme="dark"] .btn--ghost {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}
[data-theme="dark"] .btn--ghost:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: var(--transition);
}

[data-theme="dark"] .navbar {
  background: rgba(13,27,62,0.92);
  border-color: var(--clr-border);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.nav-logo__icon {
  width: 40px; height: 40px;
  background: var(--clr-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1.05;
  letter-spacing: 0.3px;
}
[data-theme="dark"] .nav-logo__text strong { color: var(--clr-white); }
.nav-logo__text span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-primary);
  background: var(--clr-bg-alt);
}
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: var(--clr-accent);
  background: rgba(249,115,22,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dark mode toggle */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.theme-toggle:hover {
  background: var(--clr-primary);
  color: white;
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-alt);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}
.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;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--clr-card);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { width: 100%; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, #1e4db7 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-badge::before { content: '✈️'; font-size: 16px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--clr-accent);
  display: block;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
}

.hero-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}
.hero-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-card__row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-chip {
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

.hero-card--small {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}
.hero-card--small .icon {
  width: 48px; height: 48px;
  background: var(--clr-accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-card--small strong { display: block; font-size: 17px; margin-bottom: 2px; }
.hero-card--small span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ===========================
   SCROLL INDICATOR
   =========================== */
.scroll-down {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-down::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   MARQUEE / TRUST BAR
   =========================== */
.trust-bar {
  background: var(--clr-primary);
  padding: 14px 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.trust-bar__item span { font-size: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   SERVICES CARDS
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-accent);
}

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.service-card__body { padding: 24px; }
.service-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 10px;
}
[data-theme="dark"] .service-card__title { color: var(--clr-white); }
.service-card__desc {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}
.service-card__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.service-card__price strong {
  display: block;
  font-size: 20px;
  color: var(--clr-primary);
}
[data-theme="dark"] .service-card__price strong { color: var(--clr-accent); }

/* ===========================
   WHY CHOOSE US
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.why-visual {
  position: relative;
}
.why-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-lg);
}
.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent);
  color: white;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-badge-float strong { display: block; font-size: 28px; font-weight: 800; }
.why-badge-float span { font-size: 12px; font-weight: 600; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.why-item {
  display: flex;
  gap: 16px;
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10,42,110,0.3);
}
.why-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-stars {
  color: #FBBF24;
  font-size: 18px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; font-weight: 600; }
.testimonial-author span { font-size: 13px; color: var(--clr-text-muted); }

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--clr-card);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--clr-accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--clr-text);
  transition: var(--transition);
}
.faq-question:hover { color: var(--clr-accent); }
.faq-icon {
  font-size: 20px;
  color: var(--clr-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--clr-white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }
.contact-info-item a { color: var(--clr-accent); font-weight: 500; }

.contact-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(10,42,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group .error-msg { font-size: 12px; color: #ef4444; display: none; }
.form-group.error input,
.form-group.error textarea { border-color: #ef4444; }
.form-group.error .error-msg { display: block; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: #065f46;
  font-weight: 600;
  margin-top: 16px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--clr-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-card);
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: var(--clr-bg-alt);
}
[data-theme="dark"] .gallery-filter-btn.active {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-bg-alt);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: var(--clr-overlay);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 14px; font-weight: 600; font-family: var(--font-body); }

/* ===========================
   TEAM / ABOUT
   =========================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  box-shadow: var(--shadow-lg);
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  text-align: center;
}
.value-card:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card__icon { font-size: 36px; margin-bottom: 16px; }
.value-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--clr-primary); }
[data-theme="dark"] .value-card__title { color: var(--clr-white); }
.value-card__desc { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  padding: calc(var(--nav-height) + 48px) 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: -15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: white;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--clr-accent); font-weight: 500; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--clr-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.65);
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  color: white;
}
.footer-social-btn:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--clr-accent); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: 12px; opacity: 0; transition: opacity 0.2s; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,0.65);
  margin-bottom: 14px; line-height: 1.5;
}
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===========================
   FLOATING BUTTONS
   =========================== */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-whatsapp { background: #25D366; color: white; }
.float-call { background: var(--clr-accent); color: white; }

/* Tooltip */
.float-btn[data-tip] { position: relative; }
.float-btn[data-tip]::before {
  content: attr(data-tip);
  position: absolute;
  right: 64px;
  background: var(--clr-primary-dark);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: var(--font-body);
}
.float-btn[data-tip]:hover::before { opacity: 1; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s, transform 0.5s; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }

/* ===========================
   MAP EMBED
   =========================== */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.map-wrap iframe { display: block; width: 100%; height: 350px; }

/* Business hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.hours-table td:first-child { font-weight: 600; color: var(--clr-text); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-open { color: #22c55e !important; font-weight: 600 !important; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .about-story-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 24px; }
  .floating-btns { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   MAP PLACEHOLDER
   =========================== */
.map-placeholder {
  background: linear-gradient(135deg, var(--clr-bg-alt), var(--clr-bg));
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--clr-text-muted);
  font-size: 15px;
}
.map-placeholder span { font-size: 48px; }

/* Page transition */
.page-transition {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   V2 ENHANCEMENTS — Shadow backgrounds,
   watermark, association logos, more animation
   ═══════════════════════════════════════════ */

/* --- Logo image in navbar --- */
.nav-logo__img {
  height: 52px;
  width: auto;
  display: block;
}
[data-theme="dark"] .nav-logo__img {
  filter: brightness(1.15);
}

/* --- Centered WATERMARK background (mother's wish) --- */
.watermark-bg {
  position: relative;
  isolation: isolate;
}
.watermark-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--watermark, none);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(520px, 60%);
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
}
[data-theme="dark"] .watermark-bg::before {
  opacity: 0.10;
}

/* Section soft layered shadow backdrops */
.section--shadowed {
  position: relative;
}
.shadow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.shadow-orb--blue {
  background: radial-gradient(circle, rgba(30,93,183,0.35), transparent 70%);
}
.shadow-orb--orange {
  background: radial-gradient(circle, rgba(249,115,22,0.22), transparent 70%);
}
.section .container { position: relative; z-index: 1; }

/* --- Elevated shadow cards (reference-site style) --- */
.service-card,
.service-full-card,
.testimonial-card,
.value-card,
.contact-form {
  box-shadow:
    0 1px 2px rgba(10,42,110,0.04),
    0 8px 24px rgba(10,42,110,0.08),
    0 24px 48px rgba(10,42,110,0.06);
}
.service-card:hover,
.service-full-card:hover,
.testimonial-card:hover,
.value-card:hover {
  box-shadow:
    0 2px 4px rgba(10,42,110,0.08),
    0 16px 40px rgba(10,42,110,0.16),
    0 32px 64px rgba(249,115,22,0.10);
}
[data-theme="dark"] .service-card,
[data-theme="dark"] .service-full-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .contact-form {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    0 24px 48px rgba(0,0,0,0.25);
}

/* ═══════════════════════════════════════════
   ASSOCIATION / CERTIFIED-BY SECTION
   ═══════════════════════════════════════════ */
.certified-section {
  background: var(--clr-card);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.certified-head {
  text-align: center;
  margin-bottom: 40px;
}
.certified-head .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
}
.certified-head h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--clr-primary);
  margin-top: 8px;
}
[data-theme="dark"] .certified-head h2 { color: var(--clr-white); }

.cert-logos {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.cert-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 340px;
  max-width: 100%;
  transition: var(--transition);
  box-shadow:
    0 8px 24px rgba(10,42,110,0.08),
    0 24px 48px rgba(10,42,110,0.05);
}
.cert-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(10,42,110,0.16),
    0 32px 64px rgba(10,42,110,0.10);
  border-color: var(--clr-accent);
}
.cert-card__logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-card__logo img {
  max-height: 90px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
[data-theme="dark"] .cert-card__logo img {
  filter: brightness(0) invert(0.85);
}
.cert-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-primary);
  text-align: center;
}
[data-theme="dark"] .cert-card__title { color: var(--clr-white); }
.cert-card__sub {
  font-size: 13px;
  color: var(--clr-text-muted);
  text-align: center;
  line-height: 1.5;
}
.cert-card__check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════════
   POPULAR DESTINATIONS (from MS World ref)
   ═══════════════════════════════════════════ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(10,42,110,0.18);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10,42,110,0.28); }
.dest-card__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.dest-card:hover .dest-card__bg { transform: scale(1.12); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,80,0.85) 0%, rgba(7,26,80,0.2) 50%, transparent 100%);
}
.dest-card__label {
  position: relative;
  z-index: 1;
  color: white;
}
.dest-card__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.dest-card__label span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════
   MORE ANIMATIONS
   ═══════════════════════════════════════════ */
/* Floating animation for hero elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float--slow { animation: float 6s ease-in-out infinite; }
.animate-float--delay { animation: float 5s ease-in-out infinite; animation-delay: 1s; }

/* Pulse glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
  50% { box-shadow: 0 4px 32px rgba(249,115,22,0.7); }
}
.btn--primary { animation: pulseGlow 3s ease-in-out infinite; }

/* Gradient shift on hero */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero {
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
}

/* Scale-in reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Fade up with blur */
.reveal-blur {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.reveal-blur.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Shimmer on cards */
.service-full-card__hero {
  position: relative;
  overflow: hidden;
}
.service-full-card__hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s;
}
.service-full-card:hover .service-full-card__hero::after { left: 150%; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════
   ABOUT PAGE — Interactive & Immersive V3
   ═══════════════════════════════════════════ */

/* CRITICAL FALLBACK: if JS fails, content still shows after 1.5s */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-blur, .stagger > * {
  animation: failsafe-show 0.01s linear 2s forwards;
}
@keyframes failsafe-show {
  to { opacity: 1; transform: none; filter: none; }
}

/* About hero with logo */
.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 60px;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 55%, #1e4db7 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  overflow: hidden;
}
.about-hero__logo-bg {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(640px, 55%);
  opacity: 0.10;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.about-hero__logo-badge {
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  animation: float 5s ease-in-out infinite;
}
.about-hero__logo-badge img { width: 72px; height: auto; }
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  color: white;
  line-height: 1.08;
  margin-bottom: 22px;
}
.about-hero h1 .accent { color: var(--clr-accent); }
.about-hero__lead {
  font-size: clamp(16px, 2.2vw, 21px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
}
.about-hero__pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-hero__pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

/* Animated stat counters band */
.about-stats-band {
  background: var(--clr-card);
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  margin-top: -1px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-stat {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid var(--clr-border);
  position: relative;
  transition: var(--transition);
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: var(--clr-bg-alt); transform: translateY(-4px); }
.about-stat__icon { font-size: 32px; margin-bottom: 12px; }
.about-stat__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}
[data-theme="dark"] .about-stat__num { color: var(--clr-accent); }
.about-stat__label {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* Story split with logo visual */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}
.story-visual__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-bg-alt) 0%, transparent 70%);
}
.story-visual__ring::before {
  content: '';
  position: absolute;
  inset: 8%;
  border: 2px dashed var(--clr-border);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.story-visual__logo {
  position: relative;
  z-index: 2;
  width: 62%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(10,42,110,0.25));
}
.story-orbit {
  position: absolute;
  width: 56px; height: 56px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.story-orbit--1 { top: 4%; left: 14%; animation: float 4s ease-in-out infinite; }
.story-orbit--2 { top: 22%; right: 2%; animation: float 5s ease-in-out infinite 0.5s; }
.story-orbit--3 { bottom: 14%; left: 0%; animation: float 4.5s ease-in-out infinite 1s; }
.story-orbit--4 { bottom: 2%; right: 16%; animation: float 5.5s ease-in-out infinite 0.3s; }

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--clr-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}
[data-theme="dark"] .story-text h2 { color: white; }
.story-text p {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Interactive timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent), var(--clr-primary));
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 4px;
  width: 18px; height: 18px;
  background: var(--clr-accent);
  border: 4px solid var(--clr-card);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--clr-accent);
  transition: var(--transition);
}
.timeline-item:hover::before { transform: scale(1.3); }
.timeline-year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--clr-accent);
  text-transform: uppercase;
}
.timeline-item h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-text);
  margin: 4px 0 8px;
}
.timeline-item p {
  font-size: 15px;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* Mission/Vision flip-style cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-8px); }
.mv-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
}
.mv-card--mission { background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light)); }
.mv-card--vision { background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark)); }
.mv-card__icon {
  font-size: 44px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.mv-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}

/* Founder / family note */
.founder-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '"';
  position: absolute;
  top: -40px; right: 20px;
  font-family: var(--font-display);
  font-size: 200px;
  color: var(--clr-bg-alt);
  line-height: 1;
}
.founder-logo {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 3px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.founder-logo img { width: 70%; height: auto; }
.founder-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 24px);
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.founder-name { font-weight: 700; color: var(--clr-primary); font-size: 16px; }
[data-theme="dark"] .founder-name { color: var(--clr-accent); }
.founder-role { font-size: 14px; color: var(--clr-text-muted); }

@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; }
  .story-visual { max-width: 380px; margin: 0 auto; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat { border-bottom: 1px solid var(--clr-border); }
  .mv-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-logo { margin: 0 auto; }
  .about-hero__logo-bg { opacity: 0.06; }
}
@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-stat { border-right: none; }
}

/* Footer logo: subtle white chip so the blue transparent logo stays visible on the dark footer */
.footer .nav-logo__img {
  background: rgba(255,255,255,0.95);
  padding: 5px 8px;
  border-radius: 10px;
}

/* ═══════════════════════════════════════════
   SERVICE PHOTOS (real images, professional)
   ═══════════════════════════════════════════ */

/* HOME page service cards — photo header */
.service-card__img {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-card__img img { transform: scale(1.08); }
/* subtle brand gradient over photo so white text/tags stay readable */
.service-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,26,80,0.45) 0%, rgba(7,26,80,0.05) 45%, transparent 100%);
  pointer-events: none;
}

/* SERVICES page hero photo */
.service-full-card__hero {
  position: relative;
  overflow: hidden;
}
.service-full-card__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-full-card:hover .service-full-card__hero img { transform: scale(1.08); }
/* keep the existing brand-color gradient as an overlay ON TOP of the photo */
.service-full-card__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.55;
  z-index: 1;
}
/* the shimmer sweep stays on top */
.service-full-card__hero::after { z-index: 2; }

/* ═══════════════════════════════════════════
   DESTINATION + GALLERY PHOTOS
   ═══════════════════════════════════════════ */

/* HOME — Popular Destinations photo */
.dest-card__bg {
  position: absolute;
  inset: 0;
}
.dest-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.dest-card:hover .dest-card__bg img { transform: scale(1.12); }

/* GALLERY — photo fills item */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay { z-index: 2; }
