:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-dark: #020617;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-dark: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top Contact Bar */
.top-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 0.8rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2;
  opacity: 0.9;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.language-switcher:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-switcher svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
  stroke-width: 2;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: var(--surface-alt);
}

.lang-btn svg {
  transition: transform 0.3s ease;
}

.lang-btn.active svg:last-child {
  transform: rotate(180deg);
}

.lang-select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  min-width: 90px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.lang-select:focus {
  outline: none;
}

.lang-select svg {
  transition: transform 0.3s ease;
}

.lang-select.active svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  padding: 1rem 1.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.lang-option:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.lang-option.active {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  font-weight: 600;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Tour Packages Section */
.tour-packages {
  padding: 4rem 0;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  min-width: 200px;
}

.search-bar input {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--text);
  min-width: 150px;
  font-size: 0.9rem;
}

.search-bar input:focus {
  outline: none;
}

.search-bar .search-icon {
  color: var(--text-light);
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.tour-grid {
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tour-grid::-webkit-scrollbar {
  display: none;
}

.tour-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
  flex: 0 0 380px;
  min-width: 380px;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
}

.tour-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.tour-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.tour-card .tier-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.tour-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}


.tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  padding: 1.5rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.tour-overlay h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
  line-height: 1.3;
  word-wrap: break-word;
}

.tour-btn {
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
}

.tour-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.tour-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.tour-btn:hover svg {
  transform: scale(1.1);
}

.tour-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.nav-arrows {
  display: flex;
  gap: 0.5rem;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.nav-arrow.next {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.nav-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.nav-arrow.next:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.tour-description {
  color: var(--muted);
  margin: 0;
  max-width: 500px;
  line-height: 1.6;
}

/* Who We Are Section - Clean Design */
.who-we-are {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
  overflow: hidden;
}

.who-background-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1609137144813-7d9921338f24?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.who-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.who-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.5rem;
}

.who-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 2rem;
  text-align: justify;
}

.who-mini-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  border: 2px solid rgba(30, 58, 138, 0.1);
  transition: all 0.2s ease;
}

.mini-stat:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.mini-stat-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
}

.mini-stat-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.who-cta-wrapper {
  display: flex;
  align-items: flex-start;
}

.btn-who-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.8rem;
  background: var(--gradient-accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-who-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-who-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.4);
}

.btn-who-cta:hover::before {
  left: 100%;
}

/* Regions Section */
.regions-section {
  background: var(--surface);
  padding: 5rem 0;
}


.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.region-card {
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.region-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.region-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
  padding: 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.35s ease;
}

.region-card:hover .region-overlay {
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.85));
}

.region-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.6rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease-out;
}

.region-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.8rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.region-card:hover .region-description {
  opacity: 1;
  max-height: 100px;
  margin-bottom: 1rem;
}

.region-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--gradient-accent);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  align-self: flex-start;
  box-shadow: var(--shadow-md);
}

.region-link:hover {
  gap: 0.7rem;
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.regions-cta {
  text-align: center;
}

.regions-cta .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: none;
  background: var(--gradient-accent);
  color: white;
  border: none;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.regions-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.regions-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.4);
}

.regions-cta .btn:hover::before {
  left: 100%;
}

/* Budget Segments Section */
.budget-section {
  background: var(--surface);
  padding: 5rem 0;
}


.budget-tiers {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tier-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tier-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  flex-shrink: 0;
}

.tier-badge-standard {
  background: #10b981;
}

.tier-badge-comfort {
  background: #3b82f6;
}

.tier-badge-luxury {
  background: #f59e0b;
}

.tier-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.tier-view-all {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tier-view-all:hover {
  color: var(--accent-dark);
  transform: translateX(3px);
}

.tier-tours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tour-mini-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tour-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12);
}

.tour-mini-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-mini-card:hover img {
  transform: scale(1.05);
}

.tour-mini-info {
  padding: 1.2rem;
}

.tour-mini-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.tour-mini-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Transport Services Section */
.transport-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.transport-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.transport-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0 0 3rem;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.transport-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.transport-featured {
  background: var(--gradient-accent);
  color: white;
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
}

.transport-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-30%, 30%);
  }
}

.transport-featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.transport-featured .transport-name,
.transport-featured .transport-desc {
  color: white;
}

.transport-featured .transport-btn {
  background: white;
  color: #f97316;
}

.transport-featured .transport-btn:hover {
  background: #fff;
  color: #ea580c;
}

.transport-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transport-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  position: relative;
}

.transport-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.transport-featured .transport-icon {
  background: white;
  color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.transport-featured .transport-icon::after {
  background: white;
}

.transport-card:hover .transport-icon {
  transform: scale(1.1) rotate(5deg);
}

.transport-card:hover .transport-icon::after {
  opacity: 0.4;
}

.transport-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.8rem;
}

.transport-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 2rem;
  flex: 1;
}

.transport-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.transport-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  filter: brightness(1.1);
}

/* Hotel Partners Section */
.partners-section {
  background: var(--surface);
  padding: 5rem 0;
}


.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.partner-logo {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 2px 15px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #cbd5e1;
  filter: grayscale(100%);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
  filter: grayscale(0%);
  color: var(--accent);
}

.partner-logo svg {
  width: 100%;
  height: auto;
  max-width: 160px;
  transition: all 0.3s ease;
}

.partners-note {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.partners-cta {
  text-align: center;
}

.partners-cta .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
  transition: all 0.3s ease;
}

.partners-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.3);
}

/* Guides Section */
.guides-section {
  background: white;
  padding: 5rem 0;
}


.guides-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  justify-items: center;
}

