/*
Theme Name: Rasafi Travels
Theme URI: https://rasafitravels.com
Author: Rasafi Travels
Description: Premium Dubai travel website theme — fully Elementor compatible. One-page luxury travel site for Rasafi Travels.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rasafi-travels
Tags: travel, luxury, elementor, one-page, full-width, dark
*/

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6B8;
  --sand: #F0DEB4;
  --sand-dark: #C8A96E;
  --deep-blue: #0A1628;
  --navy: #0F2245;
  --white: #FDFAF5;
  --off-white: #F8F3E8;
  --text-dark: #1A1208;
  --text-mid: #5C4A2A;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(201,168,76,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep-blue);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
}
nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 5%;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--white); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--deep-blue) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
}
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--deep-blue);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-family: 'Playfair Display', serif; font-size: 2rem;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; min-width: 100vw;
  height: 100vh; min-height: 56.25vw;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.4) 0%,
    rgba(10,22,40,0.6) 50%,
    rgba(10,22,40,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 5%;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  animation: fadeUp 1s 0.4s ease both;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeUp 1s 0.6s ease both;
}
.hero-btns {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.8s ease both;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep-blue);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center; animation: bounce 2s infinite;
}
.hero-scroll span { display: block; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.5rem; }
.hero-scroll i { color: var(--gold); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ===== SECTION STYLES ===== */
section { padding: 6rem 5%; }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  font-weight: 300;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}
.divider.center { margin: 1.5rem auto; background: linear-gradient(to right, transparent, var(--gold), transparent); }

/* ===== PACKAGES ===== */
#packages { background: linear-gradient(180deg, var(--deep-blue) 0%, var(--navy) 100%); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.package-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: var(--gold); }
.package-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.package-card:hover .package-img img { transform: scale(1.08); }
.package-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--deep-blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}
.package-body { padding: 1.8rem; }
.package-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.package-meta {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.package-meta i { color: var(--gold); margin-right: 4px; }
.package-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.package-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--glass-border);
}
.package-price .from { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.package-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.package-price .per { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.btn-small {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-small:hover { background: var(--gold); color: var(--deep-blue); }
.btn-small-gold {
  background: var(--gold) !important;
  color: var(--deep-blue) !important;
}
.btn-small-gold:hover { background: var(--gold-light) !important; }

/* ===== PACKAGE DETAIL MODAL ===== */
.pkg-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.pkg-modal-overlay.open { display: flex; }

.pkg-modal {
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  width: 100%; max-width: 860px;
  position: relative;
  animation: slideIn 0.35s ease;
  margin: auto;
  overflow: hidden;
}

/* Banner image */
.pkg-modal-banner {
  width: 100%; height: 280px; position: relative; overflow: hidden;
}
.pkg-modal-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.pkg-modal-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.75) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem 2rem;
}
.pkg-modal-banner-overlay h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.4rem;
}
.pkg-modal-meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.pkg-modal-meta span {
  font-size: 0.82rem; color: rgba(255,255,255,0.8);
}
.pkg-modal-meta i { color: var(--gold); margin-right: 5px; }
.pkg-modal-badge-banner {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold); color: var(--deep-blue);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 0.3rem 0.9rem; text-transform: uppercase;
  border-radius: 2px;
}

.pkg-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pkg-modal-close:hover { background: rgba(201,168,76,0.8); }

/* Body layout: left content + right form */
.pkg-modal-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
}

/* Left: details */
.pkg-modal-details {
  padding: 2rem;
  border-right: 1px solid var(--glass-border);
  overflow-y: auto; max-height: 520px;
}
.pkg-modal-details::-webkit-scrollbar { width: 4px; }
.pkg-modal-details::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 2px; }

.pkg-section-label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem; font-weight: 600;
}
.pkg-long-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.pkg-price-row {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin-bottom: 1.8rem;
  padding: 1rem 1.2rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}
