/* ============================================================
   CREATIVE LINE TRAVELS — Tropical Palette (Emerald / Gold / Ocean)
   ============================================================ */

:root {
  --deep: #073b4c;          /* deep ocean - primary dark background */
  --deep-2: #0b5266;        /* mid ocean - gradients / navbar scrolled */
  --emerald: #10b981;       /* primary accent */
  --emerald-dark: #047857;
  --gold: #f5a623;          /* secondary accent - CTAs, badges */
  --gold-dark: #d98c0f;
  --ocean: #0ea5e9;         /* bright accent - links, icons */
  --ivory: #f4fbf8;         /* light section background */
  --light-gray: #dbe9e4;    /* muted text on dark backgrounds */
  --white: #ffffff;
  --black: #0a1a17;
  --shadow: 0 4px 30px rgba(4, 30, 24, 0.12);
  --shadow-lg: 0 20px 45px rgba(4, 30, 24, 0.18);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 16px;
}

@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;
  }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Tahoma, Geneva, Verdana, sans-serif;
  color: var(--light-gray);
  background-color: var(--deep);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Header / Video Background ---------- */
.header {
  position: relative;
  z-index: 0; /* establishes a stacking context so the negative-z-index video/poster/overlay
                 layers below actually paint inside this element instead of escaping behind it */
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
}

.header-video,
.header-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.header-poster { z-index: -3; }

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 59, 76, 0.75) 0%, rgba(7, 59, 76, 0.55) 50%, rgba(7, 59, 76, 0.85) 100%);
  z-index: -1;
}

.header-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: absolute;
  top: 0; left: 0; width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(7, 59, 76, 0.94);
  padding: 14px 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.logo { display: flex; align-items: center; }
.logo img { height: 42px; margin-right: 10px; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--white); text-decoration: none; }

.nav-links { display: flex; align-items: center; }
.nav-links ul { display: flex; list-style: none; }
.nav-links ul li { position: relative; margin: 0 15px; }

.nav-links ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

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

.nav-links ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

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

.dropdown-icon { margin-left: 5px; font-size: 0.8rem; transition: var(--transition); }

.nav-links .has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  background-color: rgba(11, 82, 102, 0.97);
  min-width: 200px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  padding: 6px 0;
}

.nav-links .has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); max-height: 500px;
}

.nav-links .dropdown-menu li { margin: 0; }
.nav-links .dropdown-menu li a { padding: 10px 20px; }

.social-icons { display: flex; margin-left: 30px; }
.social-icons a {
  display: flex; justify-content: center; align-items: center;
  width: 36px; height: 36px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%; margin: 0 5px;
  color: var(--white); font-size: 1rem;
  transition: var(--transition); text-decoration: none;
}
.social-icons a:hover { background-color: var(--gold); color: var(--deep); transform: translateY(-3px); }

/* ---------- Hamburger ---------- */
.hamburger { display: none; cursor: pointer; width: 30px; height: 24px; position: relative; z-index: 1100; }
.hamburger span {
  display: block; position: absolute; height: 3px; width: 100%;
  background: var(--white); border-radius: 3px; left: 0;
  transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(135deg); }
.hamburger.active span:nth-child(2) { opacity: 0; left: -30px; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-135deg); }

