/* =====================================================
   WONDERS OF ASIA - Premium Luxury Travel Agency CSS
   Brand Colors: #003E7E, #0B5ED7, #D4AF37, #F8F5EE
   Fonts: Playfair Display + Inter
   ===================================================== */

:root {
  --primary: #003E7E;
  --secondary: #0B5ED7;
  --gold: #D4AF37;
  --gold-light: #E8C960;
  --gold-dark: #B8942E;
  --bg: #F8F5EE;
  --white: #FFFFFF;
  --dark: #0a0f1a;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e8e8e8;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.woa-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.woa-navbar.scrolled {
  background: rgba(0, 62, 126, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.woa-navbar .navbar-brand img {
  height: 50px;
  transition: var(--transition);
}
.woa-navbar.scrolled .navbar-brand img { height: 40px; }
.woa-nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}
.woa-nav-link:hover,
.woa-nav-link.active {
  color: var(--gold) !important;
}
.woa-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.woa-nav-link:hover::after,
.woa-nav-link.active::after {
  left: 16px; right: 16px;
}
.navbar .dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  margin-top: 8px;
  border-top: 3px solid var(--gold);
}
.navbar .dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition-fast);
}
.navbar .dropdown-item:hover {
  background: var(--bg);
  color: var(--gold);
  padding-left: 20px;
}
.btn-book-now {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,175,55,0.4);
  color: var(--white) !important;
}
.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.5);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 62, 126, 0.85) 0%,
    rgba(11, 94, 215, 0.6) 50%,
    rgba(0, 62, 126, 0.75) 100%
  );
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  line-height: 1.15;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Glassmorphism Booking Form */
.booking-form-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 35px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.booking-form-glass .form-control,
.booking-form-glass .form-select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14px;
}
.booking-form-glass .form-control::placeholder { color: rgba(255,255,255,0.6); }
.booking-form-glass .form-control:focus,
.booking-form-glass .form-select:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  color: var(--white);
}
.booking-form-glass .form-select option { color: var(--text); background: var(--white); }
.booking-form-glass label {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.btn-hero-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
.btn-hero-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
  color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator i { color: var(--gold); font-size: 24px; opacity: 0.7; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTION STYLES ===== */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}
.section-title.text-white h2 { color: var(--white); }
.section-title.text-white p { color: rgba(255,255,255,0.8); }
.section-title.text-white h2::after { background: var(--gold); }

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('') center/cover;
  opacity: 0.15;
}
.page-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,62,126,0.9), rgba(11,94,215,0.8));
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}
.page-banner-content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-banner-content .breadcrumb {
  justify-content: center;
  margin: 0;
}
.page-banner-content .breadcrumb a { color: var(--gold); }
.page-banner-content .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-banner-content .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1), transparent);
  border-radius: 50%;
}
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 20px;
}
.stat-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.3);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  opacity: 0.85;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.destination-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destination-card:hover img { transform: scale(1.1); }
.destination-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 25px;
  background: linear-gradient(transparent, rgba(0,62,126,0.9));
  color: var(--white);
}
.destination-card-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.destination-card-overlay p {
  opacity: 0.85;
  font-size: 14px;
  margin-bottom: 12px;
}
.destination-card-overlay .btn-explore {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.destination-card-overlay .btn-explore i { transition: var(--transition-fast); }
.destination-card-overlay .btn-explore:hover i { transform: translateX(4px); }
.destination-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* ===== PACKAGE CARDS ===== */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.3);
}
.package-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.package-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-card-image img { transform: scale(1.08); }
.package-card-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.package-card-duration {
  position: absolute;
  bottom: 15px; right: 15px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}
.package-card-body { padding: 25px; }
.package-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.package-card-body h4 a { color: inherit; }
.package-card-body h4 a:hover { color: var(--gold); }
.package-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.package-rating .stars { color: var(--gold); font-size: 14px; }
.package-rating span { font-size: 13px; color: var(--text-muted); }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.package-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
}
.package-price .original-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.package-price .per-person {
  font-size: 13px;
  color: var(--text-muted);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}