.pkg-price-row .from { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.pkg-price-row .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold); font-weight: 900; line-height: 1;
}
.pkg-price-row .per { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.inc-exc-box h4 {
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 0.8rem; font-weight: 600;
}
.inc-exc-box.inc h4 { color: #4CAF50; }
.inc-exc-box.exc h4 { color: #EF5350; }
.inc-exc-box ul { list-style: none; }
.inc-exc-box ul li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  padding: 0.35rem 0;
  display: flex; align-items: flex-start; gap: 0.5rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.inc-exc-box ul li:last-child { border-bottom: none; }
.inc-exc-box.inc ul li i { color: #4CAF50; font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.inc-exc-box.exc ul li i { color: #EF5350; font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }

/* Right: booking form */
.pkg-modal-form {
  padding: 2rem;
  overflow-y: auto; max-height: 520px;
  background: rgba(0,0,0,0.15);
}
.pkg-modal-form::-webkit-scrollbar { width: 4px; }
.pkg-modal-form::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 2px; }

.pkg-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.pkg-form-title em { font-style: italic; color: var(--gold); }
.pkg-form-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.4rem; line-height: 1.5;
}
.pf-group { margin-bottom: 1rem; }
.pf-group label {
  display: block; font-size: 0.7rem; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}
.pf-group input,
.pf-group select,
.pf-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 0.75rem 0.9rem;
  font-size: 0.87rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.pf-group input:focus,
.pf-group select:focus,
.pf-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.pf-group textarea { resize: vertical; min-height: 80px; }
.pf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23C9A84C' d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.pf-group select option { background: var(--navy); }
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.pf-error { display: none; font-size: 0.72rem; color: #EF5350; margin-top: 0.3rem; }
.pf-error.show { display: block; }
.pf-group.error input,
.pf-group.error select,
.pf-group.error textarea { border-color: #EF5350; }

.btn-pkg-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--sand-dark));
  color: var(--deep-blue);
  border: none;
  padding: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 0.5rem;
  transition: opacity 0.3s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.btn-pkg-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-pkg-submit.loading { opacity: 0.65; pointer-events: none; }

/* Success state inside form */
.pkg-form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.pkg-form-success.show { display: block; }
.pkg-form-success .tick {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sand-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--deep-blue);
  margin: 0 auto 1rem;
  animation: popIn 0.4s ease;
}
.pkg-form-success h4 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--white); margin-bottom: 0.5rem;
}
.pkg-form-success p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Tabs inside detail modal */
.pkg-detail-tabs {
  display: flex; gap: 0; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.pkg-dtab {
  background: none; border: none; color: rgba(255,255,255,0.45);
  padding: 0.6rem 1.2rem; font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  border-bottom: 2px solid transparent;
  transition: all 0.2s; margin-bottom: -1px;
}
.pkg-dtab:hover { color: rgba(255,255,255,0.8); }
.pkg-dtab.active { color: var(--gold); border-bottom-color: var(--gold); }
.pkg-tab-panel { display: none; }
.pkg-tab-panel.active { display: block; }

@media (max-width: 768px) {
  .pkg-modal-body { grid-template-columns: 1fr; }
  .pkg-modal-details { border-right: none; border-bottom: 1px solid var(--glass-border); max-height: none; }
  .pkg-modal-form { max-height: none; }
  .pkg-modal-banner { height: 200px; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .pf-row { grid-template-columns: 1fr; }
}

/* ===== FLIGHTS ===== */
#tickets { background: var(--deep-blue); color: var(--white); }
#tickets .section-tag { color: var(--gold); }
#tickets .section-title { color: var(--white); }
#tickets .section-sub { color: rgba(255,255,255,0.6); }
#tickets .divider { background: linear-gradient(to right, var(--gold), transparent); }

.flight-promo-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  border-radius: 50px;
}

/* Origin filter tabs */
.flight-origin-tabs {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.origin-tab {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.6);
  padding: 0.45rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  border-radius: 50px;
}
.origin-tab:hover, .origin-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-blue);
  font-weight: 600;
}

/* Flight cards grid */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Boarding-pass style card */
.flight-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.flight-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Destination image strip */
.flight-card-img {
  height: 150px; overflow: hidden; position: relative;
}
.flight-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.flight-card:hover .flight-card-img img { transform: scale(1.07); }
.flight-dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.6) 100%);
  display: flex; align-items: flex-end; padding: 0.9rem 1rem;
}
.flight-dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.flight-dest-country {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
}
.flight-iata {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--gold);
  color: var(--deep-blue);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Ticket body */
.flight-card-body {
  padding: 1.2rem 1.4rem 0;
  flex: 1;
}

/* Route row */
.flight-route {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.flight-city {
  text-align: center;
}
.flight-city .code {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.flight-city .name {
  font-size: 0.7rem;
  color: var(--text-mid);
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.flight-arrow {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 0 0.8rem;
}
.flight-arrow-line {
  display: flex; align-items: center; width: 100%; gap: 4px;
}
.flight-arrow-line::before,
.flight-arrow-line::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--sand-dark), var(--gold));
}
.flight-arrow-line i { color: var(--gold); font-size: 1rem; }
.flight-arrow-label {
  font-size: 0.65rem; color: #aaa; letter-spacing: 1px; text-transform: uppercase;
}

