/* ==========================================================================
   Travel Experiences - Luxury Tour & Travel Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --color-navy-deep: #071321;
  --color-navy-dark: #0b1c2d;
  --color-navy-medium: #14293e;
  --color-navy-card: #112235;
  --color-gold-primary: #c59b4e;
  --color-gold-hover: #b3883b;
  --color-gold-light: #e4be74;
  --color-gold-dark: #9e7630;
  --color-gold-gradient: linear-gradient(135deg, #c59b4e 0%, #9e7630 100%);
  --color-gold-accent: #d4af37;

  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-offwhite: #f8fafc;
  --color-text-main: #1d2939;
  --color-text-body: #475569;
  --color-text-muted: #667085;
  --color-text-light: #98a2b3;
  --color-border: #eaecf0;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;

  /* Layout & Shadows */
  --container-max: 1720px;
  --container-pad: clamp(18px, 3.5vw, 60px);
  --section-pad: clamp(56px, 6.5vw, 100px);
  --logo-h: clamp(74px, 7vw, 130px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 10px 25px rgba(197, 155, 78, 0.3);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.section-title {
  font-size: clamp(1.75rem, 1.15rem + 1.6vw, 3rem);
  color: var(--color-navy-dark);
  line-height: 1.2;
}

.section-title.light {
  color: #ffffff;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.view-all-link:hover {
  color: var(--color-gold-primary);
}

.arrow-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.view-all-link:hover .arrow-icon-circle {
  background: var(--color-gold-primary);
  color: white;
  border-color: var(--color-gold-primary);
}

/* Header & Navigation */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .nav-link {
  color: var(--color-navy-dark);
  text-shadow: none;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--color-gold-dark);
}

.site-header.scrolled .menu-toggle span {
  background-color: var(--color-navy-dark);
}

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

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

.logo-brand img {
  height: var(--logo-h);
  width: auto;
  object-fit: contain;
  margin: calc(var(--logo-h) * -0.31) 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 34px);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 6px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

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

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

.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  background-color: var(--color-navy-dark);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-navy-medium);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4af37 0%, #b58d4c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 155, 78, 0.45);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background-color: var(--color-navy-dark);
  transition: var(--transition);
}

.menu-toggle:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 92vh;
  padding-top: clamp(120px, 14vh, 165px);
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.25) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(100%, clamp(560px, 48vw, 860px));
  text-align: left;
  margin-left: 0;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c59b4e;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.hero-title {
  font-size: clamp(2.1rem, 1.1rem + 3.9vw, 5.4rem);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;

  /* Shine Effect styling */
  background: linear-gradient(120deg, #0b1c2d 40%, #c59b4e 50%, #0b1c2d 60%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  /* Animations */
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, shineEffect 5s linear infinite;
  animation-delay: 0.3s;
}

.hero-description {
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.2rem);
  color: #344054;
  margin-bottom: clamp(24px, 2.5vw, 40px);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.7s;
}

.btn-watch-story {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1c2d;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 8px 12px 8px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.btn-watch-story:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.play-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #c59b4e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c59b4e;
  font-size: 0.7rem;
  transition: var(--transition);
}

.play-icon-circle i {
  margin-left: 2px;
}

.btn-watch-story:hover .play-icon-circle {
  background: #c59b4e;
  color: #ffffff;
}

/* Floating Search Bar */
.search-card-wrapper {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.9s;
}

.search-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  padding: 18px clamp(16px, 1.6vw, 28px);
  box-shadow: 0 16px 45px rgba(11, 28, 45, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 12px clamp(10px, 1.2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid var(--color-border);
  position: relative;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field-icon {
  font-size: 1.25rem;
  color: #c59b4e;
  display: flex;
  align-items: center;
}

.search-field-content {
  display: flex;
  flex-direction: column;
}

.search-field-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.search-field-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}

.search-field-value select,
.search-field-value input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 16px;
}

.btn-search {
  background: var(--color-gold-gradient);
  color: white;
  padding: 16px clamp(22px, 2.2vw, 36px);
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 155, 78, 0.45);
}

/* Explore Destinations Section */
.destinations-section {
  padding: var(--section-pad) 0 calc(var(--section-pad) * 0.8);
  background-color: var(--color-bg-light);
}

.destinations-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-primary) transparent;
}

