/* ===========================
   SAFARAYA CLONE - CSS DESIGN SYSTEM
   =========================== */

/* CSS Custom Properties */
:root {
  /* Colors */
  --color-primary: #00473e;
  --color-primary-dark: #003530;
  --color-primary-light: #005d52;
  --color-accent: #a3d133;
  --color-accent-light: #c4e86a;
  --color-accent-dark: #8ab82a;

  --color-white: #ffffff;
  --color-bg: #f8f9fa;
  --color-bg-alt: #f0f2f5;
  --color-text: #1a1a1a;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;
  --color-border: #e5e7eb;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Calistoga', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Container */
  --container-max: 1200px;
  --container-padding: 20px;
}

/* ===========================
   BASE RESET & TYPOGRAPHY
   =========================== */

/* Font import moved to index.html for better performance */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
  /* Space for floating nav */
  padding-top: 0;
  /* Removed fixed header padding */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

/* ===========================
   LAYOUT & CONTAINER
   =========================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   HEADER
   =========================== */

.header {
  display: block;
  position: relative;
  /* Unfixed */
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  height: auto;
  min-height: 80px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.logo-brand {
  display: flex;
  flex-direction: column;
  padding-left: var(--space-sm);
  border-left: 2px solid var(--color-accent);
}

.logo-brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.1;


}

.logo-brand-tagline {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.1;
  margin-top: 2px;
}

/* Hero Logo Styles */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.hero .logo {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.hero .logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  max-height: 60px;
  /* Adjusted for header */
  width: auto;
  display: block;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(248, 225, 188, 0.9), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(163, 209, 51, 0.2), transparent 20%),
    linear-gradient(180deg, #f8f2e8 0%, #eef6f0 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  top: -160px;
  right: -110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}

.hero::after {
  width: 320px;
  height: 320px;
  bottom: -170px;
  left: -100px;
  background: radial-gradient(circle, rgba(200, 138, 47, 0.18), rgba(200, 138, 47, 0));
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 720px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  display: flex;
  align-items: center;
  padding: 24px 0 58px;
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.slide .container {
  position: relative;
  z-index: 2;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  width: 100%;
  padding: clamp(10px, 2vw, 20px) 0;
}

.hero-shell::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  left: -110px;
  bottom: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 209, 51, 0.18), rgba(163, 209, 51, 0));
  pointer-events: none;
  opacity: 0.8;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 247, 231, 0.95);
  border: 1px solid rgba(200, 154, 74, 0.18);
  box-shadow: 0 10px 30px rgba(200, 154, 74, 0.12);
  color: #7a5521;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c98a2f, #f1cf7a);
  box-shadow: 0 0 0 6px rgba(201, 138, 47, 0.12);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 44px;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.slider-btn {
  display: none;
  /* Hide arrows as requested */
}

