/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Utility Classes for New Icon Structure */
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-12 { width: 3rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-12 { height: 3rem; }
.bg-primary\/10 { background-color: rgba(234, 88, 12, 0.1); }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.mb-4 { margin-bottom: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-1 { margin-left: 0.25rem; }
.text-primary { color: var(--primary); }
.lucide { display: inline-block; }

:root {
  /* Color Variables - Orange Theme */
  --background: #ffffff;
  --foreground: #374151;
  --card: #ffffff;
  --card-foreground: #374151;
  --primary: #ea580c;
  --primary-foreground: #ffffff;
  --secondary: #f9fafb;
  --secondary-foreground: #374151;
  --muted: #f9fafb;
  --muted-foreground: #6b7280;
  --accent: #f97316;
  --accent-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #ea580c;
  --radius: 0.5rem;

  /* Typography */
  --font-sans: "Geist", system-ui, -apple-system, sans-serif;
  --font-serif: "Manrope", Georgia, serif;
  --font-manrope: 'Manrope', sans-serif;
  --font-geist: 'Geist', sans-serif;

  /* Spacing */
  --container-max-width: 1400px;
  --section-padding: 4rem 0;
}

body {
  font-family: var(--font-manrope);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-geist);
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Header Styles */
.header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav {
  padding: 1rem 0;
}

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

.nav-brand {
  display: flex;
  flex-direction: column;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.25rem;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-geist);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.brand-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

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

.nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

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

/* Language Selector */
.language-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: var(--muted);
}

.lang-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Updated language button styles for new icon structure */
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.lang-btn .w-4 {
  flex-shrink: 0;
}

.current-lang-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.current-lang-flag {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 50;
  display: none;
}

.lang-dropdown.show {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: background-color 0.2s;
}

.lang-option:hover {
  background: var(--muted);
}

.lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-geist);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #c2410c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

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

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

/* Hero Section */
.hero {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

/* Enhanced gradient background with orange accents */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(234, 88, 12, 0.02) 0%, 
    rgba(249, 115, 22, 0.05) 50%, 
    rgba(234, 88, 12, 0.02) 100%);
  z-index: 1;
}

/* Background Effects */
.hero .absolute {
  position: absolute;
  z-index: 1;
}

.hero .bottom-20 {
  bottom: 5rem;
}

.hero .left-20 {
  left: 5rem;
}

.hero .top-20 {
  top: 5rem;
}

.hero .right-20 {
  right: 5rem;
}

.hero .bottom-40 {
  bottom: 10rem;
}

.hero .right-40 {
  right: 10rem;
}

.hero .w-96 {
  width: 24rem;
}

.hero .h-96 {
  height: 24rem;
}

.hero .w-80 {
  width: 20rem;
}

.hero .h-80 {
  height: 20rem;
}

.hero .w-64 {
  width: 16rem;
}

.hero .h-64 {
  height: 16rem;
}

.hero .bg-accent\/10 {
  background-color: rgba(249, 115, 22, 0.1);
}

.hero .bg-primary\/10 {
  background-color: rgba(234, 88, 12, 0.1);
}

.hero .bg-accent\/5 {
  background-color: rgba(249, 115, 22, 0.05);
}

.hero .rounded-full {
  border-radius: 9999px;
}

.hero .blur-3xl {
  filter: blur(24px);
}

.hero .blur-2xl {
  filter: blur(16px);
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-location {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--foreground);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-trust {
  margin-top: 2rem;
}

.trust-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

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

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}


