/* ========================================
   EN IYI TATIL BUL - Professional Travel Agency Design
   Inspired by: tatilbudur.com, jollytur, trip.com
   ======================================== */

/* CSS Variables */
:root {
  /* Primary Colors - Blue Theme */
  --primary: #1a56db;
  --primary-dark: #1e429f;
  --primary-light: #3f83f8;
  --primary-50: #ebf5ff;
  --primary-100: #e1effe;

  /* Secondary/Accent - Orange (Logo renkleri) */
  --secondary: #f5a623;
  --secondary-dark: #d88f1a;
  --secondary-light: #f7b84d;

  /* Success/Rating */
  --success: #059669;
  --success-light: #10b981;
  --rating-excellent: #059669;
  --rating-great: #0ea5e9;
  --rating-good: #f59e0b;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Poppins', var(--font-sans);

  /* Spacing */
  --container-max: 1280px;
  --section-padding: 4rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 500ms ease;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
}

h4 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--gray-500);
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--gray-800);
  color: var(--gray-300);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.top-bar-item a:hover {
  color: var(--white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

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

.nav-links {
  display: flex;
  gap: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  background: var(--primary-50);
}

.nav-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Contact Icons - Hidden on desktop */
.mobile-contact-icons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all var(--transition);
}

.mobile-contact-icon svg {
  width: 20px;
  height: 20px;
}

.mobile-contact-icon:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.mobile-contact-icon.whatsapp {
  background: #25D366;
  color: white;
}

.mobile-contact-icon.whatsapp:hover {
  background: #1da851;
  color: white;
}

/* Mobile Navigation - Hidden by default */
.mobile-nav {
  display: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
}

.btn-white:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn-ghost {
  color: var(--gray-600);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-icon {
  padding: 0.625rem;
}

/* ========================================
   HERO SECTION WITH SLIDER
   ======================================== */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: visible;
  min-height: 500px;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.7) 0%, rgba(30, 66, 159, 0.75) 100%);
  z-index: 1;
}

/* Slider Navigation Dots */
.hero-slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

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

.hero-content {
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.hero p {
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Search Box */
.search-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: visible;
  max-width: 900px;
  margin: 0 auto;
}

.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.search-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.search-tab:hover {
  color: var(--primary);
  background: var(--white);
}

.search-tab.active {
  color: var(--primary);
  background: var(--white);
  border-bottom-color: var(--primary);
}

.search-tab svg {
  width: 18px;
  height: 18px;
}

.search-form {
  padding: 0;
}

.search-row {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible;
}

.search-field {
  flex: 1;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.search-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-field label svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-400);
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 0.375rem 0;
  border: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  background: transparent;
  outline: none;
  cursor: pointer;
}

.search-field input::placeholder {
  color: var(--gray-400);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.375rem 0;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-trigger svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: -1.25rem;
  right: -1.25rem;
  min-width: 260px;
  max-height: 300px;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.25rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease;
}

.custom-select-option:hover {
  background: var(--gray-50);
}

.custom-select-option.selected {
  background: var(--primary-50);
}

/* Field Error Animation */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-4px);
  }

  40%,
  80% {
    transform: translateX(4px);
  }
}

.field-error {
  animation: shake 0.4s ease-in-out;
}

.field-error .custom-select-trigger,
.field-error .search-input,
.field-error .guests-trigger {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.option-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
}

.option-location {
  font-size: 0.7rem;
  color: var(--gray-500);
}

/* Search Field Sizes */
.search-field-hotel {
  flex: 1.5;
}

.search-field-dates {
  flex: 1.3;
  position: relative;
}

.search-field-guests {
  flex: 1;
  border-right: none;
}

/* Guests Dropdown */
.guests-dropdown {
  position: relative;
}

.guests-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.375rem 0;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
}

.guests-trigger svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-400);
  transition: transform 0.2s ease;
}

.guests-dropdown.open .guests-trigger svg {
  transform: rotate(180deg);
}

.guests-panel {
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.75rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.guests-dropdown.open .guests-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.guest-row:first-child {
  padding-top: 0;
}

.guest-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

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

.guest-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
}