/* ---------- Mobile Menu ---------- */
.mobile-overlay {
  position: fixed; inset: 0; background-color: rgba(4, 20, 16, 0.7);
  z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 85%; max-width: 350px; height: 100vh;
  background-color: var(--white); z-index: 1000; transition: var(--transition);
  display: flex; flex-direction: column; box-shadow: -5px 0 20px rgba(0,0,0,0.15);
}
.mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; background: linear-gradient(135deg, var(--deep), var(--deep-2)); color: var(--white);
}
.mobile-logo { display: flex; align-items: center; }
.mobile-logo img { height: 30px; margin-right: 10px; }
.mobile-logo span { font-weight: 600; font-size: 1.1rem; }
.mobile-close { font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.mobile-close:hover { color: var(--gold); transform: rotate(90deg); }

.mobile-menu-content { flex: 1; overflow-y: auto; padding: 20px; }
.mobile-menu-content ul { list-style: none; }
.mobile-menu-content ul li { margin-bottom: 10px; }
.mobile-menu-content ul li a {
  color: var(--deep); text-decoration: none; font-weight: 500; font-size: 1rem;
  display: block; padding: 10px 0; transition: var(--transition);
}
.mobile-menu-content ul li a:hover { color: var(--emerald-dark); }

.has-dropdown { position: relative; }
.dropdown-parent { display: flex; justify-content: space-between; align-items: center; }
.dropdown-toggle { background: none; border: none; color: var(--deep); font-size: 1rem; cursor: pointer; padding: 10px; }
.dropdown-toggle:hover { color: var(--emerald-dark); }

.mobile-menu .dropdown-menu {
  background-color: rgba(219, 233, 228, 0.5);
  border-radius: 8px; margin-top: 5px; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease; padding-left: 15px;
}
.mobile-menu .dropdown-menu.active { max-height: 500px; }
.mobile-menu .dropdown-menu li { margin-bottom: 4px; }
.mobile-menu .dropdown-menu li a { font-size: 0.9rem; padding: 8px 0; }

.mobile-social-icons {
  display: flex; justify-content: center; margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.mobile-social-icons a {
  display: flex; justify-content: center; align-items: center; width: 40px; height: 40px;
  background-color: var(--deep-2); border-radius: 50%; margin: 0 8px;
  color: var(--white); font-size: 1.1rem; text-decoration: none; transition: var(--transition);
}
.mobile-social-icons a:hover { background-color: var(--gold); color: var(--deep); transform: translateY(-3px); }

/* ---------- Hero ---------- */
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-content h1 {
  font-size: 3.6rem; margin-bottom: 20px; font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35); color: var(--white); line-height: 1.15;
}
.hero-content .accent { color: var(--gold); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; line-height: 1.6; color: var(--white); }

.cta-button {
  display: inline-block; padding: 13px 32px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: var(--white); text-decoration: none; border-radius: 30px;
  font-weight: 600; font-size: 1rem; transition: var(--transition);
  border: 2px solid transparent; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(16, 185, 129, 0.45); }

.cta-button.secondary {
  background: transparent; border: 2px solid var(--gold); color: var(--gold); box-shadow: none;
}
.cta-button.secondary:hover { background-color: var(--gold); color: var(--deep); }

.cta-button.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.35);
}

/* ---------- Section basics ---------- */
.section-title {
  font-size: 2.5rem; color: var(--deep); margin-bottom: 15px; position: relative; display: inline-block;
}
.section-title::after {
  content: ''; position: absolute; bottom: -10px; left: 0; width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--gold)); border-radius: 2px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-title::after { left: 50%; transform: translateX(-50%); }
.section-subtitle { font-size: 1.15rem; color: var(--deep-2); margin-bottom: 30px; font-weight: 300; }

/* ---------- About Section ---------- */
.about-section { padding: 120px 0; background-color: var(--ivory); position: relative; overflow: hidden; }
.bg-pattern { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.circle { position: absolute; border-radius: 50%; border: 14px solid rgba(16, 185, 129, 0.08); animation: float 15s infinite linear; }
.circle-1 { width: 300px; height: 300px; top: -50px; left: -50px; }
.circle-2 { width: 200px; height: 200px; bottom: 100px; right: 100px; border-width: 10px; animation-direction: reverse; }
.circle-3 { width: 150px; height: 150px; top: 30%; right: -30px; border-width: 8px; }
.circle-4 { width: 400px; height: 400px; bottom: -100px; right: -100px; animation-direction: reverse; }

.about-container {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.about-content { flex: 1; min-width: 300px; }
.about-image { flex: 1; min-width: 300px; position: relative; }
.image-wrapper {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); transform: perspective(1000px) rotateY(-5deg); transition: var(--transition);
}
.image-wrapper:hover { transform: perspective(1000px) rotateY(0deg); }
.image-wrapper img { width: 100%; height: auto; }
.image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,0.28) 0%, rgba(7,59,76,0.22) 100%);
  mix-blend-mode: multiply;
}
.about-text { color: var(--deep-2); line-height: 1.8; margin-bottom: 30px; }
.about-text p { margin-bottom: 20px; }