/* Divider perforation */
.flight-perforation {
  display: flex; align-items: center; margin: 1rem -1.4rem;
  position: relative;
}
.flight-perforation::before {
  content: ''; flex: 1; height: 1px;
  border-top: 1.5px dashed rgba(201,168,76,0.3);
  margin: 0 12px 0 28px;
}
.flight-perforation::after {
  content: ''; flex: 1; height: 1px;
  border-top: 1.5px dashed rgba(201,168,76,0.3);
  margin: 0 28px 0 12px;
}
.flight-circle-l, .flight-circle-r {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--deep-blue);
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}

/* Flight meta info */
.flight-meta {
  display: flex; justify-content: space-between;
  padding: 0 0 1rem;
  font-size: 0.78rem;
}
.flight-meta-item { text-align: center; }
.flight-meta-item .label { color: #bbb; margin-bottom: 2px; font-size: 0.68rem; letter-spacing: 0.5px; text-transform: uppercase; }
.flight-meta-item .value { color: var(--text-dark); font-weight: 600; font-size: 0.82rem; }

/* Feature badges */
.flight-badges {
  display: flex; gap: 0.4rem; flex-wrap: wrap; padding-bottom: 1.2rem;
}
.flight-badge {
  font-size: 0.65rem; padding: 0.2rem 0.6rem;
  border-radius: 50px; letter-spacing: 0.3px; font-weight: 500;
}
.fb-direct  { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.fb-baggage { background: #FFF3E0; color: #E65100; border: 1px solid #FFCC80; }
.fb-refund  { background: #EDE7F6; color: #4527A0; border: 1px solid #B39DDB; }
.fb-meal    { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }

/* Book button */
.btn-flight {
  width: calc(100% + 2.8rem);
  margin: 0 -1.4rem -0px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--sand-dark) 100%);
  color: var(--deep-blue);
  border: none;
  padding: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0 0 12px 12px;
}
.btn-flight:hover { opacity: 0.88; }

@media (max-width: 600px) {
  .flights-grid { grid-template-columns: 1fr; }
}

/* ===== ATTRACTIONS ===== */
#attractions { background: var(--navy); }
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.attraction-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}
.attraction-card:nth-child(1) { grid-column: span 5; }
.attraction-card:nth-child(2) { grid-column: span 7; }
.attraction-card:nth-child(3) { grid-column: span 4; }
.attraction-card:nth-child(4) { grid-column: span 4; }
.attraction-card:nth-child(5) { grid-column: span 4; }
.attraction-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.attraction-card:hover img { transform: scale(1.08); }
.attraction-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.3s;
}
.attraction-card:hover .attraction-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.2) 100%);
}
.attraction-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.attraction-overlay p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  opacity: 0;
}
.attraction-card:hover .attraction-overlay p { max-height: 100px; opacity: 1; }
.attraction-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--deep-blue);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}

/* ===== GALLERY ===== */
#gallery { background: var(--deep-blue); }
.gallery-filters {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin: 2rem 0;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--deep-blue); }
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
  margin-top: 0.5rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0.7);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  gap: 0.5rem;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover i { font-size: 1.5rem; color: var(--gold); }
.gallery-hover span { font-size: 0.8rem; color: var(--white); letter-spacing: 1px; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none; color: var(--white);
  font-size: 2rem; cursor: pointer; opacity: 0.7; transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ===== WHY US ===== */
#why { background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.why-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold);
  margin: 0 auto 1.5rem;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== STATS ===== */
#stats {
  background: linear-gradient(135deg, var(--gold) 0%, var(--sand-dark) 100%);
  padding: 5rem 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

/* ===== STAT CONFIG — Edit these values ===== */
/* Counter data is set in JS below */

.stat-icon {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 0.8rem;
  opacity: 0.7;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--deep-blue);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-suffix { font-size: 0.7em; }
.stat-label { font-size: 0.85rem; color: rgba(10,22,40,0.7); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--navy); overflow: hidden; }
.testimonial-track-wrap { position: relative; overflow: hidden; margin-top: 3rem; }
.testimonial-track {
  display: flex; gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
}
.testimonial-card {
  min-width: 360px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2.5rem;
  flex-shrink: 0;
}
.testi-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testi-photo {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
}
.testi-info span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.testi-quote { font-size: 3rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem; }
.testimonial-controls {
  display: flex; gap: 1rem; justify-content: center; margin-top: 2rem;
}
.testi-btn {
  width: 44px; height: 44px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  border-radius: 2px;
  font-size: 0.9rem;
}
.testi-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--deep-blue); }
.testi-dots { display: flex; gap: 0.5rem; align-items: center; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer; }
.testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
#cta-banner {
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy) 50%, var(--deep-blue) 100%);
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
}
#cta-banner .section-title { font-size: clamp(2rem, 4.5vw, 3.5rem); position: relative; }
#cta-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 1rem auto 2.5rem;
  position: relative;
}
#cta-banner .hero-btns { position: relative; }