.destinations-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.destinations-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-gold-primary);
  border-radius: 10px;
}

.destination-card {
  flex: 1 0 200px;
  min-width: 200px;
  height: clamp(280px, 21vw, 360px);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-8px);
  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.08);
}

.destination-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(7, 19, 33, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}

.destination-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.destination-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destination-card-meta {
  font-size: 0.8rem;
  opacity: 0.9;
}

.destination-card-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.destination-card:hover .destination-card-arrow {
  background: var(--color-gold-primary);
  color: white;
}

/* Why Travel With Us Section */
.why-us-section {
  padding: clamp(30px, 3.5vw, 60px) 0;
  background-color: var(--color-navy-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.why-us-header {
  text-align: center;
  margin-bottom: clamp(24px, 2.5vw, 40px);
}

.why-us-header h2 {
  font-size: clamp(1.8rem, 1.2rem + 1.8vw, 3.2rem);
  color: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

.why-us-card {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.why-us-card:last-child {
  border-right: none;
}

.why-us-card:hover {
  transform: translateY(-4px);
}

.why-us-icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 1.8rem;
}

.why-us-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-us-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Featured Tours Section */
.featured-tours-section {
  padding: var(--section-pad) 0;
  background-color: #ffffff;
}

.featured-tours-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-size: 1rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: var(--color-navy-dark);
  color: #ffffff;
  border-color: var(--color-navy-dark);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.tour-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tour-card-image {
  position: relative;
  height: clamp(180px, 15vw, 250px);
  overflow: hidden;
}

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

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

.tour-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 28, 45, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.tour-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 8px;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--color-gold-primary);
  margin-bottom: 16px;
}

.tour-rating-count {
  color: var(--color-text-light);
  font-size: 0.8rem;
  margin-left: 4px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.tour-price-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.tour-price-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy-dark);
}

.btn-explore-tour {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-explore-tour:hover {
  color: var(--color-gold-hover);
  gap: 8px;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-pad) 0;
  background-color: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-card-content {
  padding: 26px 24px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  color: #c59b4e;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(197, 155, 78, 0.35);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.author-location {
  font-size: 0.8rem;
  color: #64748b;
}

.testimonial-stars {
  color: #eab308;
  font-size: 0.75rem;
  margin-top: 3px;
  display: flex;
  gap: 2px;
}

.testimonial-banner-wrapper {
  position: relative;
  width: 100%;
  height: 115px;
  overflow: hidden;
}

.testimonial-banner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-bottom-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Progress dots for the phone swipe carousel — the mobile block turns
   this on, JS fills it and keeps it in sync with the scroll position. */
.testimonials-swipe-hint {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.testimonials-swipe-hint span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.25s ease;
}

.testimonials-swipe-hint span.active {
  width: 20px;
  border-radius: 4px;
  background: var(--color-gold-primary);
}

/* Travel Inspiration / Gallery */
.inspiration-section {
  padding: var(--section-pad) 0;
  background-color: #ffffff;
}

.inspiration-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background-color: var(--color-gold-primary);
  color: #ffffff;
  border-color: var(--color-gold-primary);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1vw, 16px);
}

.inspiration-item {
  position: relative;
  height: clamp(140px, 12vw, 230px);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.inspiration-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.inspiration-item:hover img {
  transform: scale(1.1);
}

.inspiration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 28, 45, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.inspiration-item:hover .inspiration-overlay {
  opacity: 1;
}

/* Call to Action Banner */
.cta-section {
  position: relative;
  padding: calc(var(--section-pad) * 0.85) 0;
  background: url('assets/images_section wise/europe/86f690863123f74a487ce005f058ad3c.jpg') no-repeat center center / cover;
  color: #ffffff;
  overflow: hidden;
}

.cta-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 19, 33, 0.92) 0%, rgba(11, 28, 45, 0.75) 100%);
}

.cta-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 70px);
  align-items: center;
}