.stats-container { display: flex; justify-content: space-between; margin: 40px 0; flex-wrap: wrap; gap: 20px; }
.stat-item {
  text-align: center; flex: 1; min-width: 100px; background: var(--white);
  padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.06); transition: var(--transition);
}
.stat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stat-number { font-size: 2.4rem; font-weight: 700; color: var(--emerald-dark); margin-bottom: 5px; }
.stat-label { font-size: 0.85rem; color: var(--deep); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

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

/* ---------- Special Offers Section (NEW) ---------- */
.offers-section { padding: 100px 0; background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%); position: relative; overflow: hidden; }
.offers-section .section-title { color: var(--white); }
.offers-section .section-subtitle { color: var(--light-gray); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.offer-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); transition: var(--transition); display: flex; flex-direction: column;
}
.offer-card:hover { transform: translateY(-8px); }
.offer-image { position: relative; height: 180px; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; }
.offer-tag {
  position: absolute; top: 15px; left: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); font-weight: 700; font-size: 0.85rem;
  padding: 6px 14px; border-radius: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.offer-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.offer-body h3 { color: var(--deep); margin-bottom: 8px; font-size: 1.25rem; }
.offer-body p { color: var(--deep-2); font-size: 0.95rem; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.offer-price { font-weight: 700; color: var(--emerald-dark); font-size: 1.1rem; margin-bottom: 14px; }
.offer-price .old-price { color: #9aa; text-decoration: line-through; font-weight: 400; font-size: 0.9rem; margin-right: 8px; }
.offer-cta {
  display: inline-block; text-align: center; padding: 10px 18px; border-radius: 24px;
  background: var(--emerald); color: var(--white); text-decoration: none; font-weight: 600; transition: var(--transition);
}
.offer-cta:hover { background: var(--emerald-dark); }
.offers-empty { color: var(--light-gray); text-align: center; padding: 40px; opacity: 0.8; }

/* ---------- Enquiry (Ticket) Section ---------- */
.enquiry-section { position: relative; padding: 100px 0; background-color: var(--ivory); overflow: hidden; }
.enquiry-section .section-title { color: var(--deep); text-align: center; }
.enquiry-section .section-subtitle { color: var(--deep-2); text-align: center; margin-bottom: 50px; }

.enquiry-ticket {
  max-width: 800px; margin: 0 auto; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative; z-index: 2;
}
.ticket-header {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 30px;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%); color: var(--white);
}
.airline-logo img { height: 40px; }
.ticket-type {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px;
}
.service-tabs { display: flex; border-bottom: 1px solid #e1e5eb; flex-wrap: wrap; }
.tab-btn {
  flex: 1; padding: 15px; background: none; border: none; font-size: 1rem; font-weight: 600;
  color: var(--deep-2); cursor: pointer; transition: all 0.3s ease; position: relative; min-width: 120px;
}
.tab-btn.active { color: var(--emerald-dark); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px; background: var(--emerald); }
.tab-btn:hover:not(.active) { background: rgba(16,185,129,0.08); color: var(--deep); }

.ticket-form { padding: 30px; display: none; }
.ticket-form.active { display: block; animation: fadeIn 0.4s ease; }
.ticket-row { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.ticket-field { flex: 1; min-width: 140px; }
.ticket-field label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--deep-2); font-weight: 500; }
.ticket-field input, .ticket-field select, .ticket-field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid #d1d5db; border-radius: 8px;
  font-size: 1rem; transition: all 0.3s ease; background: var(--white); font-family: inherit;
}
.ticket-field input:focus, .ticket-field select:focus, .ticket-field textarea:focus {
  border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.18); outline: none;
}
.ticket-field textarea { min-height: 100px; resize: vertical; }

.swap-btn { display: flex; align-items: flex-end; padding-bottom: 8px; }
.swap-btn i {
  background: var(--emerald); color: var(--white); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  cursor: pointer; transition: all 0.3s ease;
}
.swap-btn i:hover { background: var(--emerald-dark); transform: rotate(180deg); }

.ticket-footer {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 30px;
  border-top: 1px dashed #d1d5db; background: #f9fafb; flex-wrap: wrap; gap: 16px;
}
.ticket-barcode { display: flex; align-items: center; gap: 15px; }
.barcode {
  width: 120px; height: 40px;
  background: repeating-linear-gradient(90deg, var(--deep), var(--deep) 2px, transparent 2px, transparent 4px);
  position: relative;
}
.barcode::before, .barcode::after { content: ''; position: absolute; height: 100%; width: 4px; background: var(--deep); top: 0; }
.barcode::before { left: 0; } .barcode::after { right: 0; }
.ticket-barcode span { font-size: 0.8rem; color: var(--deep-2); font-weight: 600; }

