@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family: 'Hanora';
  src: url(./fonts/hanora.otf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --navy: #0a1f44;
  --navy-deep: #061630;
  --navy-mid: #0d2a5a;
  --royal: #0d47a1;
  --bright: #1e88e5;
  --gold: #ffd700;
  --gold-light: #ef5350;
  --gold-dim: rgba(229, 57, 53, 0.15);
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-hov: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 60px rgba(10, 31, 68, 0.45);
  --shadow-gold: 0 8px 32px rgba(229, 57, 53, 0.28);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --nav-h: 72px;

  --bg-primary: var(--navy);
  --bg-deep: var(--navy-deep);
  --bg-mid: var(--navy-mid);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.62);
  --text-muted: rgba(255, 255, 255, 0.38);
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.13);
  --navbar-bg: rgba(10, 31, 68, 0.55);
  --navbar-scrolled: rgba(6, 22, 48, 0.95);
  --mobile-menu-bg: rgba(6, 22, 48, 0.97);
  --footer-bg: #061630;
  --input-bg: rgba(255, 255, 255, 0.07);
  --section-label-color: var(--gold);
}

[data-theme="light"] {
  --navy: #e8f0fb;
  --navy-deep: #d0e0f5;
  --navy-mid: #c0d4ef;
  --royal: #1565c0;
  --bg-primary: #f0f5fc;
  --bg-deep: #dce8f8;
  --bg-mid: #e2ecf8;
  --text-primary: #000000;
  --text-secondary: rgba(13, 31, 60, 0.7);
  --text-muted: rgba(13, 31, 60, 0.45);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-hov: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(13, 31, 60, 0.12);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(13, 31, 60, 0.1);
  --shadow: 0 24px 60px rgba(13, 31, 60, 0.12);
  --shadow-gold: 0 8px 32px rgba(229, 57, 53, 0.35);
  --navbar-bg: rgba(240, 245, 252, 0.85);
  --navbar-scrolled: rgba(240, 245, 252, 0.97);
  --mobile-menu-bg: rgba(240, 245, 252, 0.98);
  --footer-bg: #0d1f3c;
  --input-bg: rgba(255, 255, 255, 0.9);
  --white: #0d1f3c;
  --section-label-color: #c62828;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: auto;
  margin: 0;
  padding: 0;
  transition:
    background 0.4s,
    color 0.4s;
}

[data-theme="light"] body,
body[data-theme="light"] {
  background: var(--bg-primary);
}

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

a {
  color: inherit;
}

button {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

textarea,
input,
select {
  font-family: "Poppins", sans-serif;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #061630;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.pre-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 5.5vw, 3rem);
  color: var(--gold);
  letter-spacing: 0.25em;
  animation: preFlicker 1.4s ease-in-out infinite alternate;
}

.pre-logo img {
  height: clamp(100px, 50vw, 150px);
  width: auto;
  object-fit: contain;
}

.pre-logo span {
  color: #ffffff;
}

.pre-track {
  width: clamp(140px, 30vw, 220px);
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  animation: preFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pre-text {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  text-align: center;
}

@keyframes preFill {
  to {
    width: 100%;
  }
}

@keyframes preFlicker {
  0% {
    opacity: 0.7;
    text-shadow: none;
  }

  100% {
    opacity: 1;
    text-shadow: 0 0 40px rgba(229, 57, 53, 0.4);
  }
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 5vw, 72px);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--card-border);
  transition:
    background 0.4s,
    box-shadow 0.4s;
}

#navbar.scrolled {
  background: var(--navbar-scrolled);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--gold);
  letter-spacing: 0.14em;
  line-height: 1.1;
}

.nav-logo-text span {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 34px);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  letter-spacing: 0.07em;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light)) !important;
  color: #0a1f44 !important;
  padding: 9px 22px !important;
  border-radius: 40px !important;
  font-weight: 700 !important;
  font-size: clamp(0.7rem, 1.1vw, 0.82rem) !important;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(229, 57, 53, 0.45);
}

.nav-cta::after {
  display: none !important;
}

.theme-toggle {
  width: 42px;
  height: 24px;
  border-radius: 40px;
  border: none;
  background: var(--glass);
  border: 1px solid var(--card-border);
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 3px;
}

.theme-toggle::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.3s;
  display: block;
}

[data-theme="light"] .theme-toggle::before {
  transform: translateX(18px);
}

.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.theme-icon {
  font-size: 0.85rem;
  transition: opacity 0.3s;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 9010;
  position: relative;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  transform-origin: center;
}