.cta-left h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.2vw, 3.6rem);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-left p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(197, 155, 78, 0.4);
  background: rgba(197, 155, 78, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cta-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.cta-feature-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Footer Section */
.site-footer {
  background-color: var(--color-navy-deep);
  color: #ffffff;
  padding-top: calc(var(--section-pad) * 0.85);
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 1.1fr 1.2fr;
  gap: 32px clamp(20px, 2vw, 36px);
  margin-bottom: clamp(36px, 4vw, 60px);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 16px 0 24px;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-column a:hover {
  color: var(--color-gold-light);
}

.newsletter-form {
  margin-top: 16px;
  position: relative;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 4px 4px 4px 18px;
}

.newsletter-input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.85rem;
  width: 100%;
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-newsletter {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* Modals & Popups */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 19, 33, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 90%;
  padding: 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

/* Larger, scrollable modal used by the Book Consultation inquiry popup */
.modal-card-lg {
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-card-lg .modal-title {
  padding-right: 40px;
}

.inquiry-form button[type="submit"][disabled] {
  opacity: 0.65;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.modal-close:hover {
  background: var(--color-navy-dark);
  color: white;
}

.modal-title {
  font-size: 2rem;
  color: var(--color-navy-dark);
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy-dark);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 78, 0.15);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--color-navy-dark);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Video Modal */
.video-modal-card {
  max-width: 800px;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--color-navy-dark);
  color: white;
  z-index: 1001;
  padding: 40px 24px;
  transition: var(--transition);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.mobile-nav-links a:hover {
  color: var(--color-gold-light);
}

/* ==========================================================================
   Custom Search Modals
   ========================================================================== */
.search-field {
  cursor: pointer;
}

.custom-modal {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 100%;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(11, 28, 45, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 50;
  padding: 12px 0;
}

.custom-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-modal.open-up {
  top: auto;
  bottom: calc(100% + 15px);
  transform: translateY(-10px);
}

.custom-modal.open-up.active {
  transform: translateY(0);
}

/* Destination List */
.dest-list li {
  padding: 12px 24px;
  font-size: 0.95rem;
  color: var(--color-navy-dark);
  cursor: pointer;
  transition: var(--transition);
}

.dest-list li:hover,
.dest-list li.active {
  background: rgba(197, 155, 78, 0.1);
  color: var(--color-gold-primary);
  font-weight: 600;
}

/* Custom Calendar Modal */
.custom-calendar-modal {
  padding: 16px;
  width: 320px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-nav-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-navy-dark);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cal-nav-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cal-month-year {
  font-weight: 600;
  color: var(--color-navy-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-navy-dark);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.cal-day:not(.disabled):hover {
  background: rgba(197, 155, 78, 0.1);
  color: var(--color-gold-primary);
}

.cal-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.cal-day.selected {
  background: var(--color-gold-primary);
  color: white;
  font-weight: 600;
}

.cal-day.in-range {
  background: rgba(197, 155, 78, 0.15);
}

.calendar-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.cal-clear-btn {
  background: transparent;
  border: none;
  color: var(--color-gold-primary);
  font-weight: 600;
  cursor: pointer;
}

/* Guest Counter */
.guests-modal {
  padding: 16px 20px;
}

.guest-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.guest-counter:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.guest-info {
  display: flex;
  flex-direction: column;
}

.guest-info strong {
  font-size: 0.95rem;
  color: var(--color-navy-dark);
  font-weight: 600;
}

.guest-info span {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.counter-btn:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
}

.counter-val {
  font-weight: 600;
  color: var(--color-navy-dark);
  min-width: 12px;
  text-align: center;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large laptops */
@media (max-width: 1400px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }

  .why-us-card {
    border-right: none;
  }
}

@media (max-width: 1200px) {
  .nav-link {
    font-size: 0.88rem;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }

  .inspiration-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets — nav switches to drawer */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .search-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .btn-search {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .search-card {
    grid-template-columns: 1fr;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
  }

  .search-field:last-of-type {
    border-bottom: none;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }

  .hero-section {
    padding-top: 80px;
    padding-bottom: 20px;
    min-height: auto;
  }

  .em-hero {
    padding-top: 85px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .destinations-hero,
  .about-hero {
    padding-top: 85px;
  }

  .hero-title br,
  .hero-description br {
    display: none;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .inspiration-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .modal-card {
    padding: 28px 20px;
  }

  .modal-title {
    font-size: 1.6rem;
  }

  .destination-card {
    min-width: 180px;
    flex-basis: 180px;
  }
}

@media (max-width: 480px) {
  .nav-actions .btn-primary {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary {
    justify-content: center;
  }

  .btn-watch-story {
    justify-content: center;
    padding: 8px 12px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-card {
    padding: 20px 12px;
  }

  .testimonial-side-img {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .mobile-nav-drawer {
    width: 100%;
  }

  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* Short laptop screens — keep hero from overflowing the fold */
@media (min-width: 1025px) and (max-height: 760px) {
  .hero-section {
    min-height: 700px;
    padding-top: 120px;
  }
}

/* Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shineEffect {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(100px, 12vh, 140px);
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(7, 19, 33, 0.35) 45%, rgba(7, 19, 33, 0.75) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.about-hero-title {
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

/* Story Section */
.about-story-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-white);
  overflow: hidden;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about-story-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
  /* Keep the frame proportional so tall/portrait source images can't
     stretch the grid row and leave the text column stranded in whitespace. */
  aspect-ratio: 4 / 3;
  max-height: 620px;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values Section */
.about-values-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-light);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--color-gold-primary);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--color-navy-dark);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* Stats Section */
.about-stats-section {
  padding: 80px 0;
  background: var(--color-navy-dark);
  color: white;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Journey Timeline Section */
.about-journey-section {
  padding: var(--section-pad) 0;
  background: #ffffff;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-gold-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--color-gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(197, 155, 78, 0.3);
  z-index: 2;
}

.timeline-item.left .timeline-dot {
  right: -10px;
}

.timeline-item.right .timeline-dot {
  left: -10px;
}

.timeline-content {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--color-gold-primary);
}

.timeline-item.left .timeline-content {
  border-left: none;
  border-right: 4px solid var(--color-gold-primary);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 2rem;
  color: var(--color-gold-primary);
  margin-bottom: 5px;
}

.timeline-content h4 {
  font-size: 1.2rem;
  color: var(--color-navy-dark);
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 10px;
    right: auto;
  }

  .timeline-item.left .timeline-content {
    border-right: none;
    border-left: 4px solid var(--color-gold-primary);
  }
}

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

/* Philosophy & Sustainable Sections */
.about-philosophy-section,
.about-sustainable-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-white);
  overflow: hidden;
}

.about-philosophy-grid,
.about-sustainable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.about-philosophy-text p,
.about-sustainable-text p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-philosophy-image,
.about-sustainable-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  max-height: 620px;
}

.about-philosophy-image img,
.about-sustainable-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partnerships Section */
.about-partnerships-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.partnerships-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 19, 33, 0.85);
  z-index: 1;
}

.partnerships-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.partnerships-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
}

.partnerships-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.badge-item i {
  font-size: 2.5rem;
  color: var(--color-gold-primary);
}

.badge-item span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 991px) {

  .about-philosophy-grid,
  .about-sustainable-grid {
    grid-template-columns: 1fr;
  }

  /* Stack the image above the copy on both sections so the visual
     order stays consistent once the two columns collapse. */
  .about-philosophy-image,
  .about-sustainable-image,
  .about-story-image {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  /* iOS/Safari render fixed backgrounds at the wrong scale. */
  .about-partnerships-section {
    background-attachment: scroll;
  }
}

/* Standard CSS Animations for About Page */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* ==========================================================================
   Destinations Page Styles
   ========================================================================== */

.destinations-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(100px, 12vh, 140px);
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.destinations-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(7, 19, 33, 0.5) 40%, rgba(7, 19, 33, 0.85) 100%);
  z-index: 1;
}