.enquire-btn {
  padding: 12px 30px; background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); color: var(--white);
  border: none; border-radius: 30px; font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
}
.enquire-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(16,185,129,0.35); }
.enquire-btn::after { content: '\f178'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 0.9rem; }

/* ---------- Destinations ---------- */
.destinations-section { position: relative; padding: 100px 0; background-color: var(--deep); overflow: hidden; }
.destinations-section .section-title { color: var(--white); }
.destinations-section .section-subtitle { color: var(--light-gray); }
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

.destination-card {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1); height: 350px; opacity: 0; transform: translateY(20px);
}
.destination-card.visible { opacity: 1; transform: translateY(0); }
.destination-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0,0,0,0.35); }
.card-image { position: relative; width: 100%; height: 100%; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(0.2,0.96,0.34,1); }
.destination-card:hover .card-image img { transform: scale(1.06); }
.destination-card .image-overlay {
  background: linear-gradient(to top, rgba(7,59,76,0.92) 0%, rgba(7,59,76,0.35) 50%, transparent 100%);
  mix-blend-mode: normal; z-index: 1;
}
.card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; z-index: 2; color: var(--white); }
.card-content h3 { font-size: 1.8rem; margin-bottom: 10px; transition: all 0.4s ease; }
.hidden-content { opacity: 0; max-height: 0; overflow: hidden; transition: all 0.4s ease; transform: translateY(10px); }
.destination-card:hover .hidden-content { opacity: 1; max-height: 200px; transform: translateY(0); transition-delay: 0.1s; }
.destination-card:hover .card-content h3 { transform: translateY(-10px); }
.hidden-content p { margin-bottom: 15px; line-height: 1.6; }
.explore-btn { display: inline-flex; align-items: center; color: var(--white); text-decoration: none; font-weight: 600; }
.explore-btn i { margin-left: 8px; transition: var(--transition); }
.explore-btn:hover { color: var(--gold); }
.explore-btn:hover i { transform: translateX(5px); }
.card-badge {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
  z-index: 3; box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* ---------- Services ---------- */
.services-section { position: relative; padding: 100px 0; background-color: var(--ivory); overflow: hidden; }
.services-section .section-title { color: var(--deep); text-align: center; }
.services-section .section-subtitle { color: var(--deep-2); text-align: center; margin-bottom: 50px; }
.services-category { margin-bottom: 60px; }
.category-title {
  color: var(--deep); font-size: 1.8rem; margin-bottom: 30px; padding-bottom: 15px;
  position: relative; text-align: center; font-weight: 600;
}
.category-title::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px; background: linear-gradient(90deg, var(--emerald), var(--gold)); border-radius: 3px;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 30px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 28px; text-align: center;
  transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1); box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 78px; height: 78px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.1); border-radius: 50%; color: var(--emerald-dark); font-size: 2rem; transition: all 0.4s ease;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); color: var(--white); transform: rotateY(180deg); }
.service-card h3 { color: var(--deep); margin-bottom: 15px; font-size: 1.3rem; min-height: 55px; display: flex; align-items: center; justify-content: center; }
.service-card:hover h3 { color: var(--emerald-dark); }
.service-card p { color: var(--deep-2); font-size: 0.95rem; line-height: 1.6; min-height: 70px; }

/* ---------- Happy Customers / Testimonials Carousel ---------- */
.customers-section, .testimonials-section { position: relative; padding: 100px 0; background-color: var(--white); overflow: hidden; }
.customers-section .section-title, .testimonials-section .section-title { color: var(--deep); text-align: center; }
.customers-section .section-subtitle, .testimonials-section .section-subtitle { color: var(--deep-2); text-align: center; margin-bottom: 50px; }