.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== RESORT SHOWCASE ===== */
.resort-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  transition: var(--transition);
}
.resort-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.resort-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.resort-card:hover img { transform: scale(1.05); }
.resort-card-body {
  padding: 25px;
  background: rgba(0,62,126,0.9);
  color: var(--white);
}
.resort-card-body h4 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.resort-card-body .location {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.resort-card-body .amenities {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}
.resort-card-body .amenities i {
  font-size: 18px;
  color: var(--gold);
  opacity: 0.8;
}

/* ===== WHY CHOOSE US ===== */
.feature-box {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 90px; height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
  transition: var(--transition);
}
.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1);
}
.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.feature-box p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  border-color: rgba(212,175,55,0.2);
  box-shadow: var(--shadow-gold);
}
.testimonial-quote {
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 20px; right: 30px;
  font-family: serif;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 15px; font-size: 14px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-avatar {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--primary);
}
.testimonial-info span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery-grid {
  columns: 4;
  column-gap: 15px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 15px;
  break-inside: avoid;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,62,126,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  color: var(--gold);
  font-size: 28px;
  transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  border-radius: 50%;
}
.cta-section h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 15px;
}
.cta-section p {
  color: rgba(0,62,126,0.8);
  font-size: 1.1rem;
  max-width: 600px;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: var(--white);
}
.btn-white-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  background: transparent;
}
.btn-white-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-category-badge {
  position: absolute;
  top: 15px; left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}
.blog-card-body { padding: 25px; }
.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-card-meta i { color: var(--gold); margin-right: 4px; }
.blog-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.blog-card-body h4 a { color: inherit; }
.blog-card-body h4 a:hover { color: var(--gold); }
.blog-card-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}
.blog-read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.contact-info-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
}
.contact-info-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}
.contact-info-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* Form Styling */
.woa-form .form-control,
.woa-form .form-select {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition-fast);
  background: var(--white);
}
.woa-form .form-control:focus,
.woa-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.woa-form label {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ===== BOOKING PAGE ===== */
.booking-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  border: 2px solid var(--border);
}
.booking-sidebar h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}

/* ===== ABOUT PAGE ===== */
.about-image-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image-block img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.value-card {
  text-align: center;
  padding: 35px 25px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border-top: 3px solid transparent;
}
.value-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-5px);
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.team-card-info { padding: 20px; }
.team-card-info h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.team-card-info span {
  color: var(--gold);
  font-size: 14px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  color: var(--white);
}

/* ===== FOOTER ===== */
.woa-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.woa-footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.woa-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 8px;
  transition: var(--transition-fast);
  font-size: 16px;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 12px;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}
.footer-contact i {
  color: var(--gold);
  width: 20px;
  margin-top: 3px;
}
.footer-newsletter .input-group {
  border-radius: 50px;
  overflow: hidden;
}
.footer-newsletter .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px 0 0 50px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .btn {
  background: var(--gold);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
}
.footer-newsletter .btn:hover { background: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-close:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 28px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold) !important; }
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.bg-gold-gradient { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.text-primary-custom { color: var(--primary); }
.bg-soft-sand { background: var(--bg); }
.luxury-shadow { box-shadow: var(--shadow-lg); }
.gold-border { border: 2px solid var(--gold); }
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 15px auto;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .gallery-grid { columns: 3; }
}
@media (max-width: 991px) {
  .gallery-grid { columns: 2; }
  .booking-form-glass { padding: 25px 20px; }
  .page-banner { height: 280px; }
  .section-padding { padding: 70px 0; }
}
@media (max-width: 767px) {
  .gallery-grid { columns: 2; }
  .destination-card { height: 300px; }
  .stat-number { font-size: 2.2rem; }
  .page-banner { height: 250px; }
  .section-padding { padding: 50px 0; }
  .section-title { margin-bottom: 40px; }
  .booking-form-glass { padding: 20px 15px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
  .back-to-top { right: 80px; bottom: 20px; width: 40px; height: 40px; }
}
@media (max-width: 575px) {
  .gallery-grid { columns: 1; }
  .hero-content h1 { font-size: 2rem; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 8px 18px; font-size: 13px; }
}

/* Print styles */
@media print {
  .woa-navbar, .whatsapp-float, .back-to-top, .preloader { display: none !important; }
  .hero-section { height: auto; min-height: 0; padding: 40px 0; }
}