.destinations-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

.destinations-hero-title {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.destinations-hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Region Jump Pills */
.region-jump-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.pill-btn:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Showcase Gallery Section */
.dest-gallery-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg-white);
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 35px 0 45px;
}

.filter-tab {
  padding: 10px 24px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-navy-dark);
  color: #ffffff;
  border-color: var(--color-navy-dark);
  box-shadow: var(--shadow-md);
}

/* Infinite Parallax Gallery Styles */
.infinite-gallery-viewport {
  position: relative;
  width: 100%;
  height: 820px;
  overflow: hidden;
  margin-top: 30px;
  border-radius: var(--radius-xl);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.infinite-gallery-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.parallax-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  will-change: transform;
  height: auto;
}

/* Column count itself is set in JS (1 / 2 / 3 by viewport) so no card ever
   gets hidden on a phone — these only tune the framing. */
@media (max-width: 992px) {
  .infinite-gallery-viewport {
    height: 700px;
  }

  .infinite-gallery-columns,
  .parallax-col {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .infinite-gallery-viewport {
    height: 560px;
  }

  .infinite-gallery-columns,
  .parallax-col {
    gap: 14px;
  }

  .showcase-card {
    height: 380px;
  }

  .showcase-overlay {
    padding: 18px;
  }

  .showcase-overlay h3 {
    font-size: 1.25rem;
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  flex-shrink: 0;
  width: 100%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 19, 33, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #ffffff;
  z-index: 2;
}

.badge-tag {
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--color-gold-primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.showcase-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.showcase-overlay p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.expand-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.showcase-card:hover .expand-icon {
  opacity: 1;
  transform: scale(1);
}

/* Dedicated Region Block */
.region-block {
  padding: var(--section-pad) 0;
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
}

.region-block.alt-bg {
  background: var(--color-bg-light);
}

.region-header {
  margin-bottom: 40px;
}

.region-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.region-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--color-navy-deep);
  margin-bottom: 12px;
}

.region-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 750px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Region Horizontal Infinite Marquee Styles */
.region-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.region-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.region-marquee-card {
  width: 320px;
  height: 440px;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.region-marquee-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.region-marquee-card:hover img {
  transform: scale(1.08);
}

.region-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-md);
}