.slider-dots {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 36px rgba(0, 71, 62, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dot {
  width: 22px;
  height: 8px;
  background: rgba(0, 71, 62, 0.18);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 40px;
  background: linear-gradient(90deg, #c89034, var(--color-accent));
  transform: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--color-primary-dark);
  margin-bottom: 18px;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02;
  max-width: 620px;
}

.hero h1 .highlight {
  color: #c07a2c;
}

.hero-subtitle {
  color: #4d635c;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  max-width: 620px;
  margin: 0 0 24px;
  text-shadow: none;
}

/* Glass chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.glass-chip {
  background: rgba(240, 247, 242, 0.95);
  border: 1px solid rgba(0, 71, 62, 0.08);
  border-radius: var(--radius-full);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  box-shadow: 0 12px 28px rgba(0, 71, 62, 0.08);
}

.glass-chip svg {
  width: 16px;
  height: 16px;
  fill: #c07a2c;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 4px;
}

.hero-buttons .btn {
  min-width: 220px;
}

.hero .btn {
  box-shadow: 0 14px 32px rgba(0, 71, 62, 0.1);
}

.hero .btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.hero .btn-primary:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
  border-color: var(--color-primary-light);
  box-shadow: 0 14px 32px rgba(0, 71, 62, 0.18);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary-dark);
  border: 1px solid rgba(0, 71, 62, 0.12);
}

.hero .btn-secondary:hover {
  background: rgba(248, 242, 232, 0.98);
  color: var(--color-primary-dark);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -18px 18px 36px -18px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 232, 196, 0.92), rgba(163, 209, 51, 0.2));
  filter: blur(18px);
  opacity: 0.9;
}

.hero-visual-frame {
  position: relative;
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 247, 242, 0.88) 100%);
  box-shadow: 0 28px 70px rgba(0, 71, 62, 0.16);
}

.hero-visual-image {
  width: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.hero-visual-badge {
  position: absolute;
  max-width: 220px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 71, 62, 0.08);
  box-shadow: 0 16px 40px rgba(0, 71, 62, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-badge-label {
  color: #7a8f87;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-badge strong {
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.35;
}

.hero-visual-badge-top {
  top: 24px;
  left: -28px;
}

.hero-visual-badge-bottom {
  right: -28px;
  bottom: 28px;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-xs {
  padding: 6px 16px;
  font-size: 0.85rem;
  gap: 6px;
}

.btn-xs svg {
  width: 16px !important;
  height: 16px !important;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 71, 62, 0.2);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background: #128c7e;
  /* Darker WhatsApp teal for high contrast */
  color: var(--color-white);
  border-color: #128c7e;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(0.98);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover svg {
  transform: scale(1.1) rotate(-5deg);
  fill: currentColor;
}

/* ===========================
   USP CARDS SECTION
   =========================== */

.usp-section {
  background: var(--color-white);
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.usp-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.usp-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.usp-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
}

.usp-card h3 {
  margin-bottom: var(--space-sm);
}

.usp-card p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ===========================
   PRODUCT TABS
   =========================== */

.product-tabs-section {
  background: var(--color-bg);
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-border);
}

.tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.tab-btn svg {
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visa-section {
  background: var(--color-bg);
}

.hotel-section {
  background: var(--color-white);
}

.transport-section {
  background: var(--color-white);
}

/* ===========================
   VISA PRODUCT CARD
   =========================== */

.visa-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.visa-card-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-xl);
  color: var(--color-white);
}

.visa-badges {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.badge {
  background: rgba(163, 209, 51, 0.2);
  color: var(--color-accent);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(163, 209, 51, 0.9);
  color: var(--color-primary);
}

.visa-card-header h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.visa-card-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.visa-card-body {
  padding: var(--space-xl);
}

.visa-price {
  margin-bottom: var(--space-lg);
}

.visa-price .price-label {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.visa-price .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.visa-price .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.visa-features {
  margin-bottom: var(--space-lg);
}

.visa-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--color-text-muted);
}

.visa-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

/* ===========================
   HOTEL SECTION
   =========================== */

.location-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.location-btn {
  background: var(--color-white);
  color: var(--color-text);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-border);
}

.location-btn:hover {
  border-color: var(--color-accent);
}