.hero-features {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature-icon {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(0, 155, 148, 0.1);
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* Updated feature styles for new icon structure */
.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature .w-6 {
  flex-shrink: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
  opacity: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.price-tag {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: #fef7ed;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 120px;
  z-index: 10;
}

.price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.price-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--foreground);
}

/* Popular Transfers */
.popular-transfers {
  padding: var(--section-padding);
  background: var(--background);
}

.section-subtitle {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.transfer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Enhanced card hover effect with orange accent */
.transfer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}

.transfer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.transfer-card:hover::before {
  transform: scaleX(1);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.card-price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

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

.price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.card-price {
  margin-bottom: 1.5rem;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.card-features span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Transfer Reservation */
.transfer-reservation {
  padding: var(--section-padding);
  background: var(--secondary);
}

.reservation-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.reservation-card h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
  text-align: center;
}

.reservation-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  text-align: center;
  font-size: 1.125rem;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title-small {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-geist);
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.label-icon {
  color: var(--primary);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0;
  transition: all 0.2s ease;
}

.input-icon {
  position: inherit;
  left: 1rem;
  color: var(--muted-foreground);
  z-index: 2;
}

.dropdown-icon {
  position: absolute;
  right: 1rem;
  color: var(--muted-foreground);
  z-index: 2;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: 0;
  font-family: var(--font-manrope);
  font-size: 1rem;
  background: transparent;
  transition: all 0.2s;
}

.input-wrapper select {
  padding-right: 3rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
  box-shadow: none;
}


.input-wrapper:hover {
  border-color: var(--primary);
}

.input-wrapper:hover input,
.input-wrapper:hover select {
  border-color: var(--primary);
  background-color: rgba(234, 88, 12, 0.02);
}


.input-wrapper select option:hover,
.input-wrapper select option:focus {
  background: var(--primary);
  color: white;
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
}

.input-wrapper select:focus option:checked {
  background: var(--primary);
  color: white;
  border-radius: 0.25rem;
  position: relative;
}

.input-wrapper select:focus option:checked::after {
  content: "✓";
  position: absolute;
  right: 1rem;
  color: white;
  font-weight: bold;
}
/* Enhanced dropdown appearance */

/* Enhanced dropdown appearance */
.input-wrapper select {
  border-radius: 12rem;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid var(--border);
  background: white;
  box-shadow: none;

}

/* Dropdown menu styling - when opened */
.input-wrapper select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.input-wrapper select:hover {
  background-color: rgba(234, 88, 12, 0.02);
}

/* Dropdown icon positioning */
.dropdown-icon {
  pointer-events: none;
  transition: transform 0.2s ease;
  color: var(--muted-foreground);
}

.input-wrapper select:focus + .dropdown-icon {
  transform: rotate(180deg);
  color: var(--primary);
}



.input-wrapper select option {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  border-radius: inherit;
  padding: 0.75rem 1rem;
  background: white;
  color: var(--foreground);
  border: none;
  position: relative;
}



.price-estimate {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}

.price-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.price-content p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.price-display {
    background: #fef7ed;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.price-from {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.price-display .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.price-display .price-unit {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.reservation-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.btn-icon {
  transition: transform 0.2s;
}

.reservation-btn:hover .btn-icon {
  transform: translateX(4px);
}

.payment-info {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Quick Booking (Legacy) */
.quick-booking {
  padding: var(--section-padding);
  background: var(--secondary);
}

.booking-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.booking-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.booking-card p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.875rem;
}

.form-group input,
.form-group select {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--background);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

/* Service Highlights */
.service-highlights {
  padding: var(--section-padding);
  background: var(--background);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlight-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

/* Updated highlight card styles for new icon structure */
.highlight-card .w-12 {
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

.highlight-card .w-12 .lucide {
  color: white;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.highlight-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Blog Section */
.blog-section {
  padding: var(--section-padding);
  background: var(--secondary);
}

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

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.blog-date {
  color: var(--muted-foreground);
}

.blog-category {
  color: var(--primary);
  font-weight: 500;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-link:hover {
  color: var(--accent);
}

.blog-cta {
  text-align: center;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: var(--background);
  padding: 3rem 0 1rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .slider-container {
    height: 300px;
  }

  .slider-dots {
    margin-top: 0.75rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height:100px;
  width: auto;
  object-fit: contain;
}

.footer-brand-text h3 {
  color: var(--background);
  margin: 0 0 0.5rem 0;
}

.footer-brand-text p {
  color: #d1d5db;
  margin: 0;
}

.tursab-logo {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.tursab-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
  border-radius: 8px;
}

.tursab-image:hover {
  opacity: 0.8;
}

.footer-section h3,
.footer-section h4 {
  color: var(--background);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
  color: #d1d5db;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: var(--accent);
}

.contact-info {
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
  transition: all 0.3s;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .brand-subtitle {
    display: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

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

  .mobile-menu-btn {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }


  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .trust-stats {
    justify-content: space-around;
  }


  .hero-features {
    justify-content: center;
  }

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

  .card-price-action {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .card-price-action .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-card {
    padding: 2rem 1rem;
  }

  .reservation-card h2 {
    font-size: 2rem;
  }

  .price-estimate {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .price-display {
    align-items: center;
    text-align: center;
  }



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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  
  .footer-section {
    padding: 1rem 0;
    border-bottom: 1px solid #374151;
  }
  
  .footer-section:last-child {
    border-bottom: none;
  }
  
  .footer-brand {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo {
    height: 70px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }
  
  .footer-brand-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .tursab-logo {
    margin-top: 1rem;
    padding-top: 0.75rem;
    text-align: center;
  }
  
  .tursab-image {
    max-width: 200px;
  }
  
  .footer-section h3,
  .footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--background);
  }
  
  .footer-section p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .footer-section ul li {
    font-size: 0.875rem;
  }
  
  .contact-info {
    margin-top: 0.75rem;
  }
  
  .contact-info p {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-info svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .booking-card {
    padding: 2rem 1rem;
  }

  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  /* Background effects for mobile */
  .hero .w-96,
  .hero .h-96 {
    width: 16rem;
    height: 16rem;
  }

  .hero .w-80,
  .hero .h-80 {
    width: 12rem;
    height: 12rem;
  }

  .hero .w-64,
  .hero .h-64 {
    width: 8rem;
    height: 8rem;
  }

  .hero .bottom-20,
  .hero .left-20,
  .hero .top-20,
  .hero .right-20 {
    bottom: 2rem;
    left: 2rem;
    top: 2rem;
    right: 2rem;
  }

  /* Tablet Footer Layout */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
  }
  
  .footer-section ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }


  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .nav-actions {
    gap: 0.5rem;
  }

  .lang-btn {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
*:focus {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn {
    display: none;
  }
}

/* Transfer Route Styles */
.transfer-route {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.route-from {
  color: var(--primary);
  font-weight: 700;
  position: relative;
}

.route-from::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 1px;
}

.route-vehicle-container {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 50px;
  height: 30px;
}

.route-vehicle {
  color: var(--primary);
  position: relative;
  left: 0;
  transition: transform 0.6s ease-in-out;
  animation: driveAnimation 3s ease-in-out infinite;
}

.route-to {
  color: var(--foreground);
  font-weight: 600;
  position: relative;
}

.route-to::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
  border-radius: 1px;
}



/* Hover effects */
.transfer-route:hover .route-vehicle {
  animation: driveAnimation 1.5s ease-in-out infinite;
  transform: translateX(8px);
}

.route-vehicle-container::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 8px,
    transparent 8px,
    transparent 16px
  );
  transform: translateY(-50%);
  animation: roadLineMove 2s linear infinite;
}

@keyframes roadLineMove {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: -16px 0;
  }
}

@keyframes driveAnimation {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .transfer-route {
    font-size: 1.1rem;
    gap: 0.5rem;
  }
  
  .route-vehicle-container {
    width: 40px;
    height: 24px;
  }
  
  .route-vehicle {
    width: 35px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .transfer-route {
    font-size: 1rem;
    gap: 0.375rem;
    flex-wrap: wrap;
  }
  
  .route-vehicle-container {
    width: 35px;
    height: 20px;
  }
  
  .route-vehicle {
    width: 30px;
    height: 20px;
  }
}

/* Transfers Carousel Styles */
.transfers-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.transfers-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  padding: 1rem 0;
}

.transfers-carousel .transfer-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  transition: transform 0.3s ease;
}

.transfers-carousel .transfer-card:hover {
  transform: translateY(-5px);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.carousel-btn {
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary);
  background: var(--background);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
}

.carousel-btn:hover::before {
  left: 0;
}

.carousel-btn:hover {
  color: var(--background);
  transform: scale(1.1);
}

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

.carousel-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
  transform: scale(1.2);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn:disabled:hover {
  transform: none;
}

/* Mobile responsive for carousel */
@media (max-width: 768px) {
  .transfers-carousel .transfer-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .transfers-carousel .transfer-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .carousel-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .transfers-carousel .transfer-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .transfers-carousel-container {
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
  }
}

/* Custom Searchable Select Styles */
.custom-select-container {
  position: relative;
  width: 100%;
}

.custom-select-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.custom-select-input:hover {
  border-color: #ea580c;
}

.custom-select-input:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
  outline: none;
}

.custom-select-input.placeholder {
  color: #9ca3af;
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 0.25rem;
  display: none;
}

.custom-select-dropdown.show {
  display: block;
}

.custom-select-search {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-radius: 0.5rem 0.5rem 0 0;
}

.custom-select-search input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
}

.custom-select-search input:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.custom-select-options {
  max-height: 200px;
  overflow-y: auto;
}

.custom-select-option {
  padding: 0.75rem 1rem;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 1rem;
  line-height: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background-color: #f3f4f6;
}

.custom-select-option.selected {
  background-color: #ea580c;
  color: #ffffff;
}

.custom-select-option.highlighted {
  background-color: #ea580c;
  color: #ffffff;
}

.custom-select-no-results {
  padding: 0.75rem 1rem;
  color: #9ca3af;
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
}

/* Form Group ile uyumlu */
.form-group .custom-select-container {
  width: 100%;
}

.form-group .custom-select-input {
  width: 100%;
}

/* Mobile responsive for navbar */
@media (max-width: 768px) {
  .mobile-brand-title {
    font-size: 1rem !important;
  }
  
  .mobile-btn-small {
    padding: 0.25rem 0.25rem !important;
    font-size: 0.75rem !important;
  }
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.glass-btn {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.glass-btn:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}

.glass-btn.whatsapp {
  color: #25D366;
}

.glass-btn.phone {
  color: #007bff;
}

@keyframes shake {
  0% {
    transform: rotateZ(0);
  }
  10% {
    transform: rotateZ(50deg);
  }
  20% {
    transform: rotateZ(-25deg);
  }
  30% {
    transform: rotateZ(16.66deg);
  }
  40% {
    transform: rotateZ(-12.5deg);
  }
  50% {
    transform: rotateZ(10deg);
  }
  60% {
    transform: rotateZ(-8.33deg);
  }
  70% {
    transform: rotateZ(7.14deg);
  }
  80% {
    transform: rotateZ(-6.25deg);
  }
  90% {
    transform: rotateZ(5.55deg);
  }
  100% {
    transform: rotateZ(0);
  }
}

.shake {
  animation: shake 1.2s ease;
}

/* Popular Hotel Regions Styles */
.popular-hotel-regions {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
  position: relative;
}

/* Subtle pattern overlay for texture */
.popular-hotel-regions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(234, 88, 12, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 1;
}

.hotel-regions-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
  z-index: 2;
}

.hotel-regions-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.5rem;
  padding: 1rem 0;
}

.hotel-region-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hotel-region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.hotel-region-card .card-content {
  padding: 1.5rem;
}

.hotel-region-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.hotel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 8px;
  color: white;
  flex-shrink: 0;
}

.hotel-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hotel-region-card .card-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-region-card .card-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hotel-region-card .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hotel-region-card .detail-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hotel-region-card .card-price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hotel-region-card .price-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hotel-region-card .price-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hotel-region-card .price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.hotel-region-card .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Mobile responsive for hotel regions carousel */
@media (max-width: 768px) {
  .hotel-regions-carousel .hotel-region-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
  
  .hotel-region-card .card-content {
    padding: 1.25rem;
  }
  
  .hotel-region-title {
    font-size: 1.125rem;
  }
  
  .hotel-region-card .card-price-action {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .hotel-region-card .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hotel-regions-carousel .hotel-region-card {
    flex: 0 0 calc(100% - 0.5rem);
    min-width: calc(100% - 0.5rem);
  }
  
  .hotel-region-card .card-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* iPhone Specific Optimizations */
@media screen and (max-width: 414px) and (-webkit-min-device-pixel-ratio: 2) {
  /* iPhone 6/7/8 Plus and newer */
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .transfer-card, .hotel-region-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .transfer-route, .hotel-region-title {
    font-size: 1rem !important;
    line-height: 1.3;
  }
  
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-height: 44px; /* iOS touch target minimum */
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .price-amount {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 375px) and (-webkit-min-device-pixel-ratio: 2) {
  /* iPhone 6/7/8 and similar */
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 1.25rem !important;
  }
  
  .transfer-card, .hotel-region-card {
    padding: 0.75rem;
  }
  
  .btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }
  
  .card-content {
    padding: 0.75rem;
  }
}

@media screen and (max-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
  /* iPhone 5/SE and similar */
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-title {
    font-size: 1.125rem !important;
  }
  
  .transfer-card, .hotel-region-card {
    padding: 0.5rem;
  }
  
  .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .card-content {
    padding: 0.5rem;
  }
  
  .price-amount {
    font-size: 1.125rem;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  /* iOS Safari only */
  .transfer-card, .hotel-region-card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .btn {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  input, select, textarea {
    -webkit-appearance: none;
    border-radius: 0;
  }
  
  /* Fix iOS zoom on input focus */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    font-size: 16px;
  }
}

/* Force consistent styling across all devices */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure consistent box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Fix iOS button styling */
button, input[type="button"], input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
  background: none;
  border: none;
  cursor: pointer;
}

/* Ensure consistent text rendering */
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