.region-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.region-img-card:hover img {
  transform: scale(1.06);
}

.region-img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 19, 33, 0.85) 100%);
  color: #ffffff;
}

.region-img-info h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.region-img-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 33, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
  color: var(--color-gold-primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10001;
}

.lightbox-nav:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 15px;
  color: #ffffff;
}

.lightbox-caption h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-gold-primary);
}

.lightbox-caption p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Section Styles */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
  border-top: 1px solid var(--color-border);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--color-navy-deep);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy-dark);
  color: var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-navy-deep);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(7, 19, 33, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-navy-deep);
  margin-bottom: 6px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

  .contact-card {
    padding: 24px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #25D366;
  color: #ffffff;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
  font-size: 2rem;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 0 14px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    justify-content: center;
  }

  .whatsapp-badge {
    display: none;
  }
}

/* ==========================================================================
   Lenis Base CSS
   ========================================================================== */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ==========================================================================
   EUROPAMUNDO MODERN CIRCUIT CARDS DESIGN SYSTEM
   ========================================================================== */
.em-hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 120px 20px 80px;
}

.em-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 58, 0.7) 0%, rgba(11, 29, 58, 0.4) 50%, rgba(11, 29, 58, 0.7) 100%);
  z-index: 1;
}

.em-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.em-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 155, 78, 0.2);
  border: 1px solid rgba(197, 155, 78, 0.5);
  color: #d4af37;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.em-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.em-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Europamundo Filter Tabs */
.em-filter-section {
  padding: 40px 0 20px;
  background-color: var(--color-offwhite);
}

.em-filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.em-filter-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--color-text-body);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.em-filter-btn:hover,
.em-filter-btn.active {
  background: var(--color-navy-dark);
  color: #ffffff;
  border-color: var(--color-navy-dark);
  box-shadow: 0 6px 18px rgba(11, 29, 58, 0.2);
  transform: translateY(-2px);
}

.em-filter-btn.active {
  background: var(--color-gold-gradient);
  border-color: transparent;
}

/* Modern Package Grid */
.em-packages-section {
  padding: 40px 0 90px;
  background-color: var(--color-offwhite);
}

.em-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 30px;
}

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

/* Hero call-to-action pointing at the live booking engine */
.em-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Official Europamundo multisearch iframe */
.em-booking-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-light) 100%);
  scroll-margin-top: 110px;
}

.em-booking-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 44px);
}

.em-booking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-dark, #9e7630);
  background: rgba(197, 155, 78, 0.12);
  border: 1px solid rgba(197, 155, 78, 0.3);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.em-booking-title {
  font-size: clamp(1.75rem, 1.15rem + 1.6vw, 3rem);
  line-height: 1.2;
  color: var(--color-navy-dark);
  margin-bottom: 12px;
}

.em-booking-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.em-booking-desc a {
  color: var(--color-gold-primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(197, 155, 78, 0.4);
}

.em-booking-desc a:hover {
  color: var(--color-gold-hover);
}

/* The vendor script resizes the iframe to its content height, so the wrapper
   only supplies the framing — never a fixed height. */
.em-booking-frame {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(10px, 1.4vw, 22px);
  overflow: hidden;
}

.em-booking-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .em-booking-frame {
    padding: 6px;
    border-radius: var(--radius-md);
  }
}

