/* 
  LV Holidays - Modern Light Luxury Design System 
  Targeted at Sri Lankan Outbound Travelers
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Bright Professional & Unique Luxury */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-teal-light: #f0f9ff;
  --bg-gold-light: #fffbe8;

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;

  --primary-navy: #0a2540;
  --primary-teal: #0284c7;
  --primary-teal-hover: #0369a1;
  --accent-emerald: #0d9488;
  --accent-gold: #d97706;
  --accent-gold-hover: #b45309;
  --accent-amber: #f59e0b;

  --border-light: #e2e8f0;
  --border-focus: #38bdf8;
  --border-gold: #fef3c7;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(2, 132, 199, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(2, 132, 199, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
  --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Glass Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: var(--transition-smooth);
}

.top-bar {
  background: linear-gradient(90deg, var(--primary-navy) 0%, #1e3a8a 100%);
  color: var(--text-white);
  font-size: 0.85rem;
  padding: 0.4rem 0;
  font-weight: 500;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.5rem;
}

.top-bar-badge {
  background: rgba(245, 158, 11, 0.25);
  color: #fef08a;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-teal);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-teal);
  border-radius: var(--radius-full);
}

/* Countries Dropdown Button */
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-teal-light);
  color: var(--primary-teal);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(2, 132, 199, 0.2);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.dropdown-trigger:hover {
  background: var(--primary-teal);
  color: var(--text-white);
  border-color: var(--primary-teal);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1100;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-teal-light);
  color: var(--primary-teal);
  transform: translateX(4px);
}

.dropdown-item-flag {
  font-size: 1.25rem;
  margin-right: 0.6rem;
}

.dropdown-item-pkg-count {
  font-size: 0.75rem;
  background: var(--bg-subtle);
  color: var(--text-light);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Header WhatsApp Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Hero Section - Bright Luxury */
/* Ambient Background Animations */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(2, 132, 199, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(217, 119, 6, 0.04) 0%, transparent 40%);
  animation: ambient-body-fade 12s ease-in-out infinite alternate;
}

@keyframes ambient-body-fade {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #fef3c7 100%);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape-circle-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.32) 0%, rgba(255,255,255,0) 70%);
  animation: float-orb-1 12s ease-in-out infinite alternate;
}

.shape-circle-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28) 0%, rgba(255,255,255,0) 70%);
  animation: float-orb-2 15s ease-in-out infinite alternate;
}

.shape-circle-3 {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.22) 0%, rgba(255,255,255,0) 70%);
  animation: float-orb-3 10s ease-in-out infinite alternate;
}

/* Floating Travel Particles */
.floating-particle {
  position: absolute;
  pointer-events: none;
  font-size: 1.6rem;
  opacity: 0.75;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.p-1 { top: 12%; left: 6%; animation: float-particle 7s ease-in-out infinite alternate; }
.p-2 { top: 72%; left: 44%; animation: float-particle 9s ease-in-out 1s infinite alternate; }
.p-3 { top: 22%; right: 46%; animation: float-particle 8s ease-in-out 2s infinite alternate; }
.p-4 { top: 82%; left: 8%; animation: float-particle 10s ease-in-out 0.5s infinite alternate; }

@keyframes float-particle {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(15deg); }
  100% { transform: translateY(18px) rotate(-10deg); }
}

@keyframes float-orb-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 40px) scale(1.1); }
  100% { transform: translate(30px, -30px) scale(0.92); }
}

@keyframes float-orb-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.12); }
  100% { transform: translate(-40px, 50px) scale(0.9); }
}

@keyframes float-orb-3 {
  0% { transform: translate(0, 0) scale(0.9); opacity: 0.6; }
  50% { transform: translate(-40px, -50px) scale(1.2); opacity: 0.95; }
  100% { transform: translate(50px, 30px) scale(0.9); opacity: 0.6; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  color: var(--accent-gold);
  border: 1px solid var(--accent-amber);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--primary-teal);
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Quick Search Box */
.hero-search-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 1.5rem;
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-main);
  color: var(--text-main);
  font-weight: 600;
  outline: none;
  transition: var(--transition-fast);
}

.form-select:focus, .form-input:focus {
  border-color: var(--primary-teal);
  background: var(--bg-surface);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-teal) 0%, #0369a1 100%);
  color: var(--text-white);
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Visual Video & Motion Showcase */
.hero-visual {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-surface);
  height: 440px;
  background: var(--primary-navy);
}

.motion-slide-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.motion-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 10s ease, opacity 0.6s ease;
  transform: scale(1.05);
}

.motion-slide.zooming {
  transform: scale(1.18);
}

.motion-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.5) 0%, transparent 40%, rgba(10, 37, 64, 0.8) 100%);
}

.video-overlay-controls {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 10;
}

.video-dest-selector {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.video-dest-selector::-webkit-scrollbar {
  display: none;
}

.v-dest-btn {
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.v-dest-btn:hover, .v-dest-btn.active {
  background: var(--primary-teal);
  border-color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.4);
}

.video-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-video-flyer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--primary-navy);
  border: 1px solid var(--accent-gold);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.btn-video-flyer:hover {
  background: var(--accent-gold);
  color: white;
}