.hamburger span:nth-child(2) {
  width: 16px;
  align-self: flex-start;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* ── MOBILE MENU — Classic Elegant Fullscreen ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9005;
  overflow: hidden;
  pointer-events: none;
}

/* Animated panel that slides in from the right */
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #061630 0%, #0a1f44 60%, #0d2a5a 100%);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

/* Decorative gold vertical line accent */
.mobile-menu::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s 0.4s;
  z-index: 1;
}

.mobile-menu.open {
  pointer-events: auto;
}

.mobile-menu.open::before {
  transform: translateX(0);
}

.mobile-menu.open::after {
  opacity: 1;
}

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
  transition: opacity 0.35s 0.5s, transform 0.35s 0.5s, background 0.3s, color 0.3s;
}

.mobile-menu.open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.mobile-menu-close:hover {
  background: var(--gold);
  color: #0a1f44;
  border-color: var(--gold);
}

/* Nav links container */
.mobile-menu-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 48px;
  z-index: 2;
}

/* Each nav link */
.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: color 0.3s, padding-left 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  /* Staggered slide-in */
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.45s, transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s, padding-left 0.3s;
}

.mobile-menu a::after {
  content: "→";
  font-family: sans-serif;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-8px);
}

.mobile-menu a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.mobile-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Last link (Contact) gets gold CTA treatment */
.mobile-menu a:last-of-type {
  margin-top: 10px;
  border-bottom: none;
  color: var(--gold);
  font-weight: 600;
}

/* Stagger animation when open */
.mobile-menu.open a:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.mobile-menu.open a:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}

.mobile-menu.open a:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.40s;
}

.mobile-menu.open a:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}

.mobile-menu.open a:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.52s;
}

.mobile-menu.open a:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.58s;
}

/* Theme toggle button at bottom */
.mobile-theme-btn {
  margin-top: 28px;
  padding: 12px 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  align-self: flex-start;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.45s 0.65s, background 0.3s, color 0.3s, border-color 0.3s;
}

.mobile-menu.open .mobile-theme-btn {
  opacity: 1;
}

.mobile-theme-btn:hover {
  background: var(--gold);
  color: #0a1f44;
  border-color: var(--gold);
}

/* Bottom decorative text */
.mobile-menu-tagline {
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s 0.7s;
}

.mobile-menu.open .mobile-menu-tagline {
  opacity: 1;
}

/* Light mode overrides for mobile menu */
[data-theme="light"] .mobile-menu::before {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2a5a 100%);
}

[data-theme="light"] .hamburger span {
  background: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-size: clamp(0.6rem, 1.1vw, 0.72rem);
  letter-spacing: 0.38em;
  color: var(--section-label-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 40px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  color: var(--text-secondary);
  font-size: clamp(0.84rem, 1.4vw, 0.98rem);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 580px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  outline: none;
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: clamp(0.8rem, 1.3vw, 0.92rem);
  padding: clamp(12px, 2vw, 15px) clamp(26px, 3.5vw, 40px);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a1f44;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(229, 57, 53, 0.45);
}

.btn-outline-white {
  border: 1.5px solid var(--card-border);
  color: var(--text-primary);
  background: var(--glass);
  backdrop-filter: blur(14px);
}

.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.8rem;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: all 0.4s;
}

.glass-card:hover {
  border-color: rgba(229, 57, 53, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

.marquee-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  color: #0a1f44;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 clamp(20px, 3vw, 40px);
}

.marquee-inner span::before {
  content: "✦  ";
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.wa-float {
  position: fixed;
  bottom: clamp(20px, 4vw, 36px);
  right: clamp(16px, 4vw, 32px);
  z-index: 8900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366 url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") center/28px no-repeat;
  text-decoration: none;
  animation: waPulse 2.8s ease-in-out infinite;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.12);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.45),
      0 0 0 14px rgba(37, 211, 102, 0.08);
  }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

#footer {
  background: #061630;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 80px) clamp(24px, 4vw, 40px);
}