/* Ultra Modern Card Component */
.em-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.em-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(11, 29, 58, 0.12);
  border-color: rgba(197, 155, 78, 0.4);
}

.em-card-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.em-card:hover .em-card-img {
  transform: scale(1.08);
}

.em-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.em-badge-group {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.em-badge {
  background: rgba(11, 29, 58, 0.85);
  color: #ffffff;
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.em-badge.gold {
  background: var(--color-gold-gradient);
  color: #ffffff;
}

.em-badge.guaranteed {
  background: #10b981;
  color: #ffffff;
}

.em-duration-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.em-price-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  text-align: right;
  color: #ffffff;
}

.em-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.85;
  letter-spacing: 0.5px;
  display: block;
}

.em-price-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffd700;
  font-family: var(--font-heading);
}

/* Card Body Content */
.em-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.em-circuit-code {
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.em-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.em-route-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.em-route-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.em-route-path {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy-medium);
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.em-route-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.em-route-arrow {
  color: var(--color-gold-dark);
  font-size: 0.75rem;
}

.em-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.em-highlights-list li {
  font-size: 0.85rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.em-highlights-list li i {
  color: #10b981;
  font-size: 0.85rem;
}

.em-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-em-secondary {
  background: #f1f5f9;
  color: var(--color-navy-dark);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  text-align: center;
}

.btn-em-secondary:hover {
  background: #e2e8f0;
  color: var(--color-navy-dark);
}

.btn-em-primary {
  background: var(--color-gold-gradient);
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1.2;
  text-align: center;
  box-shadow: 0 4px 12px rgba(197, 155, 78, 0.25);
}

.btn-em-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 155, 78, 0.4);
}

/* ==========================================================================
   Mobile & Tablet Refinements
   Appended last on purpose: the About / Destinations / Europamundo blocks
   above declare their own layout, so these overrides have to come after them.
   ========================================================================== */

/* ---------- Tablets ---------- */
@media (max-width: 1024px) {
  .inspiration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-section {
    padding: 70px 0;
  }

  .about-stats-section {
    padding: 60px 0;
  }

  .about-partnerships-section {
    padding: 70px 0;
    background-attachment: scroll;
  }
}