.customers-carousel { position: relative; width: 100%; overflow: hidden; padding: 20px 0; }
.customer-track { display: flex; gap: 30px; animation: scroll 34s linear infinite; width: max-content; }
.customer-track:hover { animation-play-state: paused; }
.customer-item {
  min-width: 340px; max-width: 340px; background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.1); transition: var(--transition); display: flex; flex-direction: column;
}
.customer-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.customer-frame { position: relative; height: 220px; overflow: hidden; background: var(--ivory); }
.customer-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.customer-item:hover .customer-frame img { transform: scale(1.05); }
.package-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep); padding: 5px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; z-index: 2;
}
.customer-quote { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.customer-quote p { color: var(--deep-2); font-style: italic; line-height: 1.6; margin-bottom: 15px; flex: 1; }
.customer-name { color: var(--deep); font-weight: 700; font-size: 0.95rem; }
.rating { color: var(--gold); margin-bottom: 10px; }

@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Branches ---------- */
.branches-section { padding: 100px 0; background: linear-gradient(135deg, var(--deep-2), var(--deep)); position: relative; overflow: hidden; }
.branches-section .container { max-width: 1400px; }
.branches-section .section-title { color: var(--white); text-align: center; }
.branches-section .section-subtitle { color: var(--light-gray); text-align: center; margin-bottom: 30px; font-size: 1.15rem; }
.branches-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.branch-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 30px 25px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; height: 100%;
}
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: rgba(255,255,255,0.1); }
.branch-icon {
  width: 50px; height: 50px; background: rgba(245,166,35,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); font-size: 1.3rem;
}
.branch-card h3 { color: var(--white); margin-bottom: 15px; font-size: 1.2rem; }
.branch-details { flex: 1; }
.branch-details p { color: var(--light-gray); margin-bottom: 12px; display: flex; align-items: flex-start; line-height: 1.5; font-size: 0.9rem; }
.branch-details i { margin-right: 8px; color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }

/* ---------- Mission / Team / Why Choose / Features ---------- */
.mission-section, .why-choose-section { padding: 100px 0; background-color: var(--ivory); }
.team-section { padding: 100px 0; background-color: var(--white); }
.mission-section .section-title, .team-section .section-title, .why-choose-section .section-title { color: var(--deep); margin-bottom: 15px; }
.mission-section .section-subtitle, .team-section .section-subtitle, .why-choose-section .section-subtitle { color: var(--deep-2); font-weight: 300; }
.mission-grid, .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.mission-card, .feature-card {
  background: var(--white); padding: 40px 30px; border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: all 0.3s ease;
}
.mission-card:hover, .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mission-icon, .feature-icon { font-size: 2.4rem; color: var(--emerald-dark); margin-bottom: 20px; }
.mission-card h3 { color: var(--deep); margin-bottom: 15px; font-size: 1.4rem; }
.mission-card p { color: var(--deep-2); line-height: 1.6; }
.feature-card h3 { color: var(--deep); margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p { color: var(--deep-2); line-height: 1.6; font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-member { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.member-image { position: relative; height: 300px; overflow: hidden; }
.member-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-member:hover .member-image img { transform: scale(1.05); }
.social-links { position: absolute; bottom: 20px; left: 0; width: 100%; display: flex; justify-content: center; gap: 15px; }
.social-links a {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  background: rgba(255,255,255,0.9); border-radius: 50%; color: var(--deep); transition: all 0.3s ease;
}
.social-links a:hover { background: var(--emerald); color: var(--white); }
.member-info { padding: 25px; text-align: center; }
.member-info h3 { color: var(--deep); margin-bottom: 5px; }
.member-info p { color: var(--deep-2); margin-bottom: 10px; }
.member-bio { font-size: 0.9rem; line-height: 1.6; color: var(--deep-2); }

/* ---------- CTA ---------- */
.cta-section {
  padding: 80px 0; background: linear-gradient(135deg, var(--deep) 0%, var(--emerald-dark) 100%);
  color: var(--white); text-align: center;
}
.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Partners ---------- */
.partners-section { padding: 80px 0; background-color: var(--ivory); position: relative; overflow: hidden; }
.partners-section .section-title { color: var(--deep); }
.partners-section .section-subtitle { color: var(--deep-2); }
.partners-carousel { position: relative; width: 100%; overflow: hidden; padding: 30px 0; }
.partners-track { display: flex; gap: 40px; animation: scroll 40s linear infinite; width: max-content; }
.partners-track:hover { animation-play-state: paused; }
.partner-item {
  min-width: 150px; height: 80px; display: flex; align-items: center; justify-content: center;
  padding: 0 20px; filter: grayscale(100%); opacity: 0.65; transition: all 0.3s ease;
}
.partner-item:hover { filter: grayscale(0%); opacity: 1; }
.partner-item img { max-height: 60px; max-width: 100%; object-fit: contain; }

/* ---------- Popup Banner (NEW) ---------- */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(4, 20, 16, 0.75); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-banner {
  background: var(--white); border-radius: var(--radius); max-width: 460px; width: 100%;
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
  transform: scale(0.9); transition: var(--transition);
}
.popup-overlay.active .popup-banner { transform: scale(1); }
.popup-banner img { width: 100%; max-height: 220px; object-fit: cover; }
.popup-body { padding: 26px; text-align: center; }
.popup-body h3 { color: var(--deep); font-size: 1.4rem; margin-bottom: 10px; }
.popup-body p { color: var(--deep-2); line-height: 1.6; margin-bottom: 20px; }
.popup-close {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; z-index: 2; transition: var(--transition);
}
.popup-close:hover { background: var(--gold); color: var(--deep); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px;
  background-color: #25D366; color: var(--white); border-radius: 50%;
  text-align: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37,211,102,0.5);
  z-index: 900; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; text-decoration: none;
}
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.7); }