.guest-desc {
  font-size: 0.7rem;
  color: var(--gray-500);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

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

.counter-btn:active {
  transform: scale(0.95);
}

.counter-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  min-width: 20px;
  text-align: center;
}

/* Child Ages Container */
.child-ages-container {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.25rem;
  margin-top: 0;
  border-top: none;
}

.child-age-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
  min-width: 90px;
}

.child-age-item label {
  font-size: 0.7rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.child-age-select {
  padding: 0.375rem 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.child-age-select:hover,
.child-age-select:focus {
  border-color: var(--primary);
  outline: none;
}

/* Search Button */
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  margin: 0.75rem;
  margin-left: 0;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.search-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  margin-top: 8px !important;
  z-index: 9999 !important;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
  display: none !important;
}

.flatpickr-months {
  padding: 0.5rem 0 !important;
}

.flatpickr-current-month {
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.flatpickr-day {
  border-radius: 50% !important;
  font-weight: 500 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.flatpickr-day.inRange {
  background: var(--primary-50) !important;
  border-color: var(--primary-50) !important;
  box-shadow: none !important;
}

.flatpickr-day:hover {
  background: var(--gray-100) !important;
  border-color: var(--gray-100) !important;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* Mobile Search Responsive */
@media (max-width: 992px) {
  .search-row {
    flex-direction: column;
    gap: 0;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.875rem 1rem;
  }

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

  .search-field label {
    margin-bottom: 0.25rem;
  }

  .search-field-hotel,
  .search-field-dates,
  .search-field-guests {
    flex: 1;
  }

  .guests-panel {
    left: 0;
    right: 0;
  }

  .search-btn {
    width: calc(100% - 1rem);
    margin: 0.5rem;
    padding: 0.875rem 1.5rem;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

.hero-stat {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.hero-stat-value svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.hero-stat-label {
  font-size: 0.8125rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ========================================
   CAMPAIGN BANNERS
   ======================================== */
.campaigns {
  padding: 3rem 0;
  background: var(--white);
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.campaign-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform var(--transition);
}

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

.campaign-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.campaign-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.campaign-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.campaign-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
}

.campaign-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.campaign-price-from {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.campaign-price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  padding: 3rem 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Vision & Mission Grid */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vision-mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  box-shadow: var(--shadow);
}

.vision-mission-card .feature-icon {
  margin: 0 0 1.25rem 0;
}

.vision-mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.vision-mission-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.vision-mission-card p:last-child {
  margin-bottom: 0;
}

/* Mission list */
.mission-list {
  color: var(--gray-600);
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}

.mission-list li {
  margin-bottom: 0.875rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
  font-size: 1rem;
}

.mission-list li:last-child {
  margin-bottom: 0;
}

.mission-list .check-icon {
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.feature-card {
  text-align: center;
  padding: 1rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations {
  padding: 3rem 0;
  background: var(--gray-50);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform var(--transition);
}

.destination-card:hover {
  transform: scale(1.02);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: var(--white);
}

.destination-card h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.125rem;
}

.destination-card span {
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* ========================================
   HOTELS SECTION
   ======================================== */
.hotels {
  padding: 3rem 0;
  background: var(--gray-50);
}

.hotels-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* 3 Hotel Grid - Larger cards for homepage */
.hotels-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hotels-grid-3 .hotel-card {
  max-width: none;
}

.hotels-grid-3 .hotel-image {
  aspect-ratio: 16/10;
}

.hotels-grid-3 .hotel-content {
  padding: 1.5rem;
}

.hotels-grid-3 h3 {
  font-size: 1.25rem;
}

.hotel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.hotel-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Make entire card clickable */
.hotel-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Ensure interactive elements stay above the link */
.hotel-card .hotel-favorite,
.hotel-card .hotel-cta .btn {
  position: relative;
  z-index: 2;
}

.hotel-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.hotel-favorite {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hotel-favorite:hover {
  background: var(--gray-100);
}

.hotel-favorite svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

.hotel-content {
  padding: 1rem;
}

.hotel-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  background: var(--success);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.hotel-rating-badge.excellent {
  background: var(--success);
}

.hotel-rating-badge.great {
  background: var(--rating-great);
}

.hotel-rating-badge.good {
  background: var(--rating-good);
}

.hotel-rating-text {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.625rem;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-bottom: 0.375rem;
}

.hotel-location svg {
  width: 12px;
  height: 12px;
}

.hotel-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.hotel-card h3 a:hover {
  color: var(--primary);
}

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.hotel-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: var(--gray-500);
  padding: 0.125rem 0.375rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.hotel-feature svg {
  width: 10px;
  height: 10px;
  color: var(--success);
}

.hotel-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.hotel-price {
  line-height: 1.2;
}

.hotel-price-label {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.hotel-price-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.hotel-price-night {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 400;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 4rem 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--gray-800);
}

.testimonial-author span {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 4rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-image-badge strong {
  display: block;
  font-size: 1.75rem;
  color: var(--primary);
}

.about-image-badge span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content>p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.about-feature h4 {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.about-feature p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta p {
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-white {
  border: none;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter {
  padding: 3rem 0;
  background: var(--gray-50);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.newsletter-text p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.newsletter-form {
  flex: 1;
  max-width: 480px;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  background: var(--white);
  transition: var(--transition);
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.newsletter-input-group .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: 4rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 0.75rem;
}

.contact-info>p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-method h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.contact-method p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.contact-method a {
  color: var(--primary);
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-xl);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-400);
}

.footer-legal a:hover {
  color: var(--white);
}

.tursab-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gray-800);
  border-radius: var(--radius);
}

.tursab-badge img {
  height: 32px;
}

.tursab-badge span {
  font-size: 0.6875rem;
  color: var(--gray-400);
  line-height: 1.4;
}

/* ========================================
   PAGE HEADER (Internal Pages)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  opacity: 0.6;
}

/* ========================================
   HOTELS PAGE
   ======================================== */
.hotels-page {
  padding: 2rem 0 4rem;
  background: var(--gray-50);
}

.hotels-filter {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
}

.filter-group select {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.875rem;
  background: var(--white);
  cursor: pointer;
}

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

/* No Results Message */
.no-results-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-500);
}

.no-results-message svg {
  color: var(--gray-300);
}

.no-results-message p {
  font-size: 1rem;
  margin: 0;
}

.no-results-message button {
  margin-top: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.no-results-message button:hover {
  background: var(--primary-dark);
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.cookie-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  stroke: var(--primary);
  margin-top: 2px;
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--primary-dark);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}

.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hotels-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .search-form {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
  }

  .search-btn {
    grid-column: span 2;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 2.5rem;
  }

  .top-bar {
    display: none;
  }

  .header .container {
    height: 60px;
  }

  .header .logo img {
    height: 36px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-contact-icons {
    display: flex;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  /* Mobile Navigation */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    list-style: none;
    margin: 0;
  }

  .mobile-nav-links li {
    border-bottom: 1px solid var(--gray-100);
  }

  .mobile-nav-links li:last-child {
    border-bottom: none;
  }

  .mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 1.125rem 1.5rem;
    color: var(--gray-700);
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .mobile-nav-links a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gray-500);
    transition: color 0.2s ease;
  }

  .mobile-nav-links a:hover,
  .mobile-nav-links a:active {
    background: var(--gray-50);
    color: var(--primary);
  }

  .mobile-nav-links a:hover svg,
  .mobile-nav-links a:active svg {
    color: var(--primary);
  }

  .mobile-nav-social {
    margin: 1.5rem 1.5rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 12px;
    text-align: center;
  }

  .mobile-nav-social span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 1rem;
  }

  .mobile-nav-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

  .mobile-nav-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    color: var(--gray-600);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .mobile-nav-social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .mobile-nav-social-links a svg {
    width: 22px;
    height: 22px;
  }

  .mobile-nav-social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
  }

  .mobile-nav-social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
    color: white;
  }

  .mobile-nav-social-links a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    color: white;
  }

  .mobile-nav-cta {
    display: none;
  }

  .hero {
    padding: 2rem 0 2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9375rem;
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1rem;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
  }

  .search-field:first-of-type {
    padding-top: 0;
  }

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

  .search-field-guests {
    border-bottom: none;
    padding-bottom: 0;
  }

  .search-btn {
    grid-column: 1;
    width: 100%;
    margin: 0.75rem 0 0 0;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-value {
    width: 40px;
    height: 40px;
  }

  .hero-stat-value svg {
    width: 20px;
    height: 20px;
  }

  .hero-slider-nav {
    bottom: 1rem;
  }

  .campaigns-grid,
  .destinations-grid,
  .hotels-grid,
  .hotels-grid-3,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vision-mission-card {
    padding: 1.5rem;
  }

  .vision-mission-card h3 {
    font-size: 1.125rem;
  }

  .vision-mission-card p,
  .mission-list li {
    font-size: 0.9375rem;
  }

  .hotels-page .hotels-grid {
    grid-template-columns: 1fr;
  }

  .hotels-grid-3 .hotel-image {
    aspect-ratio: 16/9;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 2rem 0 0;
  }

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

  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .tursab-badge {
    justify-content: center;
  }

  .footer h4 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .footer-links {
    gap: 0.375rem;
  }

  .footer-links a {
    font-size: 0.8125rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  .footer-legal a {
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .hotels-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group select {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    width: 100%;
    justify-content: center;
  }

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

  .campaign-card {
    aspect-ratio: 16/9;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-text {
    margin-bottom: 0.5rem;
  }

  .newsletter-form {
    width: 100%;
    max-width: none;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-text {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  animation: fadeInUp 0.5s ease forwards;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--gray-500);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-light {
  background-color: var(--gray-50);
}

.bg-white {
  background-color: var(--white);
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.view-all-link:hover {
  text-decoration: underline;
}

.view-all-link svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   HOTEL DETAIL PAGE STYLES
   ======================================== */

.hotel-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 968px) {
  .hotel-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Hotel Gallery */
.hotel-gallery {
  position: sticky;
  top: 100px;
}

@media (max-width: 968px) {
  .hotel-gallery {
    position: static;
  }
}

.hotel-main-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
}

.hotel-main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hotel-main-image img {
    height: 280px;
  }
}

.hotel-main-image .hotel-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.hotel-thumb-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hotel-thumb-images img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hotel-thumb-images img:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .hotel-thumb-images img {
    height: 80px;
  }
}

/* Hotel Info */
.hotel-info {
  padding: 0;
}

.hotel-info h2 {
  font-size: 1.5rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.hotel-info h3 {
  font-size: 1.125rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.hotel-info p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Hotel Amenities */
.hotel-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-700);
}

.amenity-item svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

/* Hotel Price Box */
.hotel-price-box {
  background: linear-gradient(135deg, var(--primary-50), var(--white));
  border: 2px solid var(--primary-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 2rem;
}

.hotel-price-info {
  margin-bottom: 1rem;
}

.hotel-price-info .hotel-price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.hotel-price-info .hotel-price-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.hotel-price-box .btn {
  width: 100%;
  justify-content: center;
}

/* Hotel Location in Detail */
.hotel-info .hotel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.hotel-info .hotel-location svg {
  color: var(--primary);
}

/* ========================================
   Lightbox Gallery
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 100px;
  box-sizing: border-box;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  animation: lightboxImageIn 0.3s ease;
}

@keyframes lightboxImageIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close Button - Fixed to viewport */
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Navigation Buttons - Fixed to viewport */
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* Counter */
.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 20px;
  border-radius: 20px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10001;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Make gallery images clickable */
.hotel-gallery img {
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.hotel-gallery img:hover {
  transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 60px 20px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lightbox-counter {
    bottom: 16px;
    font-size: 0.8rem;
    padding: 6px 16px;
  }
}

/* ========================================
   Hotel Detail Page - Enhanced UI
   ======================================== */

/* Hero Section with Side Gallery */
.hotel-hero-section {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 0.5rem;
  height: 65vh;
  min-height: 450px;
  max-height: 600px;
  padding: 0 1rem;
  margin-top: 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .hotel-hero-section {
    grid-template-columns: 2.5fr 1fr;
  }
}

@media (max-width: 968px) {
  .hotel-hero-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 0;
    margin-top: 0;
  }
}

.hotel-hero-side-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

@media (max-width: 968px) {
  .hotel-hero-side-gallery {
    display: none;
  }
}

.hotel-hero-side-gallery img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hotel-hero-side-gallery img.active {
  box-shadow: 0 0 0 3px var(--primary-500);
  transform: scale(1.02);
}

.hotel-hero-side-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Slider */
.hotel-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

@media (max-width: 968px) {
  .hotel-hero {
    height: 50vh;
    min-height: 350px;
    border-radius: 0;
  }
}

.hotel-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hotel-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hotel-hero-slide.active {
  opacity: 1;
}

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

.hotel-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: white;
}

.hotel-hero-content {
  max-width: 1300px;
  margin: 0 auto;
}

.hotel-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hotel-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.hotel-hero-rating-score {
  background: var(--success);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-weight: 700;
}

.hotel-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: var(--font-display);
  color: white;
}

.hotel-hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

.hotel-hero-location svg {
  width: 20px;
  height: 20px;
}

/* Hero Navigation */
.hotel-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.hotel-hero-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.hotel-hero-nav svg {
  width: 24px;
  height: 24px;
}

.hotel-hero-prev {
  left: 1.5rem;
}

.hotel-hero-next {
  right: 1.5rem;
}

/* Hero Dots */
.hotel-hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hotel-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotel-hero-dot.active {
  background: white;
  transform: scale(1.2);
}

.hotel-hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Feature Badges */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  backdrop-filter: blur(8px);
}

.feature-badge svg {
  width: 14px;
  height: 14px;
}

.feature-badge.beach {
  background: rgba(14, 165, 233, 0.9);
  color: white;
}

.feature-badge.private-beach {
  background: rgba(6, 182, 212, 0.9);
  color: white;
}

.feature-badge.full-board {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}

.feature-badge.all-inclusive {
  background: rgba(5, 150, 105, 0.9);
  color: white;
}

.feature-badge.conservative {
  background: rgba(139, 92, 246, 0.9);
  color: white;
}

.feature-badge.glamping {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}

.feature-badge.honeymoon {
  background: rgba(236, 72, 153, 0.9);
  color: white;
}

.feature-badge.family {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.feature-badge.treehouse {
  background: rgba(34, 197, 94, 0.9);
  color: white;
}

.feature-badge.nature {
  background: rgba(22, 163, 74, 0.9);
  color: white;
}

.feature-badge.breakfast {
  background: rgba(245, 158, 11, 0.9);
  color: white;
}

.feature-badge.aframe {
  background: rgba(249, 115, 22, 0.9);
  color: white;
}

.feature-badge.star {
  background: rgba(234, 179, 8, 0.9);
  color: white;
}

/* Quick Info Bar */
.quick-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: -2rem auto 2rem;
  position: relative;
  z-index: 5;
  max-width: 900px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--gray-700);
}

.quick-info-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.quick-info-item strong {
  color: var(--gray-900);
}

/* Enhanced Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  border-color: var(--primary-200);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.1);
  transform: translateY(-2px);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: white;
}

.amenity-icon svg {
  width: 24px;
  height: 24px;
}

.amenity-card span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

/* Amenities Sidebar Box */
.amenities-sidebar-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  margin-top: 1rem;
}

.amenities-sidebar-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-100);
}

/* Elegant Amenities List (for sidebar) */
.amenities-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.amenities-list-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.amenity-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s ease;
}