/* New Guide Cards Design */
.guides-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-card-new {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid var(--border-light);
}

.guide-card-new:hover {
  transform: translateY(-8px);
}


.guide-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guide-card-new:hover .guide-image {
  transform: scale(1.05);
}

.guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.guide-card-new:hover .guide-overlay {
  opacity: 1;
}

.guide-social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link-new {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link-new:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.guide-content {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.guide-name-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.guide-specialty {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 1rem 0;
}

.guide-languages-new {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.lang-tag {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.guide-description-new {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.guide-stats-new {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.stat-item-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .guides-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .guide-card-new {
    margin: 0 0.5rem;
  }
  
  .guide-image-wrapper {
    height: 240px;
  }
  
  .guide-content {
    padding: 1.25rem;
  }
  
  .guide-stats-new {
    gap: 1rem;
  }
}

.guide-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 600px;
  justify-self: center;
}

.guide-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  height: auto;
  min-height: 200px;
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.guide-featured {
  transform: scale(1.02);
}

.guide-featured:hover {
  transform: translateY(-5px) scale(1.02);
}

.guide-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.guide-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.guide-info {
  flex: 1;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.guide-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.guide-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-social svg {
  width: 16px;
  height: 16px;
}

.guide-role {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.guide-languages {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lang-badge {
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide-description {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.guides-cta {
  text-align: center;
}

.guides-cta .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.guides-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

/* Blog Section */
.blog-section {
  background: var(--surface);
  padding: 6rem 0;
}

.blog-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}

.blog-section .section-description {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 600px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--surface-alt);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-date {
  position: relative;
}

.blog-date::after {
  content: '•';
  margin-left: 1rem;
  color: var(--border);
}

.blog-read-time {
  color: var(--muted);
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.blog-author .author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text) !important;
}

.blog-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--accent-dark);
}

/* Blog CTA Button */
.blog-cta {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.btn-blog-see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-blog-see-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-blog-see-more:hover::before {
  left: 100%;
}

.btn-blog-see-more:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-blog-see-more svg {
  transition: transform 0.3s ease;
}

.btn-blog-see-more:hover svg {
  transform: translate(2px, -2px);
}

/* Testimonials Section */
.testimonials-section {
  background: white;
  padding: 5rem 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.testimonials-title-area {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.testimonials-icon {
  color: var(--accent);
  margin-top: 0.5rem;
}

.testimonials-icon svg {
  width: 24px;
  height: 24px;
}

.testimonials-titles {
  flex: 1;
}

.testimonials-main-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.testimonials-subtitle {
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0;
  font-weight: 500;
}

.testimonials-cta {
  flex-shrink: 0;
}

.btn-testimonials {
  background: var(--gradient-accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: var(--shadow-md);
}

.btn-testimonials:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.testimonial-card {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(245, 158, 11, 0.3);
}

.quote-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.quote-icon svg {
  width: 32px;
  height: 32px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: white;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.author-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1e40af;
  font-weight: 700;
  border: none;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.author-country {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
}

/* Community Section */
.community-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 5rem 0;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.community-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.community-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.community-description {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.community-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.community-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.community-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.community-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.community-image:hover img {
  transform: scale(1.05);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
}

.section-subhead {
  max-width: 32rem;
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.hero {
  padding: 0;
  background: #f8fafc;
  height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  margin-bottom: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.brand-logo {
  width: 180px;
  height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.nav-utilities {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.app-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.store-badge {
  border: none;
  background: var(--surface-alt);
  color: var(--text);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.store-badge:hover {
  background: #e2e8f0;
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.5rem 1rem;
}

.nav-search input {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--text);
  min-width: 180px;
  font-size: 0.9rem;
}

.nav-search input:focus {
  outline: none;
}

.search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-left: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease, color 0.2s ease;
  gap: 0.5rem;
}

.btn.primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.35);
}

.btn.primary:hover::before {
  left: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.book-now {
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 0.85rem 1.8rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
}

.book-now span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.book-now:hover span {
  transform: translate(2px, -2px);
}

.shopping-cart-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  text-decoration: none;
}

.shopping-cart-btn:hover {
  transform: translateY(-2px);
}

.shopping-cart-btn svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  fill: none;
  transition: all 0.3s ease;
  stroke-width: 2;
}

.shopping-cart-btn:hover svg {
  transform: scale(1.1);
  stroke: var(--accent-dark);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 8px;
}

.menu-button:hover {
  background: var(--surface-dark);
  border-color: var(--accent);
}

.menu-button span {
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  display: block;
}

.menu-button.active {
  background: white;
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
}

.menu-button.active:hover {
  background: var(--accent);
}

.menu-button.active:hover span {
  background: white;
}

.menu-button.active span {
  background: var(--text);
}

.menu-button.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-button.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

.hero-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  width: 100%;
  max-width: none;
  margin: 0;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Slider - Modern Design */
.hero-slider {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-media {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  min-height: calc(100vh - 100px);
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.25), rgba(17, 24, 39, 0.55));
}

.hero-overlay {
  position: relative;
  color: #ffffff;
  max-width: 800px;
  margin-bottom: 2rem;
  padding-bottom: 8rem;
}

.hero-overlay h1 {
  color: #ffffff;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
}

.hero-overlay h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.2;
}

.hero-overlay p {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Modern Button Style Slider Navigation */
.hero-slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

.slider-dot:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.slider-dot.active {
  background: #fbb23c;
  border-color: #fbb23c;
  transform: scale(1.1);
}

/* Hotel Search Section */
.hotel-search-section {
  padding: 2rem 0;
  background: var(--surface-alt);
}

.hero-search-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr)) 180px;
  gap: 1.2rem;
  align-items: end;
  background: var(--surface);
  padding: 1.8rem 2rem;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  width: min(90%, 1000px);
  margin: 0 auto;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.field-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.field-control {
  position: relative;
}

.field-control select,
.field-control input {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2.8rem 1rem 2.8rem;
  font: inherit;
  font-weight: 500;
  color: var(--text);
  appearance: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
}

.field-control select:focus,
.field-control input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.field-control select:hover,
.field-control input:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Custom Select Dropdown Styling */
.custom-select {
  position: relative;
  width: 100%;
}

.select-trigger {
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2.8rem 1rem 2.8rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select-trigger:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.select-trigger.active {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12), 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.select-trigger.active .field-caret {
  color: var(--accent);
  transform: rotate(180deg) scale(1.1);
}

.select-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
}

.select-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.select-option {
  padding: 1rem 1.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.select-option:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent);
}

.select-option.selected {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  font-weight: 600;
}

.field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.field-caret {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  stroke-width: 2;
}

.field-control:hover .field-caret {
  color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.field-control select:focus + .field-caret,
.field-control input:focus + .field-caret {
  color: var(--accent);
  transform: translateY(-50%) rotate(180deg) scale(1.1);
}

.hero-submit {
  border: none;
  border-radius: 16px;
  background: var(--gradient-accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  padding: 1rem 1.6rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xl);
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.hero-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.hero-submit:hover::before {
  width: 300px;
  height: 300px;
}

.card-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.destination-card {
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
}

.destination-card img {
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 1.6rem;
}

.price {
  font-weight: 500;
  color: var(--muted);
  margin: 0.6rem 0 1.1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.card-tags li {
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.hotel-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hotel-card {
  background: var(--surface);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.13);
}

.hotel-card img {
  height: 160px;
  object-fit: cover;
}

.hotel-info {
  padding: 1.4rem;
}

.hotel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.rating {
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.copy p {
  margin: 1rem 0 2rem;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-group.center {
  justify-content: center;
}

.btn.ghost {
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
}

.btn.outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.outline:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  border-color: var(--accent);
}

.btn.small {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.feature-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-image {
  position: relative;
}

.feature-image img {
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.feature-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.75) 100%);
  padding: 1.6rem;
  color: #ffffff;
}

.feature-overlay h3 {
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: #1e40af;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.quote {
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  margin: 0;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.author .name {
  font-weight: 600;
  margin: 0 0 0.3rem;
}

.author .role {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bubble-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}

.bubble {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  border: 6px solid #ffffff;
}

.footer-cta {
  background: var(--gradient-primary);
  color: #e0e7ff;
  padding: 4rem 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-message h2 {
  color: #ffffff;
  margin: 0.4rem 0 1.6rem;
}

.footer-message .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
  margin: 0.3rem 0;
  font-weight: 500;
}

.footer-contact a {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.8rem;
}

.footer-bottom .logo {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-weight: 500;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* Simple Footer Style */
.footer {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 0 2rem;
  position: relative;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links li {
  margin: 0;
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer .footer-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.footer .social-icons {
  display: flex;
  gap: 1rem;
}

.footer .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer .copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0 0;
}

/* Mobile Menu Button */
.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-search-panel {
    width: min(95%, 1200px);
  }
}


/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {


  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 0;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .nav-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
  }
  
  .menu-button {
    display: flex;
  }

  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  
  .nav-search {
    display: none;
  }
  
  .nav-utilities {
    display: flex;
    gap: 0.8rem;
  }

  .nav-utilities .book-now,
  .nav-utilities .shopping-cart-btn {
    display: none;
  }

  .menu-button {
    display: flex;
    margin-left: auto;
  }

  .navbar {
    gap: 1.5rem;
    padding: 0.9rem 1.5rem;
  }

  .brand-logo {
    width: 150px;
    height: 50px;
  }

  .hero-search-panel {
    grid-template-columns: repeat(3, minmax(200px, 1fr)) 180px;
  }

  .hero-submit {
    width: auto;
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }

  .region-card {
    height: 250px;
  }

  .region-overlay {
    padding: 1.3rem;
  }

  .region-name {
    font-size: 1.3rem;
  }

  .region-description {
    font-size: 0.88rem;
  }

  .region-card:hover .region-description {
    max-height: 80px;
  }

  .region-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }

  .regions-cta .btn {
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
  }

  .budget-tiers {
    gap: 2.5rem;
  }

  .tier-section {
    gap: 1.2rem;
  }

  .tier-header {
    gap: 1.2rem;
  }

  .tier-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .tier-title {
    font-size: 1.25rem;
  }

  .tier-view-all {
    font-size: 0.9rem;
  }

  .tier-tours {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
  }

  .tour-mini-card img {
    height: 160px;
  }

  .tour-mini-info {
    padding: 1rem;
  }

  .tour-mini-info h4 {
    font-size: 1rem;
  }

  .tour-mini-info p {
    font-size: 0.85rem;
  }

  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .transport-card {
    padding: 2.5rem 1.5rem;
  }

  .transport-featured {
    transform: scale(1);
  }

  .transport-featured:hover {
    transform: translateY(-10px) scale(1);
  }

  .transport-icon {
    width: 70px;
    height: 70px;
  }

  .transport-icon svg {
    width: 40px;
    height: 40px;
  }

  .transport-name {
    font-size: 1.4rem;
  }

  .transport-desc {
    font-size: 0.95rem;
  }

  .transport-btn {
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .partner-logo {
    padding: 1.5rem;
    min-height: 100px;
  }

  .partners-note {
    font-size: 0.95rem;
  }

  .partners-cta .btn {
    font-size: 1.05rem;
    padding: 0.9rem 2.2rem;
  }

  /* Guides Section Tablet */
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .guide-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
  }

  .guide-card {
    padding: 1.8rem;
    min-height: 180px;
  }

  .guide-photo {
    width: 100px;
    height: 100px;
  }

  .guide-name {
    font-size: 1.2rem;
  }

  .guide-description {
    font-size: 0.9rem;
  }

  /* Testimonials Section Tablet */
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .testimonials-main-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    justify-self: center;
  }

  .testimonial-card {
    padding: 1.8rem;
  }

  /* Community Section Tablet */
  .community-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .community-title {
    font-size: 2.5rem;
  }

  .community-stats {
    justify-content: center;
    gap: 2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .community-cta {
    justify-content: center;
  }

  .community-image img {
    height: 350px;
  }
}

/* Mobile (576px - 767px) */

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-bottom: 0;
  }

  .navbar {
    gap: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .brand-logo {
    width: 150px;
    height: 50px;
  }

  .hero-media {
    padding: 1.5rem;
  }
  
  .hero-overlay h2 {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-search-panel {
    padding: 1.4rem;
    gap: 1.2rem;
    grid-template-columns: repeat(2, 1fr);
    width: min(95%, 600px);
  }

  /* Blog Section Tablet */
  .blog-section {
    padding: 5rem 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .blog-section .section-header {
    margin-bottom: 3.5rem;
  }

  .field-control select,
  .field-control input {
    padding: 1rem 2.8rem;
    font-size: 1rem;
  }

  .hero-submit {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }

  .bubble {
    width: 88px;
    height: 88px;
  }

  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .hotel-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
  }

  .section-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tour-card {
    flex: 0 0 300px;
    min-width: 300px;
  }

  .tour-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .who-mini-stats {
    gap: 1rem;
  }

  .mini-stat {
    padding: 0.6rem 1.2rem;
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .region-image {
    height: 200px;
  }
}

/* Small Mobile (320px - 559px) */
@media (max-width: 560px) {
  .container {
    width: min(95%, 100%);
  }

  .hero-frame {
    border-radius: 0;
  }
  
  .hero-visual {
    padding: 0;
  }

  .navbar {
    gap: 0.8rem;
    padding: 0.7rem 1rem;
  }

  .brand-logo {
    width: 130px;
    height: 45px;
  }

  .hero-overlay h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  
  .hero-overlay h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-media {
    padding: 1rem;
  }

  /* Modern Button Style Mobile */
  .hero-slider {
    border-radius: 0 0 16px 16px;
  }

  .hero-slider-dots {
    bottom: 2rem;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
  }

  .slider-dot {
    width: 12px;
    height: 12px;
  }

  .slider-dot:hover {
    transform: scale(1.05);
  }

  .slider-dot.active {
    transform: scale(1.05);
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.8rem;
    width: min(98%, 400px);
  }

  /* Blog Section Mobile */
  .blog-section {
    padding: 4rem 0;
  }

  .blog-section .section-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    border-radius: 12px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 1.2rem;
  }

  .blog-title {
    font-size: 1.2rem;
  }

  .blog-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  /* Blog CTA Mobile */
  .blog-cta {
    margin-top: 3rem;
    padding-top: 1.5rem;
  }

  .btn-blog-see-more {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    gap: 0.6rem;
  }

  .btn-blog-see-more svg {
    width: 18px;
    height: 18px;
  }

  .field-control select,
  .field-control input {
    padding: 0.8rem 2.4rem;
    font-size: 0.9rem;
  }

  .hero-submit {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }

  .field-label {
    font-size: 0.8rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hotel-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .bubble {
    width: 70px;
    height: 70px;
  }

  .tour-card {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .tour-image {
    height: 220px;
  }

  .section-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .search-bar {
    min-width: auto;
    width: 100%;
  }

  .tour-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tour-description {
    max-width: 100%;
  }

  .who-paragraph {
    font-size: 1rem;
    text-align: left;
  }

  .who-mini-stats {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .mini-stat {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .mini-stat-icon {
    font-size: 1rem;
  }

  .mini-stat-text {
    font-size: 0.85rem;
  }

  .btn-who-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .regions-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .region-card {
    height: 220px;
  }

  .region-overlay {
    padding: 1rem;
  }

  .region-name {
    font-size: 1.2rem;
  }

  .region-description {
    font-size: 0.85rem;
  }

  .region-card:hover .region-description {
    max-height: 70px;
  }

  .region-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .regions-cta .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }

  .budget-tiers {
    gap: 2rem;
  }

  .tier-section {
    gap: 1rem;
  }

  .tier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .tier-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .tier-title {
    font-size: 1.15rem;
  }

  .tier-view-all {
    font-size: 0.9rem;
  }

  .tier-tours {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tour-mini-card img {
    height: 200px;
  }

  .tour-mini-info {
    padding: 1rem;
  }

  .tour-mini-info h4 {
    font-size: 1.05rem;
  }

  .tour-mini-info p {
    font-size: 0.88rem;
  }

  .transport-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .transport-card {
    padding: 2.5rem 1.5rem;
  }

  .transport-featured {
    transform: scale(1);
  }

  .transport-featured:hover {
    transform: translateY(-10px) scale(1);
  }

  .transport-icon {
    width: 70px;
    height: 70px;
  }

  .transport-icon svg {
    width: 40px;
    height: 40px;
  }

  .transport-name {
    font-size: 1.4rem;
  }

  .transport-desc {
    font-size: 0.95rem;
  }

  .transport-btn {
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
    width: 100%;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .partner-logo {
    padding: 1.5rem;
    min-height: 100px;
  }

  .partners-note {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .partners-cta .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    width: 100%;
  }

  /* Guides Section Mobile */
  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guide-card {
    padding: 1.5rem;
    flex-direction: row;
    gap: 1rem;
    min-height: 160px;
  }

  .guide-photo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .guide-photo img {
    width: 100%;
    height: 100%;
  }

  .guide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .guide-name {
    font-size: 1.2rem;
  }

  .guide-social {
    font-size: 0.8rem;
  }

  .guide-role {
    font-size: 0.9rem;
  }

  .guide-description {
    font-size: 0.9rem;
  }

  .guides-cta .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    width: 100%;
  }

  /* Testimonials Section Mobile */
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .testimonials-title-area {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonials-main-title {
    font-size: 1.8rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
  }

  .btn-testimonials {
    width: 100%;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .avatar-placeholder {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-country {
    font-size: 0.85rem;
  }

  /* Community Section Mobile */
  .community-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .community-title {
    font-size: 2rem;
  }

  .community-subtitle {
    font-size: 1.1rem;
  }

  .community-description {
    font-size: 1rem;
  }

  .community-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .community-cta {
    justify-content: center;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .community-image img {
    height: 300px;
  }
}

/* ===============================================
   ABOUT PAGE STYLES
   =============================================== */

/* About Hero Section */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero-visual {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.65) 100%);
  display: flex;
  align-items: center;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  padding: 2rem 0;
}

.about-hero-content .section-eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}

.about-hero-content h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* About Story Section */
.about-story {
  background: var(--surface-alt);
  padding: 6rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-text .section-eyebrow {
  margin-bottom: 1rem;
}

.about-story-text h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.about-story-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-story-image:hover img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.badge-text {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
}

/* Mission & Vision Section */
.mission-vision-section {
  background: var(--surface);
  padding: 5rem 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-vision-card {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.mv-icon svg {
  color: var(--accent);
  width: 48px;
  height: 48px;
}

.mission-vision-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.mission-vision-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Values Section */
.values-section {
  background: var(--surface-alt);
  padding: 6rem 0;
}

.values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.values-header .section-eyebrow {
  margin-bottom: 1rem;
}

.values-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.values-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;                                          
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.value-icon svg {
  color: var(--accent);
  width: 40px;
  height: 40px;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Statistics Section */
.stats-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-content {
  position: relative;
  z-index: 1;
}

.stats-content h2 {
  color: white;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-xl);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
}

.stat-icon svg {
  color: white;
  width: 36px;
  height: 36px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Team Section */
.team-section {
  background: var(--surface);
  padding: 6rem 0;
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.team-header .section-eyebrow {
  margin-bottom: 1rem;
}

.team-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.team-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  text-align: center;
  padding: 1.5rem;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  position: relative;
  overflow: hidden;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid var(--border-light);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.team-card:hover .team-photo img {
  transform: none;
}

.team-info {
  padding: 0;
}

.team-name {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.team-role {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}


/* Why Choose Us Section */
.why-choose-section {
  background: var(--surface-alt);
  padding: 6rem 0;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-choose-text .section-eyebrow {
  margin-bottom: 1rem;
}

.why-choose-text h2 {
  color: var(--primary);
  margin-bottom: 2.5rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-feature-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.why-feature-icon svg {
  color: var(--accent);
  width: 28px;
  height: 28px;
}

.why-feature h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.why-feature p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.why-choose-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.why-choose-visual img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.why-choose-visual:hover img {
  transform: scale(1.05);
}

/* About CTA Section */
.about-cta-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===============================================
   RESPONSIVE STYLES FOR ABOUT PAGE
   =============================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .about-hero-visual {
    height: 60vh;
    min-height: 450px;
  }

  .about-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-story-image img {
    height: 400px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-choose-visual img {
    height: 450px;
  }
}

/* Mobile (320px - 767px) */
@media (max-width: 768px) {
  .about-hero-visual {
    height: 50vh;
    min-height: 400px;
  }

  .about-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-story {
    padding: 4rem 0;
  }

  .about-story-text p {
    font-size: 1rem;
  }

  .about-story-image img {
    height: 300px;
  }

  .story-badge {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
  }

  .badge-number {
    font-size: 2rem;
  }

  .badge-text {
    font-size: 0.85rem;
  }

  .mission-vision-section {
    padding: 4rem 0;
  }

  .mission-vision-card {
    padding: 2rem;
  }

  .mv-icon {
    width: 70px;
    height: 70px;
  }

  .mv-icon svg {
    width: 40px;
    height: 40px;
  }

  .mission-vision-card h3 {
    font-size: 1.5rem;
  }

  .mission-vision-card p {
    font-size: 1rem;
  }

  .values-section {
    padding: 4rem 0;
  }

  .values-header {
    margin-bottom: 3rem;
  }

  .values-subtitle {
    font-size: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon svg {
    width: 32px;
    height: 32px;
  }

  .value-card h3 {
    font-size: 1.3rem;
  }

  .stats-section {
    padding: 4rem 0;
  }

  .stats-content h2 {
    margin-bottom: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 2rem 1.5rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon svg {
    width: 28px;
    height: 28px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .team-section {
    padding: 4rem 0;
  }

  .team-header {
    margin-bottom: 3rem;
  }

  .team-subtitle {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-card {
    padding: 1.25rem;
  }

  .team-photo {
    height: 80px;
    width: 80px;
  }

  .team-info {
    padding: 0;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-role {
    font-size: 0.85rem;
  }

  .team-bio {
    font-size: 0.8rem;
  }

  .why-choose-section {
    padding: 4rem 0;
  }

  .why-choose-content {
    gap: 2.5rem;
  }

  .why-features {
    gap: 1.5rem;
  }

  .why-feature {
    gap: 1rem;
  }

  .why-feature-icon {
    width: 50px;
    height: 50px;
  }

  .why-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .why-feature h3 {
    font-size: 1.2rem;
  }

  .why-feature p {
    font-size: 0.95rem;
  }

  .why-choose-visual img {
    height: 350px;
  }

  .about-cta-section {
    padding: 4rem 0;
  }

  .about-cta-content p {
    font-size: 1.05rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===============================================
   TOURS PAGE STYLES
   =============================================== */

/* Tours Hero Section */
.tours-hero {
  position: relative;
  overflow: hidden;
}

.tours-hero-visual {
  position: relative;
  height: 60vh;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.tours-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.70) 100%);
  display: flex;
  align-items: center;
}

.tours-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
}

.tours-hero-content .section-eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}

.tours-hero-content h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.tours-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Filters Section */
.tours-filters-section {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 73px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tours-filters {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 1rem;
}

.filter-group {
  position: relative;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--surface-alt);
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  cursor: pointer;
}

.filter-label:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.1);
}

.filter-label svg {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.filter-input,
.filter-select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  outline: none;
  cursor: pointer;
}

.filter-input::placeholder {
  color: var(--text-light);
}

.filter-select {
  appearance: none;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 14px;
}

/* All Tours Section */
.all-tours-section {
  background: var(--surface-alt);
  padding: 5rem 0;
}

.tours-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.count-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0 0.8rem;
}

.tours-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tour-card-full {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.tour-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.tour-card-full .tour-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card-full .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tour-card-full:hover .tour-image img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.tour-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-header {
  margin-bottom: 1rem;
}

.tour-title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.tour-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.tour-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.tour-detail-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.tour-book-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.load-more-btn {
  min-width: 200px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Regions Quick Links */
.tours-page .regions-section {
  background: white;
}

.regions-subtitle {
  text-align: left;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 1rem 0 3rem 0;
  max-width: 600px;
}

/* Tours CTA Section */
.tours-cta-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 5rem 0;
  overflow: hidden;
}

.tours-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.tours-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tours-cta-content h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.tours-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Responsive Styles for Tours Page */
@media (max-width: 991px) {
  .tours-filters {
    grid-template-columns: repeat(2, 1fr);
  }

  .tours-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .tours-hero-visual {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .tours-filters-section {
    top: 59px;
  }

  .tours-filters {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .filter-label {
    padding: 0.75rem 1rem;
  }

  .tours-hero-visual {
    height: 45vh;
    min-height: 350px;
  }

  .tours-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .tours-hero-subtitle {
    font-size: 1rem;
  }

  .all-tours-section {
    padding: 3rem 0;
  }

  .tours-main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tour-card-full .tour-image {
    height: 220px;
  }

  .tour-content {
    padding: 1.5rem;
  }

  .tour-title {
    font-size: 1.2rem;
  }

  .tour-details {
    gap: 0.8rem;
  }

  .tour-detail-item {
    font-size: 0.85rem;
  }

  .load-more-section {
    margin-top: 2rem;
  }

  .load-more-btn {
    width: 100%;
  }

  .regions-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .regions-grid {
    grid-template-columns: 1fr;
  }

  .tours-cta-section {
    padding: 4rem 0;
  }

  .tours-cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===============================================
   TRANSPORT PAGE STYLES
   =============================================== */

/* Transport Hero Section */
.transport-hero {
  position: relative;
  overflow: hidden;
}

.transport-hero-visual {
  position: relative;
  height: 55vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.transport-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.70) 100%);
  display: flex;
  align-items: center;
}

.transport-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}

.transport-hero-content .section-eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}

.transport-hero-content h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.transport-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Transport Booking Section */
.transport-booking-section {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.transport-booking-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 200px;
  gap: 1.2rem;
  align-items: end;
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.booking-control:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.booking-control svg {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.booking-control input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  outline: none;
  width: 100%;
}

.booking-control input::placeholder {
  color: var(--text-light);
}

.booking-submit {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* Vehicle Fleet Section */
.vehicle-fleet-section {
  background: var(--surface-alt);
  padding: 5rem 0;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vehicle-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.vehicle-featured {
  border-color: var(--accent);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.vehicle-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.vehicle-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.vehicle-name {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 700;
  margin: 0;
}

.vehicle-price {
  text-align: right;
  white-space: nowrap;
}

.price-amount {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.price-unit {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

.vehicle-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.vehicle-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.vehicle-book-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Transport Features Section */
.transport-features-section {
  background: white;
  padding: 5rem 0;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.features-header .section-eyebrow {
  margin-bottom: 1rem;
}

.features-header h2 {
  color: var(--primary);
  margin-bottom: 0;
}

.transport-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: var(--surface-alt);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.feature-box-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.feature-box:hover .feature-box-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-box-icon svg {
  color: white;
  width: 40px;
  height: 40px;
}

.feature-box h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Transport CTA Section */
.transport-cta-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 5rem 0;
  overflow: hidden;
}

.transport-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.transport-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.transport-cta-content h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.transport-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Responsive Styles for Transport Page */
@media (max-width: 991px) {
  .transport-booking-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-submit {
    grid-column: 1 / -1;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .transport-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

@media (max-width: 768px) {
  .transport-hero-visual {
    height: 45vh;
    min-height: 350px;
  }

  .transport-hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .transport-hero-subtitle {
    font-size: 1rem;
  }

  .transport-booking-section {
    padding: 1.5rem 0;
  }

  .transport-booking-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .booking-submit {
    grid-column: 1;
  }

  .vehicle-fleet-section {
    padding: 3rem 0;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .vehicle-image {
    height: 200px;
  }

  .vehicle-content {
    padding: 1.5rem;
  }

  .vehicle-name {
    font-size: 1.3rem;
  }

  .price-amount {
    font-size: 1.4rem;
  }

  .vehicle-features {
    gap: 0.6rem;
  }

  .transport-features-section {
    padding: 3rem 0;
  }

  .features-header {
    margin-bottom: 3rem;
  }

  .transport-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .feature-box-icon {
    width: 60px;
    height: 60px;
  }

  .feature-box-icon svg {
    width: 32px;
    height: 32px;
  }

  .feature-box h3 {
    font-size: 1.2rem;
  }

  .transport-cta-section {
    padding: 4rem 0;
  }

  .transport-cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===============================================
   HOTELS PAGE STYLES
   =============================================== */

/* Hotels Hero Section */
.hotels-hero {
  position: relative;
  overflow: hidden;
}

.hotels-hero-visual {
  position: relative;
  height: 55vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hotels-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.70) 100%);
  display: flex;
  align-items: center;
}

.hotels-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}

.hotels-hero-content .section-eyebrow {
  color: var(--accent);
  margin-bottom: 1rem;
}

.hotels-hero-content h1 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hotels-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Hotel Search Section */
.hotel-search-section {
  background: white;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.hotel-search-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 200px;
  gap: 1.2rem;
  align-items: end;
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.search-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.search-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.search-control:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.search-control svg:not(.field-caret) {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.search-control input,
.search-control select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.search-control input::placeholder {
  color: var(--text-light);
}

.search-submit {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

/* Featured Hotels Section */
.featured-hotels-section {
  background: var(--surface-alt);
  padding: 5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.section-header-main {
  flex: 1;
}

.section-header-main .section-eyebrow {
  margin-bottom: 0.8rem;
}

.section-header-main h2 {
  color: var(--primary);
  margin: 0;
}

.section-header-filters {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-muted);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-chip.active {
  background: var(--gradient-accent);
  border-color: var(--accent);
  color: white;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Hotel Card */
.hotel-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.hotel-featured {
  border-color: var(--accent);
}

.hotel-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.hotel-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

.hotel-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.hotel-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.hotel-location svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hotel-name {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 700;
  margin: 0 0 0.8rem 0;
}

.hotel-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface-alt);
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.amenity-tag svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.rating-score {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hotel-price {
  text-align: right;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  white-space: nowrap;
}

.price-from {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hotel-book-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hotel Partners Section */
.hotel-partners-section {
  background: white;
  padding: 5rem 0;
}

.partners-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.partners-header .section-eyebrow {
  margin-bottom: 1rem;
}

.partners-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.partners-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.partners-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 3rem;
}

/* Hotel Amenities Section */
.hotel-amenities-section {
  background: var(--surface-alt);
  padding: 5rem 0;
}

.amenities-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.amenities-header .section-eyebrow {
  margin-bottom: 1rem;
}

.amenities-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.amenities-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.amenity-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1) rotate(5deg);
}

.amenity-icon svg {
  color: white;
}

.amenity-card h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.amenity-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Hotels CTA Section */
.hotels-cta-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 5rem 0;
  overflow: hidden;
}

.hotels-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hotels-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hotels-cta-content h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.hotels-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Responsive Design - Hotels Page */
@media (max-width: 1024px) {
  .hotel-search-panel {
    grid-template-columns: 1fr 1fr;
  }

  .search-submit {
    grid-column: span 2;
  }

  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hotels-hero-visual {
    height: 45vh;
    min-height: 350px;
  }

  .hotel-search-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .search-submit {
    grid-column: span 1;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hotel-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotel-price {
    width: 100%;
    justify-content: space-between;
  }

  .section-header-filters {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===============================================
   TOUR DETAIL PAGE STYLES
   =============================================== */

/* Tour Detail Hero Section */
.tour-detail-hero {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.tour-hero-image {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
}

.tour-hero-content {
  color: #ffffff;
}

.tour-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.tour-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tour-breadcrumb a:hover {
  opacity: 0.7;
}

.tour-breadcrumb span {
  opacity: 0.6;
}

.tour-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: #ffffff;
}

.tour-hero-subtitle {
  font-size: 1.25rem;
  margin: 0 0 2rem 0;
  opacity: 0.95;
  max-width: 700px;
}

.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.tour-meta-item svg {
  opacity: 0.9;
}

/* Tour Detail Main Content */
.tour-detail-main {
  padding: 4rem 0;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

.tour-detail-content {
  min-width: 0;
}

.tour-section {
  margin-bottom: 3rem;
}

.tour-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--surface-dark);
}

.tour-section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Highlights Grid */
.tour-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--surface-dark);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.highlight-icon {
  flex-shrink: 0;
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

.highlight-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Itinerary Timeline */
.itinerary-timeline {
  position: relative;
  padding-left: 2rem;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--surface-dark);
}

.itinerary-day {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 3px solid var(--surface-alt);
  border-radius: 50%;
  z-index: 1;
  transform: translateX(calc(-245%));
}

.itinerary-day-header {
  margin-bottom: 1rem;
}

.day-number {
  display: inline-block;
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.day-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 0 0;
}

.itinerary-day-content {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--surface-dark);
}

.itinerary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itinerary-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.itinerary-list li:last-child {
  margin-bottom: 0;
}

.itinerary-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Included/Excluded Section */
.included-excluded-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.list-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.list-subtitle svg {
  color: var(--accent);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
}

.checklist.excluded li::before {
  content: '✗';
  color: #ef4444;
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--surface-dark);
}

.info-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Booking Card */
.tour-detail-sidebar {
  position: relative;
}

.booking-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--surface-dark);
  margin-bottom: 2rem;
}

.booking-price {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--surface-dark);
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.price-amount {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin: 0.5rem 0;
}

.price-per {
  font-size: 1rem;
  color: var(--text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--surface-dark);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-alt);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.price-breakdown {
  padding: 1rem 0;
  border-top: 1px solid var(--surface-dark);
  border-bottom: 1px solid var(--surface-dark);
  margin: 0.5rem 0;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.breakdown-row:last-child {
  margin-bottom: 0;
}

.breakdown-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--surface-dark);
}

.btn-book {
  width: 100%;
  background: var(--gradient-accent);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-inquiry {
  width: 100%;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-inquiry:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.booking-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-dark);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.booking-feature svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  border-radius: 20px;
  padding: 2rem;
  color: #ffffff;
}

.contact-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.contact-card-text {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
  color: #ffffff;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.contact-method svg {
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .tour-detail-sidebar {
    order: -1;
  }

  .booking-card {
    position: relative;
    top: 0;
  }

  .tour-highlights-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .included-excluded-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tour-hero-title {
    font-size: 2.5rem;
  }

  .tour-hero-subtitle {
    font-size: 1.1rem;
  }

  .tour-hero-meta {
    gap: 1rem;
  }

  .tour-hero-image {
    height: 400px;
  }

  .tour-section-title {
    font-size: 1.5rem;
  }

  .itinerary-timeline {
    padding-left: 1rem;
  }

  .itinerary-timeline::before {
    left: -0.75rem;
  }

  .itinerary-day {
    padding-left: 1.5rem;
  }

  .itinerary-day::before {
    left: -0.75rem;
    width: 12px;
    height: 12px;
    transform: translateX(calc(-180%));
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .tour-hero-title {
    font-size: 2rem;
  }

  .tour-hero-subtitle {
    font-size: 1rem;
  }

  .tour-hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .tour-hero-image {
    height: 300px;
  }

  .tour-detail-main {
    padding: 2rem 0;
  }

  .booking-card {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 2rem;
  }
}

/* ===============================================
   REGION PAGE STYLES
   =============================================== */

/* Region Hero Section */
.region-hero {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.region-hero-image {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.region-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0;
}

.region-hero-content {
  color: #ffffff;
}

.region-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.region-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.region-breadcrumb a:hover {
  opacity: 0.7;
}

.region-breadcrumb span {
  opacity: 0.6;
}

.region-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.region-hero-subtitle {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  opacity: 0.95;
  font-weight: 500;
}

.region-hero-description {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
  max-width: 700px;
  line-height: 1.6;
}

/* Region Main Content */
.region-main {
  padding: 4rem 0;
}

.region-content {
  max-width: 1200px;
  margin: 0 auto;
}

.region-section {
  margin-bottom: 4rem;
}

.region-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent);
  text-align: center;
}

.region-text-content {
  max-width: 900px;
  margin: 0 auto;
}

.region-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  z-index: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem 1.5rem 1.5rem;
  color: #ffffff;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  padding-bottom: 2rem;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.gallery-description {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
  color: #ffffff;
}

/* Make first gallery item larger */
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

/* Attractions Grid (legacy - keeping for compatibility) */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.attraction-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--surface-dark);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.attraction-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05);
}

.attraction-content {
  padding: 1.5rem;
}

.attraction-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem 0;
}

.attraction-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.attraction-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--accent);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Weather Info */
.weather-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.season-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--surface-dark);
  text-align: center;
  transition: all 0.3s ease;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.season-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.season-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem 0;
}

.season-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Experiences Grid */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.experience-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.experience-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
  transform: scale(1.1);
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.6) 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.experience-card:hover .experience-overlay {
  opacity: 0.9;
}

.experience-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.experience-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.experience-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Region Tour Grid */
.region-tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Tours Grid (legacy) */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tour-card-compact {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--surface-dark);
  transition: all 0.3s ease;
}

.tour-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tour-image-compact {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tour-image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card-compact:hover .tour-image-compact img {
  transform: scale(1.05);
}

.tour-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(245, 158, 11, 0.9);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tour-info-compact {
  padding: 1.5rem;
}

.tour-title-compact {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.tour-description-compact {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.tour-price-compact {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem 0;
}

.tour-link-compact {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tour-link-compact:hover {
  color: var(--primary);
}

/* Responsive Design for Region Page */
@media (max-width: 768px) {
  .region-hero-title {
    font-size: 3rem;
  }

  .region-hero-subtitle {
    font-size: 1.2rem;
  }

  .region-hero-description {
    font-size: 1rem;
  }

  .region-hero-image {
    height: 400px;
  }

  .region-section-title {
    font-size: 2rem;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .weather-info {
    grid-template-columns: 1fr;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .experience-image {
    height: 200px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .region-tour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .region-main {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .region-hero-title {
    font-size: 2.5rem;
  }

  .region-hero-subtitle {
    font-size: 1.1rem;
  }

  .region-hero-image {
    height: 300px;
  }

  .region-section-title {
    font-size: 1.5rem;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-item {
    height: 250px;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
    height: 250px;
  }

  .region-tour-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .attraction-card,
  .season-card,
  .experience-item,
  .tour-card-compact {
    margin: 0 1rem;
  }
}