/* ---------- Footer ---------- */
.footer { background-color: var(--deep); color: var(--light-gray); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--emerald), var(--gold), var(--ocean)); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo img { height: 40px; margin-right: 10px; }
.footer-logo span { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.footer-about { color: var(--light-gray); line-height: 1.7; margin-bottom: 25px; opacity: 0.9; }
.footer-social { display: flex; gap: 15px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  background-color: rgba(255,255,255,0.1); border-radius: 50%; color: var(--white); transition: var(--transition);
}
.footer-social a:hover { background-color: var(--gold); color: var(--deep); transform: translateY(-3px); }
.footer-title { color: var(--white); font-size: 1.25rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--gold); border-radius: 3px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--light-gray); text-decoration: none; transition: var(--transition); display: inline-block; opacity: 0.9; }
.footer-links a:hover { color: var(--gold); transform: translateX(5px); }
.footer-contact p { margin-bottom: 15px; display: flex; align-items: flex-start; line-height: 1.6; }
.footer-contact i { margin-right: 10px; color: var(--gold); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-copyright { color: var(--light-gray); font-size: 0.9rem; opacity: 0.8; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--light-gray); text-decoration: none; font-size: 0.9rem; opacity: 0.8; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Contact page specifics ---------- */
.contact-header {
  height: 50vh; min-height: 400px;
  background: linear-gradient(rgba(7,59,76,0.82), rgba(7,59,76,0.82)) center/cover;
  position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
}
.contact-content { padding: 80px 0; background-color: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.contact-info-panel, .contact-form-panel { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.contact-info-panel h3, .contact-form-panel h3 { color: var(--deep); margin-bottom: 25px; font-size: 1.5rem; position: relative; padding-bottom: 10px; }
.contact-info-panel h3::after, .contact-form-panel h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 3px; background: var(--emerald); }
.contact-item { margin-bottom: 20px; display: flex; align-items: flex-start; }
.contact-item i { color: var(--emerald-dark); font-size: 1.2rem; margin-right: 15px; margin-top: 3px; }
.contact-item h4 { color: var(--deep); margin-bottom: 5px; }
.contact-item p { color: var(--deep-2); line-height: 1.5; font-size: 0.95rem; }

/* ---------- Utility ---------- */
.skeleton { background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 200% 100%; animation: skeleton-loading 1.4s infinite; border-radius: 8px; }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.lazy-fade { opacity: 0; transition: opacity 0.5s ease; }
.lazy-fade.loaded { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content h1 { font-size: 2.6rem; }
  .destinations-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .logo img { height: 32px; }
  .logo-text { font-size: 1.2rem; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content p { font-size: 1rem; }
  .container, .about-container, .footer-container { padding: 0 20px; }
  .about-section, .services-section, .destinations-section, .customers-section, .testimonials-section,
  .branches-section, .offers-section, .enquiry-section, .mission-section, .team-section, .why-choose-section,
  .partners-section { padding: 60px 0; }
  .about-container { flex-direction: column; padding: 0 20px; }
  .section-title { font-size: 2rem; }
  .stats-container { flex-direction: column; align-items: center; }
  .stat-item { width: 100%; }
  .circle-1, .circle-2, .circle-3, .circle-4 { display: none; }
  .destination-card { height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .mission-grid, .team-grid, .features-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 30px; right: 20px; font-size: 25px; }
  .service-tabs { flex-wrap: wrap; }
  .tab-btn { flex: 1 0 50%; padding: 12px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .tab-btn { flex: 1 0 100%; }
  .ticket-field { flex: 1 0 100%; }
  .footer-columns { grid-template-columns: 1fr; }
}