.location-btn.active {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.hotel-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none;
  /* Hide all cards by default */
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.hotel-card.show {
  display: block;
  /* Only show cards with .show class */
}

.hotel-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-carousel {
  display: flex;
  transition: transform 0.3s ease;
}

.hotel-carousel img {
  flex-shrink: 0;
  width: 100%;
}

.carousel-nav {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  gap: var(--space-xs);
}

.carousel-nav button {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.carousel-nav button:hover {
  background: var(--color-white);
}

.carousel-nav svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}

.hotel-body {
  padding: var(--space-lg);
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.hotel-rating svg {
  width: 16px;
  height: 16px;
  fill: #fbbf24;
}

.hotel-rating span {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.hotel-name {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.hotel-distance {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.hotel-distance svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
}

.hotel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.hotel-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.hotel-cta {
  text-align: center;
  margin-top: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-2xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.hotel-cta h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.hotel-cta p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.btn-sm {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
}

.btn-xs {
  padding: 8px 14px;
  font-size: 0.75rem;
  gap: var(--space-xs);
}

.btn-xs svg {
  width: 14px;
  height: 14px;
}

/* ===========================
   TRANSPORT SECTION
   =========================== */

.transport-content {
  max-width: 800px;
  margin: 0 auto;
}

.transport-category {
  margin-bottom: var(--space-xl);
}

.transport-category h4 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.transport-category h4 svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.transport-table {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.transport-table th,
.transport-table td {
  padding: var(--space-md);
  text-align: left;
}

.transport-table th:first-child,
.transport-table td:first-child {
  width: 55%;
}

.transport-table thead {
  background: var(--color-primary);
  color: var(--color-white);
}

.transport-table th {
  font-weight: 600;
}

.transport-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.transport-table tbody tr:last-child {
  border-bottom: none;
}

.transport-table tbody tr:hover {
  background: var(--color-bg);
}

.transport-table .price {
  font-weight: 600;
  color: var(--color-primary);
}

.transport-note {
  text-align: center;
  margin-top: var(--space-xl);
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

.category-note {
  text-align: left;
  margin-top: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Transport V2 - Revamped Design */
.transport-v2-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.transport-v2-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.transport-v2-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-lg) var(--space-xl);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.transport-v2-header h4 {
  margin-bottom: 0 !important;
  color: var(--color-white) !important;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.transport-v2-header h4 svg {
  fill: var(--color-accent) !important;
}

.price-tag {
  background: rgba(163, 209, 51, 0.2);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(163, 209, 51, 0.3);
}

.transport-v2-body {
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-2xl);
}

.transport-v2-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  display: block;
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xs);
}

.route-v2-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-sm);
}

.route-v2-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.route-v2-item:hover {
  transform: translateX(4px);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.route-v2-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent-dark);
}

.vehicle-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.vehicle-v2-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.vehicle-v2-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.vehicle-v2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.vehicle-v2-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

.vehicle-v2-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.vehicle-v2-cap {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.transport-v2-footer {
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .transport-v2-body {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .vehicle-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .vehicle-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transport-v2-header {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .route-v2-list {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
  background: var(--color-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

.footer-links h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-links a:hover {
  background: var(--color-accent);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.social-links a:hover svg {
  fill: var(--color-primary);
}

.footer-company-info {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.footer-company-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.footer-company-info p:last-child {
  margin-bottom: 0;
}

.footer-company-info strong {
  color: var(--color-accent);
  font-weight: 700;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ===========================
   FLOATING NAVIGATION
   =========================== */

.floating-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: var(--space-sm) 0;
  /* Start hidden */
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-nav.is-visible {
  transform: translateY(0);
}

.floating-nav-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* Allow items to fill height */
  max-width: 600px;
  margin: 0 auto;
  gap: var(--space-xs);
}

.floating-nav-item {
  flex: 1;
  /* Assign equal space to all items */
  min-width: 0;
  /* Prevent overflow */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xs);
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  background: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: var(--radius-md);
  text-align: center;
}

.floating-nav-item:hover {
  color: var(--color-primary);
  background: rgba(0, 71, 62, 0.05);
  transform: translateY(-2px);
}

.floating-nav-item.active {
  color: var(--color-primary);
  font-weight: 700;
  background: rgba(163, 209, 51, 0.2);
}

.floating-nav-item.active::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 0 0 4px 4px;
}

.floating-nav-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.floating-nav-item:hover svg {
  transform: scale(1.1);
}

.floating-nav-item.whatsapp {
  flex: 1.5;
  /* WhatsApp button gets slightly more space for label */
  background: #25d366;
  color: var(--color-white);
  border-radius: var(--radius-md);
  /* Match other items */
  padding: var(--space-sm) var(--space-xs);
  flex-direction: column;
  /* Force stack to match others */
  gap: var(--space-xs);
  font-size: 0.7rem;
}

.floating-nav-item.whatsapp svg {
  fill: var(--color-white);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
  .hero-slider {
    min-height: 900px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-visual-image {
    min-height: 340px;
    aspect-ratio: 16 / 10;
  }

  .hero-visual-badge-top {
    left: 18px;
  }

  .hero-visual-badge-bottom {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .hero {
    padding: 18px 0 70px;
  }

  .hero-slider {
    min-height: 920px;
  }

  .slide {
    padding: 6px 0 48px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 2px 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-eyebrow::before {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 5px rgba(201, 138, 47, 0.1);
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    margin-bottom: 14px;
    line-height: 1.06;
  }

  .hero-subtitle {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .hero-chips {
    gap: 8px;
    margin-bottom: 16px;
  }

  .glass-chip {
    padding: 7px 12px;
    font-size: 0.78rem;
    box-shadow: 0 8px 18px rgba(0, 71, 62, 0.06);
  }

  .hero-buttons {
    margin-top: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 0.96rem;
  }

  .hero-visual::before {
    inset: 4px 14px -6px 14px;
    opacity: 0.6;
  }

  .hero-visual-frame {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
  }

  .hero-visual-image {
    min-height: 238px;
    aspect-ratio: 4 / 3.45;
    border-radius: 18px;
  }

  .hero-visual-badge {
    position: static;
    max-width: none;
    width: 100%;
    padding: 11px 12px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 71, 62, 0.1);
    gap: 4px;
  }

  .hero-badge-label {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .hero-visual-badge strong {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .slider-nav {
    bottom: 24px;
  }

  .slider-dots {
    gap: 8px;
    padding: 6px 10px;
  }

  .dot {
    width: 16px;
    height: 6px;
  }

  .dot.active {
    width: 28px;
  }

  .usp-section {
    margin-top: 12px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .hotel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: var(--space-md);
    padding: var(--space-sm) 16px var(--space-xl) 16px;
    /* Increased bottom padding */
    margin: 0 -16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .hotel-grid::-webkit-scrollbar {
    display: none;
  }

  .hotel-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .hotel-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
  }

  .hotel-footer .btn-whatsapp {
    width: auto;
  }

  .hotel-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }

  .hotel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--color-primary);
    transition: all 0.2s ease;
  }

  .hotel-nav-btn:active {
    background: var(--color-bg);
    transform: scale(0.95);
  }

  .hotel-cta {
    margin-top: var(--space-xl);
    padding: var(--space-xl) var(--space-md);
    margin-left: 16px;
    margin-right: 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .floating-nav-inner {
    padding: 0 var(--space-xs);
  }

  .floating-nav-item {
    padding: var(--space-sm) 2px;
    font-size: 0.6rem;
  }

  .floating-nav-item svg {
    width: 20px;
    height: 20px;
  }

  .floating-nav-item.whatsapp {
    flex: 1.2;
    padding: var(--space-sm) 2px;
    font-size: 0.6rem;
  }

  .transport-table th:first-child,
  .transport-table td:first-child {
    width: 65%;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 860px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8.2vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: 0.94rem;
  }

  .hero-chips {
    gap: 6px;
  }

  .glass-chip {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .hero-visual-image {
    min-height: 220px;
  }

  .hero-visual-badge-bottom {
    display: none;
  }

  .tabs-container {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    width: 100%;
  }

  .location-toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
  }

  .location-btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    flex: 1;
    max-width: 160px;
    text-align: center;
    white-space: nowrap;
  }

  .transport-table {
    font-size: 0.875rem;
  }

  .transport-table th,
  .transport-table td {
    padding: var(--space-sm);
  }

  .logo-brand-title {
    font-size: 0.9rem;
  }

  .logo-brand-tagline {
    font-size: 0.6rem;
  }

  .logo-img {
    max-height: 45px;
  }
}

.hotel-nav {
  display: none;
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: var(--space-sm);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mt-3 {
  margin-top: var(--space-lg);
}

.mt-4 {
  margin-top: var(--space-xl);
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ===========================
   HANDLING SAUDI SECTION
   =========================== */
.handling-section {
  background: var(--color-bg);
}

.handling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.handling-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.handling-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.handling-header {
  background: var(--color-primary);
  padding: var(--space-lg);
  text-align: center;
  color: var(--color-white);
}

.handling-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.handling-price {
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-accent);
}

.handling-price-prefix {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.handling-price-amount {
  /* Placeholder if needed, but I didn't use it in HTML yet */
  font-size: 2rem;
  font-weight: 800;
}

/* Update handling-price to specifically target the numeric part if needed, 
   but since it's the main container now, let's adjust how it applies to text */
.handling-price {
  font-size: 2rem;
  font-weight: 500;
}

.handling-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.handling-body {
  padding: var(--space-xl);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.handling-features {
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.handling-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  line-height: 1.4;
}

.handling-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.handling-note {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: var(--space-md);
  text-align: left;
}

/* ===========================
   TIKET PESAWAT SECTION
   =========================== */
.tiket-pesawat-section {
  background: var(--color-bg);
}