[data-theme="light"] #footer {
  background: #0d1f3c;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-brand .nav-logo img {
  height: 52px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  line-height: 1.75;
  max-width: 270px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 20%;
  /* background: rgba(255, 255, 255, 0.07); */
  /* border: 1px solid rgba(255, 255, 255, 0.13); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social-icon:hover {
  background: var(--gold);
  color: #0a1f44;
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.76rem;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.page-hero {
  min-height: clamp(320px, 50vh, 520px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 clamp(16px, 5vw, 80px) clamp(40px, 6vw, 72px);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 31, 68, 0.4) 0%,
      rgba(10, 31, 68, 0.82) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .section-title,
.page-hero-content .section-sub,
.page-hero-content .section-label {
  color: inherit;
}

.page-hero-content .section-title {
  color: #fff;
}

.page-hero-content .section-label {
  color: var(--gold);
}

.page-hero-content .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.section-pad {
  padding: clamp(64px, 10vw, 128px) clamp(16px, 5vw, 80px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

[data-theme="light"] .about-intro {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}

[data-theme="light"] .mv-section {
  background: var(--bg-deep);
}

[data-theme="light"] .timeline-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
}

[data-theme="light"] .blog-section {
  background: var(--bg-primary);
}

[data-theme="light"] .gallery-section {
  background: var(--bg-primary);
}

[data-theme="light"] .team-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-mid) 100%);
}

[data-theme="light"] .contact-section {
  background: var(--bg-primary);
}

[data-theme="light"] .faq-section {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-primary) 100%);
}

[data-theme="light"] #services-preview {
  background: var(--bg-primary);
}

[data-theme="light"] #counters {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
}

[data-theme="light"] #destinations {
  background: var(--bg-deep);
}

[data-theme="light"] #why-choose-us {
  background: var(--bg-primary);
}

[data-theme="light"] #testimonials {
  background: var(--bg-deep);
}

[data-theme="light"] .main-services {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-mid) 100%);
}

[data-theme="light"] .packages-section {
  background: var(--bg-primary);
}

[data-theme="light"] .form-input {
  background: var(--input-bg);
  color: var(--text-primary);
  border-color: var(--card-border);
}

[data-theme="light"] .form-input::placeholder {
  color: rgba(13, 31, 60, 0.35);
}

[data-theme="light"] .form-input option {
  background: #fff;
  color: #0d1f3c;
}

[data-theme="light"] .timeline::before {
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

[data-theme="light"] .tl-dot {
  border-color: var(--bg-mid);
}

[data-theme="light"] .section-title {
  color: black;
}

[data-theme="light"] .section-sub {
  color: rgba(13, 31, 60, 0.68);
}

[data-theme="light"] #sub {
  color: #ff0000;
}

[data-theme="light"] .page-hero-content .section-sub {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] #sub2 {
  color: var(--gold);
}

[data-theme="light"] .body-text {
  color: var(--text-secondary);
}

[data-theme="light"] .mv-text,
[data-theme="light"] .tl-content p,
[data-theme="light"] .bc-excerpt,
[data-theme="light"] .bf-excerpt,
[data-theme="light"] .svc-block-text,
[data-theme="light"] .mini-svc-card p,
[data-theme="light"] .team-bio,
[data-theme="light"] .faq-item p {
  color: var(--text-secondary);
}

[data-theme="light"] .mv-title,
[data-theme="light"] .tl-content h4,
[data-theme="light"] .bc-title,
[data-theme="light"] .bf-title,
[data-theme="light"] .team-name,
[data-theme="light"] .pkg-title,
[data-theme="light"] .mini-svc-card h4,
[data-theme="light"] .lt-inner h3 {
  color: var(--text-primary);
}

[data-theme="light"] .pkg-meta span,
[data-theme="light"] .blog-meta {
  color: var(--text-muted);
}

[data-theme="light"] .svc-block-list li {
  color: var(--text-secondary);
}

[data-theme="light"] .pkg-features li {
  color: var(--text-secondary);
}

[data-theme="light"] .info-card strong {
  color: var(--text-primary);
}

[data-theme="light"] .info-card a,
[data-theme="light"] .info-card span {
  color: var(--text-secondary);
}

[data-theme="light"] .lt-inner p {
  color: var(--text-secondary);
}

[data-theme="light"] .why-feat-desc {
  color: var(--text-secondary);
}

[data-theme="light"] .why-feat-title {
  color: var(--text-primary);
}

[data-theme="light"] #why-choose-us {
  background: var(--bg-deep);
}

[data-theme="light"] .counter-label {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .about-badge-item {
  color: var(--text-secondary);
}

[data-theme="light"] .hamburger span {
  background: var(--text-primary);
}

[data-theme="light"] .svc-name,
[data-theme="light"] .svc-desc {
  color: var(--text-primary);
}

[data-theme="light"] .svc-desc {
  color: var(--text-secondary);
}

[data-theme="light"] .t-text {
  color: var(--text-secondary);
}

[data-theme="light"] .t-name {
  color: var(--text-primary);
}

[data-theme="light"] .t-loc {
  color: var(--text-muted);
}

[data-theme="light"] .gf-btn {
  color: var(--text-secondary);
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="light"] .why-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

[data-theme="light"] .service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
}

[data-theme="light"] .hero-headline {
  color: #ffffff;
}

[data-theme="light"] .hero-headline em {
  color: #c62828;
}

[data-theme="light"] .page-hero-content .section-title {
  color: #ffffff;
}

[data-theme="light"] .tl-year {
  color: #0d47a1;
}

[data-theme="light"] .tl-content h4 {
  color: #0d1f3c;
}

[data-theme="light"] .tl-content p {
  color: #0d2947;
}

[data-theme="light"] .svc-block-title {
  color: #0d1f3c;
}

[data-theme="light"] .svc-block-text {
  color: #0d2947;
}

[data-theme="light"] .svc-block-list li {
  color: #0d3159;
}

[data-theme="light"] .mini-svc-card h4 {
  color: #0d1f3c;
}

[data-theme="light"] .mini-svc-card p {
  color: #0d2947;
}

[data-theme="light"] .gf-btn {
  color: #0d1f3c;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(13, 31, 60, 0.15);
}

[data-theme="light"] .gf-btn.active,
[data-theme="light"] .gf-btn:hover {
  background: #e53935;
  color: #0a1f44;
  border-color: #e53935;
}

[data-theme="light"] .pkg-tab {
  color: #0d1f3c;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(13, 31, 60, 0.15);
}

[data-theme="light"] .pkg-tab.active,
[data-theme="light"] .pkg-tab:hover {
  background: #e53935;
  color: #0a1f44;
  border-color: #e53935;
}

[data-theme="light"] .bf-title {
  color: #0d1f3c;
}

[data-theme="light"] .bf-excerpt {
  color: #0d2947;
}

[data-theme="light"] .bc-title {
  color: #0d1f3c;
}

[data-theme="light"] .bc-excerpt {
  color: #0d2947;
}

[data-theme="light"] .blog-tag {
  color: #c62828;
}

[data-theme="light"] .blog-meta {
  color: #0d3159;
}

[data-theme="light"] .blog-read-more {
  color: #c62828;
}

[data-theme="light"] .lt-inner h3 {
  color: #0d1f3c;
}

[data-theme="light"] .lt-inner p {
  color: #0d2947;
}

[data-theme="light"] .info-card strong {
  color: #0d1f3c;
}

[data-theme="light"] .info-card a,
[data-theme="light"] .info-card span {
  color: #0d2947;
}

[data-theme="light"] .contact-socials h4 {
  color: #0d1f3c;
}

[data-theme="light"] .social-link {
  color: #0d1f3c;
  background: rgba(13, 31, 60, 0.08);
  border-color: rgba(13, 31, 60, 0.15);
}

[data-theme="light"] .faq-item h4 {
  color: #c62828;
}

[data-theme="light"] .faq-item p {
  color: #0d2947;
}

[data-theme="light"] .legal-block h2 {
  color: #c62828;
}

[data-theme="light"] .legal-block p,
[data-theme="light"] .legal-block li {
  color: #0d2947;
}

[data-theme="light"] .legal-effective {
  color: #0d3159;
  background: rgba(13, 31, 60, 0.05);
  border-color: rgba(13, 31, 60, 0.1);
}

[data-theme="light"] .legal-divider {
  background: rgba(13, 31, 60, 0.1);
}

[data-theme="light"] .map-placeholder p {
  color: #0d1f3c;
}

[data-theme="light"] .about-stat strong {
  color: #ef5350;
}

[data-theme="light"] .about-stat span {
  color: #fff;
}

[data-theme="light"] .body-text {
  color: #0d2947;
}

[data-theme="light"] .about-badge-item {
  color: #0d1f3c;
  background: rgba(13, 31, 60, 0.05);
  border-color: rgba(13, 31, 60, 0.1);
}

[data-theme="light"] .mv-title {
  color: #0d1f3c;
}

[data-theme="light"] .mv-text {
  color: #0d2947;
}

[data-theme="light"] .team-name {
  color: #0d1f3c;
}

[data-theme="light"] .team-role {
  color: #c62828;
}

[data-theme="light"] .team-bio {
  color: #0d2947;
}

[data-theme="light"] .why-feat-title {
  color: #0d1f3c;
}

[data-theme="light"] .dest-label {
  color: #c62828;
}

[data-theme="light"] .dest-city {
  color: #ffffff;
}

[data-theme="light"] .dest-price {
  color: #c62828;
}

[data-theme="light"] .t-text {
  color: #0d2947;
}

[data-theme="light"] .t-name {
  color: #0d1f3c;
}

[data-theme="light"] .t-loc {
  color: #0d3159;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}