.btn-sound-toggle {
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
}

.hero-badge-floating {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--border-gold);
}

.hero-badge-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-gold-light);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Countries Bar Section */
.countries-bar-section {
  padding: 2.5rem 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.section-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-teal);
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.country-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-main);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.country-pill:hover, .country-pill.active {
  background: var(--bg-teal-light);
  border-color: var(--primary-teal);
  color: var(--primary-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.country-pill-flag {
  font-size: 1.2rem;
}

/* Section Header styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.section-title span {
  color: var(--primary-teal);
}

/* Package Gallery Grid */
.packages-section {
  padding: 5rem 0;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--primary-navy);
  color: var(--text-white);
  border-color: var(--primary-navy);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

/* Tour Card Styling - High Luxury Light */
.tour-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .card-image-wrap img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-flag-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-surface);
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--primary-teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.card-highlights {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-price-box {
  background: var(--bg-teal-light);
  border: 1px dashed rgba(2, 132, 199, 0.3);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.price-pp {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: transparent;
  border: 1.5px solid var(--primary-teal);
  color: var(--primary-teal);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: var(--primary-teal);
  color: var(--text-white);
}

/* Country Page Container */
.country-page-wrapper {
  display: none;
  padding: 2rem 0 5rem;
}

.country-page-wrapper.active {
  display: block;
}

.country-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.country-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.2) 0%, rgba(10, 37, 64, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--text-white);
}

.country-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.country-flag-lg {
  font-size: 2.5rem;
}

.country-hero h1 {
  color: var(--text-white);
  font-size: 2.5rem;
}

.country-quick-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

/* Country Page Layout (2 Columns) */
.country-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.visa-guide-box {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
}

.visa-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--bg-teal-light);
  padding-bottom: 1rem;
}

.visa-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.visa-checklist {
  list-style: none;
  margin-top: 1rem;
}

.visa-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
}

.visa-checklist li::before {
  content: '✓';
  color: var(--accent-emerald);
  font-weight: 800;
}

/* Country Inquiry Form Box */
.inquiry-form-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 2px solid var(--primary-teal);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.inquiry-form-title {
  font-size: 1.4rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.inquiry-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.pax-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-main);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.pax-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-teal);
  background: var(--bg-surface);
  color: var(--primary-teal);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pax-count {
  font-weight: 800;
  font-size: 1.1rem;
  width: 30px;
  text-align: center;
}

.estimate-summary {
  background: var(--bg-gold-light);
  border: 1px solid var(--accent-gold);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.estimate-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent-gold);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.92);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-subtle);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  z-index: 10;
}

.modal-header-banner {
  height: 220px;
  position: relative;
}

.modal-header-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-text {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.9) 100%);
  color: var(--text-white);
}

.modal-body {
  padding: 2rem;
}

.itinerary-day {
  background: var(--bg-main);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-teal);
}

.itinerary-day-num {
  font-weight: 800;
  color: var(--primary-teal);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.itinerary-day-title {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.inc-box {
  background: var(--bg-teal-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.inc-box h4 {
  font-size: 0.95rem;
  color: var(--primary-teal);
  margin-bottom: 0.5rem;
}

/* Footer Styling */
.site-footer {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.92rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  opacity: 0.85;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #10b981;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  animation: pulse-glow 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.05);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mobile Responsiveness & Perfect Alignment */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .country-layout {
    grid-template-columns: 1fr;
  }
  .inquiry-form-card {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide background animations on mobile view */
  .hero-bg-shapes {
    display: none !important;
  }

  .floating-particle {
    display: none !important;
  }

  body::before {
    animation: none !important;
  }

  .top-bar {
    padding: 0.4rem 0;
  }
  
  .top-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    text-align: center;
    width: 100%;
  }

  .top-bar-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    width: 100%;
  }

  .top-bar-info span {
    margin-right: 0;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .top-bar-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    white-space: nowrap;
    display: inline-block;
  }

  .nav-container {
    height: 64px;
    padding: 0 0.85rem;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .brand-logo img {
    height: 38px;
    width: 38px;
  }

  .brand-name {
    font-size: 1.1rem;
    line-height: 1;
  }

  .brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  /* Hide header WhatsApp button on small mobile screens to give full room to logo & menu button */
  .nav-actions .btn-whatsapp {
    display: none;
  }

  .nav-wrapper {
    position: static;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 1.25rem 1rem;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.15);
    border-bottom: 3px solid var(--primary-teal);
    z-index: 1200;
    box-sizing: border-box;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    color: var(--primary-navy);
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border-light);
    background: var(--bg-teal-light);
    margin-top: 0.5rem;
    padding: 0.5rem;
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    font-size: 1.75rem;
    color: var(--primary-navy);
  }

  .floating-whatsapp {
    bottom: 1rem;
    right: 1rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
    z-index: 1500;
  }

  .hero-main-card {
    height: 300px;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .search-fields {
    grid-template-columns: 1fr;
  }

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