.amenity-list-item:last-child {
  border-bottom: none;
}

.amenity-list-item:hover {
  padding-left: 0.25rem;
}

.amenity-list-item .amenity-icon-small {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: white;
  flex-shrink: 0;
}

.amenity-list-item .amenity-icon-small svg {
  width: 16px;
  height: 16px;
}

.amenity-list-item span {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
}

/* Hotel Sidebar */
.hotel-sidebar {
  position: sticky;
  top: 100px;
}

@media (max-width: 968px) {
  .hotel-sidebar {
    position: static;
  }
}

/* Enhanced Hotel Info Section */
.hotel-content-section {
  padding: 3rem 0;
}

.hotel-about {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.hotel-about h2 {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hotel-about h2 svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.hotel-about p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hotel-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--primary-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 1.5rem 0;
}

.hotel-highlight svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.hotel-highlight p {
  margin: 0;
  color: var(--gray-700);
}

/* Transport Info */
.transport-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.transport-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.transport-item span {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.transport-item strong {
  color: var(--gray-900);
}

/* Enhanced CTA Box */
.hotel-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: white;
  text-align: center;
}

.hotel-cta-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.hotel-cta-box p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hotel-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hotel-cta-box .btn {
  width: 100%;
  justify-content: center;
}

.hotel-cta-box .btn-white {
  background: white;
  color: var(--primary);
}

.hotel-cta-box .btn-white:hover {
  background: var(--gray-100);
}

.hotel-cta-box .btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.hotel-cta-box .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Responsive Hero */
@media (max-width: 968px) {
  .hotel-hero {
    height: 60vh;
    min-height: 400px;
  }

  .hotel-hero h1 {
    font-size: 2rem;
  }

  .hotel-hero-overlay {
    padding: 3rem 1.5rem 2rem;
  }

  .hotel-hero-nav {
    width: 40px;
    height: 40px;
  }

  .hotel-hero-prev {
    left: 1rem;
  }

  .hotel-hero-next {
    right: 1rem;
  }

  .quick-info-bar {
    margin: -1.5rem 1rem 1.5rem;
    padding: 1rem;
    gap: 0.75rem;
  }

  .quick-info-item {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }

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

@media (max-width: 640px) {
  .hotel-hero {
    height: 50vh;
    min-height: 350px;
  }

  .hotel-hero h1 {
    font-size: 1.5rem;
  }

  .hotel-hero-badges {
    gap: 0.375rem;
  }

  .feature-badge {
    padding: 0.375rem 0.625rem;
    font-size: 0.65rem;
  }

  .hotel-hero-nav {
    display: none;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .amenity-card {
    padding: 1rem 0.75rem;
  }

  .amenity-card-icon {
    width: 40px;
    height: 40px;
  }

  .amenity-card-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   Hotel Detail Page V2 - Modern Design
   ======================================== */

/* Airbnb-style Photo Gallery Grid */
.hotel-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  height: 60vh;
  min-height: 400px;
  max-height: 550px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 1rem;
}

.hotel-gallery-grid .gallery-main {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  cursor: pointer;
}

.hotel-gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hotel-gallery-grid .gallery-item:nth-child(2) {
  border-radius: 0;
}

.hotel-gallery-grid .gallery-item:nth-child(3) {
  border-radius: 0 var(--radius-xl) 0 0;
}

.hotel-gallery-grid .gallery-item:nth-child(4) {
  border-radius: 0;
}

.hotel-gallery-grid .gallery-item:nth-child(5) {
  border-radius: 0 0 var(--radius-xl) 0;
}

.hotel-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-gallery-grid .gallery-main:hover img,
.hotel-gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.hotel-gallery-grid .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hotel-gallery-grid .gallery-main:hover .gallery-overlay,
.hotel-gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Show All Photos Button */
.gallery-show-all {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: white;
  border: 1px solid var(--gray-900);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.gallery-show-all:hover {
  background: var(--gray-100);
}

.gallery-show-all svg {
  width: 16px;
  height: 16px;
}

/* Gallery Mobile */
@media (max-width: 768px) {
  .hotel-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    min-height: auto;
    max-height: none;
    gap: 0;
    padding: 0;
    margin-top: 0;
  }

  .hotel-gallery-grid .gallery-main {
    height: 50vh;
    min-height: 300px;
    border-radius: 0;
  }

  .hotel-gallery-grid .gallery-item {
    display: none;
  }
}

/* Hotel Title Section */
.hotel-title-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.hotel-title-info h1 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.hotel-title-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.hotel-title-meta .meta-separator {
  width: 4px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
}

.hotel-title-meta a {
  color: var(--gray-900);
  text-decoration: underline;
}

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

.hotel-action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.hotel-action-btn:hover {
  background: var(--gray-100);
}

.hotel-action-btn svg {
  width: 18px;
  height: 18px;
}

/* Hotel Highlights */
.hotel-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin: 1.5rem 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: var(--radius-lg);
  color: var(--primary);
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
}

.highlight-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.highlight-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Room Types Section */
.room-types-section {
  padding: 2rem 0;
}

.room-types-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

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

.room-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.room-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.room-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: white;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-900);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.room-card-content {
  padding: 1.25rem;
}

.room-card-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.room-card-size {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.room-feature svg {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.room-price {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.room-price strong {
  font-size: 1.25rem;
  color: var(--gray-900);
}

/* Amenities Grid V2 */
.amenities-section {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
}

.amenities-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.amenities-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .amenities-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.amenity-item-v2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.amenity-item-v2 svg {
  width: 24px;
  height: 24px;
  color: var(--gray-700);
  flex-shrink: 0;
}

.amenity-item-v2 span {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.amenities-show-more {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gray-900);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  transition: all 0.2s ease;
}

.amenities-show-more:hover {
  background: var(--gray-100);
}

/* Location Section */
.location-section {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
}

.location-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.location-section .location-address {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.location-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 1.5rem;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-distances {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.distance-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.distance-item span {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.distance-item strong {
  color: var(--gray-900);
}

/* Reviews Section */
.reviews-section {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
}

.reviews-info h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.reviews-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.reviews-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-bar-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  min-width: 80px;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

.rating-bar-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
  min-width: 30px;
  text-align: right;
}

/* Review Cards */
.reviews-list {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
}

.review-author-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background: white;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.review-rating svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
  fill: #fbbf24;
}

.review-card-content p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
}

.faq-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-900);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Booking Sidebar V2 */
.booking-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.booking-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

.booking-price-info {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.booking-price-info strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
}

.booking-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.booking-rating svg {
  width: 14px;
  height: 14px;
  color: #fbbf24;
  fill: #fbbf24;
}

.booking-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

/* Photo Modal/Lightbox */
.photo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 2rem;
}

.photo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

.photo-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.photo-modal-close svg {
  width: 24px;
  height: 24px;
}

.photo-modal-content {
  max-width: 90vw;
  max-height: 85vh;
}

.photo-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

.photo-modal-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.photo-modal-nav svg {
  width: 24px;
  height: 24px;
}

.photo-modal-prev {
  left: 2rem;
}

.photo-modal-next {
  right: 2rem;
}

.photo-modal-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
}

/* Hotel Detail Layout V2 */
.hotel-detail-v2 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hotel-detail-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  padding: 2rem 0;
  align-items: start;
}

@media (max-width: 1024px) {
  .hotel-detail-v2 {
    padding: 0 1rem;
    padding-bottom: 90px;
  }

  .hotel-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-sidebar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: none;
    overflow: visible;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 1rem 1.5rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border: none;
  }

  .booking-sidebar-header {
    display: none;
  }

  .booking-cta {
    flex-direction: row;
    gap: 0.75rem;
  }

  .booking-cta .btn {
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .booking-cta .btn svg {
    width: 16px;
    height: 16px;
  }

  .booking-note {
    display: none;
  }
}

@media (max-width: 640px) {
  .hotel-gallery-grid {
    padding: 0;
  }

  .hotel-title-section {
    padding: 1rem 1.5rem;
  }

  .hotel-detail-v2 {
    padding: 0 1rem;
    padding-bottom: 80px;
  }

  .booking-cta .btn-secondary {
    display: none;
  }

  .booking-cta .btn-outline {
    display: none;
  }

  .booking-cta .btn {
    flex: none;
    width: 100%;
  }
}