/* ===== FOOTER ===== */
footer {
  background: #060E1A;
  padding: 5rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--deep-blue); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.footer-contact i { color: var(--gold); width: 16px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-right: none;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  border-radius: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--gold);
  border: none;
  color: var(--deep-blue);
  padding: 0.75rem 1.2rem;
  cursor: pointer;
  transition: opacity 0.3s;
  font-size: 0.85rem;
}
.newsletter-form button:hover { opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ===== CONTACT SECTION ===== */
#contact {
  background: var(--off-white);
  color: var(--text-dark);
}
#contact .section-tag { color: var(--sand-dark); }
#contact .section-title { color: var(--text-dark); }
#contact .section-sub { color: var(--text-mid); }
#contact .divider { background: linear-gradient(to right, var(--sand-dark), transparent); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.contact-info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--sand-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.contact-info-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}
.contact-info-text a:hover { color: var(--gold); }
.contact-social-row { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.contact-social-link {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.contact-social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.contact-map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  margin-top: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-map-embed iframe { width: 100%; height: 180px; border: none; display: block; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--sand-dark));
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.contact-form-card h3 em { font-style: italic; color: var(--sand-dark); }
.contact-form-card > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.cf-group {
  margin-bottom: 1.3rem;
  position: relative;
}
.cf-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  background: #FAFAFA;
  border: 1.5px solid #E8DDD0;
  color: var(--text-dark);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 6px;
  appearance: none;
}
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: #fff;
}
.cf-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A96E' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-checkbox-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.cf-checkbox-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gold);
}
.cf-checkbox-row label {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.cf-checkbox-row label a { color: var(--sand-dark); text-decoration: underline; }
.btn-cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--sand-dark) 100%);
  color: var(--deep-blue);
  border: none;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
}
.btn-cf-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.btn-cf-submit.loading { opacity: 0.7; pointer-events: none; }
.cf-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.cf-success.show { display: block; }
.cf-success-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--sand-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white;
  margin: 0 auto 1.2rem;
  animation: popIn 0.4s ease;
}
@keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }
.cf-success h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.cf-success p { font-size: 0.9rem; color: var(--text-mid); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 2rem 1.5rem; }
}

/* ===== FLOATING BUTTONS ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 888;
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--deep-blue);
  border: none; cursor: pointer;
  border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

.whatsapp-widget {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 888;
}
.wa-main-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  border: none;
  color: white;
  font-size: 1.5rem;
}
.wa-main-btn:hover { transform: scale(1.1); }
.wa-panel {
  position: absolute; bottom: 70px; left: 0;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  min-width: 240px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  opacity: 0; transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s;
  transform-origin: bottom left;
}
.wa-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.wa-panel-header {
  background: #075E54;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}
.wa-panel-header p:first-child { font-weight: 600; font-size: 0.9rem; }
.wa-panel-header p:last-child { font-size: 0.75rem; opacity: 0.8; margin-top: 2px; }
.wa-contact {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.7rem 0.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
  cursor: pointer;
}
.wa-contact:hover { background: #f0f0f0; }
.wa-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sand-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem; font-weight: 600;
  flex-shrink: 0;
}
.wa-info .name { font-size: 0.88rem; font-weight: 600; color: #111; }
.wa-info .role { font-size: 0.75rem; color: #666; }
.wa-info .status { font-size: 0.7rem; color: #25D366; }

/* ===== BOOKING MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--navy);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 3rem;
  max-width: 520px; width: 100%;
  position: relative;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.2rem; cursor: pointer; transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }
.modal h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 0.5rem; }
.modal p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.form-group input, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 2px;
  appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--deep-blue);
  border: none;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.3s;
}
.btn-submit:hover { opacity: 0.9; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .attraction-card:nth-child(n) { grid-column: span 1; }
  .gallery-grid { columns: 3; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 5%; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card { min-width: 290px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .attractions-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}