/* ---------- Large phones / small tablets ---------- */
@media (max-width: 768px) {

  /* A 130px logo swallows the whole bar on a phone. */
  :root {
    --logo-h: clamp(58px, 15vw, 84px);
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-actions .btn-primary {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .search-card-wrapper {
    margin-top: 26px;
  }

  .contact-section {
    padding: 56px 0;
  }

  .about-stats-section {
    padding: 48px 0;
  }

  .about-partnerships-section {
    padding: 56px 0;
  }

  .stat-number {
    font-size: 2.6rem;
  }

  .stat-label {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .region-marquee-card {
    width: 262px;
    height: 360px;
  }

  .region-img-card {
    height: 260px;
  }

  /* Lightbox controls have to clear the image and the thumbs holding it. */
  .lightbox-close {
    top: 14px;
    right: 14px;
    font-size: 2rem;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .lightbox-content {
    max-width: 94vw;
  }

  .lightbox-content img {
    max-height: 62vh;
  }

  .em-hero {
    min-height: auto;
    padding: 100px 16px 56px;
  }

  .em-card-img-container {
    height: 200px;
  }

  /* The CTA overlay fades left-to-right, which only darkens the text side
     on a wide screen. Stacked on a phone the feature rows end up sitting on
     the bright part of the video, so darken top-to-bottom instead. */
  .cta-overlay {
    background: linear-gradient(180deg, rgba(7, 19, 33, 0.92) 0%, rgba(9, 24, 39, 0.86) 55%, rgba(7, 19, 33, 0.93) 100%);
  }

  .cta-section {
    padding: 52px 0;
  }

  .cta-container {
    gap: 28px;
  }

  .cta-left p {
    margin-bottom: 24px;
  }

  .cta-left .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }

  .cta-features {
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  /* Give each row its own surface so the copy stays legible over video. */
  .cta-feature-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px;
  }

  .cta-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
  }

  .cta-feature-text p {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}

/* ---------- Phones ---------- */
@media (max-width: 620px) {
  .section-header {
    gap: 12px;
  }

  .inspiration-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .inspiration-item {
    height: clamp(120px, 34vw, 180px);
  }

  /* Search / contact dropdowns must never be wider than the screen. */
  .custom-modal {
    min-width: 0;
    width: 100%;
  }

  .custom-calendar-modal {
    width: 100%;
    padding: 14px;
  }

  .cal-day {
    font-size: 0.8rem;
  }

  /* iOS zooms the page whenever a focused control is under 16px. */
  .form-input,
  .search-field-value,
  .search-field-value select,
  .search-field-value input,
  .newsletter-input-group input,
  textarea.form-input {
    font-size: 16px;
  }

  /* Three stacked cards made this section ~1400px tall on a phone.
     Swap the grid for an edge-to-edge swipe carousel: one card in view,
     the next one peeking so it reads as scrollable. */
  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 14px;
    margin-inline: calc(var(--container-pad) * -1);
    padding-inline: var(--container-pad);
    padding-bottom: 4px;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: center;
  }

  /* Hover lift fires on tap and shifts the card mid-swipe. */
  .testimonial-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  }

  .testimonial-card-content {
    padding: 22px 18px 16px;
  }

  .testimonial-text {
    font-size: 0.92rem;
    margin-bottom: 16px;
  }

  .testimonial-banner-wrapper {
    height: 110px;
  }

  .testimonials-swipe-hint {
    display: flex;
  }

  .footer-column ul {
    gap: 10px;
  }

  .modal-card {
    padding: 26px 18px;
    border-radius: var(--radius-md);
  }

  .modal-card-lg {
    max-height: 92vh;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .video-modal-card {
    padding: 0;
  }

  .destinations-hero {
    min-height: 58vh;
  }

  .about-hero {
    min-height: 68vh;
  }

  .gallery-filter-tabs {
    gap: 8px;
    margin: 24px 0 30px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .pill-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .region-header {
    margin-bottom: 26px;
  }

  .region-desc {
    font-size: 1rem;
  }

  .em-card-body {
    padding: 20px;
  }

  /* Two footer buttons side by side truncate their labels below ~380px. */
  .em-card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-em-secondary,
  .btn-em-primary {
    flex: none;
    width: 100%;
  }

  /* The vendor booking widget sets its own min width — let it scroll
     inside the frame rather than stretching the page. */
  .em-booking-frame {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {

  /* Six single-column cards is a long scroll; two up reads better. */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .why-us-card {
    padding: 16px 8px;
    border-right: none;
  }

  .why-us-icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    font-size: 1.4rem;
  }

  .why-us-card h3 {
    font-size: 1rem;
  }

  .why-us-card p {
    font-size: 0.78rem;
  }

  .destination-card {
    flex-basis: 165px;
    min-width: 165px;
    height: 250px;
  }

  .destination-card-title {
    font-size: 1.2rem;
  }

  .tour-card-body {
    padding: 16px;
  }

  .tour-title {
    font-size: 1.1rem;
  }

  .tour-card-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cta-left p {
    font-size: 1rem;
  }

  .cta-features {
    gap: 10px;
    padding-top: 20px;
  }

  .cta-feature-item {
    gap: 12px;
    padding: 12px;
  }

  .cta-feature-icon {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .contact-card {
    padding: 20px 16px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }

  .contact-detail-item {
    gap: 14px;
  }

  /* 2x2 beats a four-row stack for the counters. */
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 12px 6px;
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .timeline-content {
    padding: 22px 18px;
  }

  .timeline-content h3 {
    font-size: 1.6rem;
  }

  .timeline-content h4 {
    font-size: 1.05rem;
  }

  .value-card {
    padding: 28px 20px;
  }

  .partnerships-badges {
    gap: 22px;
  }

  .partnerships-content p {
    font-size: 1rem;
  }

  .badge-item i {
    font-size: 2rem;
  }

  .region-marquee-card {
    width: 230px;
    height: 320px;
  }

  .region-img-card {
    height: 220px;
  }

  .em-hero {
    padding: 92px 14px 46px;
  }

  .em-filter-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .footer-bottom {
    font-size: 0.78rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .mobile-nav-drawer {
    padding: 28px 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}