@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #FF8C00;
  --secondary: #1AAD64;
  --bg-main: #F9FAFB;
  --bg-white: #FFFFFF;
  --text-main: #111827;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;

  --font-main: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem 1.5rem 1.5rem;
}

.section {
  padding: 1vw;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 25px;

}

.see-all {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Shapes & Shadows */
.squircle {
  border-radius: 16px;
}

.pill-ui {
  border-radius: 50px;
}

.pill-btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.shadow-lg {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-hover {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

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

.btn-white {
  background-color: white;
  color: var(--text-main);
  font-weight: 600;
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  padding: 0.2rem 1.2rem;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
}

.w-100 {
  width: 100%;
}

/* Header Navbar - Translucent */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Hamburger Menu Button - hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay & panel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1001;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-panel.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s;
}

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

.mobile-nav-search {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
}

.mobile-nav-search input {
  flex: 1;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.mobile-nav-search input:focus {
  border-color: var(--primary);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.logo-icon {
  vertical-align: middle;
  margin-right: 4px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text-main);
  transition: color 0.2s;
}

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

/* Nav Search Merging styling */
.nav-search-wrapper {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-search-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-search-pill {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background: white;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
}

.nav-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  padding-right: 0.5rem;
  width: 200px;
  color: var(--text-main);
}

.nav-search-input::placeholder {
  color: var(--text-muted);
}

.nav-search-btn {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.nav-search-btn:hover {
  background-color: #E67A00;
}

/* ═══════════════════════════════════════
   Search Autocomplete Dropdown
   ═══════════════════════════════════════ */
.search-autocomplete-wrapper {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  max-height: 340px;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}

.search-dropdown::-webkit-scrollbar {
  width: 6px;
}

.search-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.search-dropdown::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 3px;
}

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

.search-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.search-dropdown-item:hover,
.search-dropdown-item.active {
  background-color: rgba(255, 140, 0, 0.06);
}

.search-dropdown-item:active {
  background-color: rgba(255, 140, 0, 0.12);
  transform: scale(0.99);
}

.search-dropdown-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.search-dropdown-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-dropdown-icon--placeholder {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 140, 0, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.search-dropdown-icon--placeholder svg {
  color: var(--primary);
}

.search-dropdown-info {
  flex: 1;
  min-width: 0;
}

.search-dropdown-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.search-dropdown-title mark {
  background: rgba(255, 140, 0, 0.15);
  color: var(--primary);
  border-radius: 2px;
  padding: 0 1px;
  font-weight: 600;
}

.search-dropdown-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.search-dropdown-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  background: rgba(255, 140, 0, 0.1);
  color: var(--primary);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.search-dropdown-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.search-dropdown-item:hover .search-dropdown-arrow {
  opacity: 1;
  transform: translateX(0);
}

.search-dropdown-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.search-dropdown-empty svg {
  display: block;
  margin: 0 auto 8px;
  opacity: 0.4;
}

.search-dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 4px 8px;
}

/* Header search dropdown positioning */
.nav-search-pill {
  position: relative;
}

.nav-search-pill .search-dropdown {
  min-width: 320px;
  right: 0;
  left: auto;
}

/* Hero search dropdown positioning */
.hero-search {
  position: relative;
}

.hero-search .search-dropdown {
  color: var(--text-main);
  text-align: left;
}

/* Tour finder search dropdown positioning */
.form-group {
  position: relative;
}

.form-group .search-dropdown {
  top: calc(100% + 4px);
  left: -8px;
  right: -8px;
  min-width: 280px;
}

/* Mobile search dropdown positioning */
.mobile-nav-search {
  position: relative;
  flex-wrap: wrap;
}

.mobile-nav-search .search-dropdown {
  top: calc(100% + 4px);
  left: 0;
  right: 56px;
}

/* Keyboard nav focus */
.search-dropdown-item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-search-pill .search-dropdown {
    min-width: unset;
    left: 0;
    right: 0;
  }

  .search-dropdown {
    max-height: 280px;
    border-radius: 12px;
  }

  .search-dropdown-icon {
    width: 36px;
    height: 36px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  margin-top: 70px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 80%, var(--bg-main) 100%), url('https://www.travelixer.com/images/beach3.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 0 4px #3c3d3f;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 2rem;
  font-weight: 300;
  text-shadow: 0 0 2px #3c3d3f;
}

.hero-search {
  background: white;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  width: 600px;
  max-width: 90%;
  margin: 0 auto;
}

.search-input-group {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 0.75rem;
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-main);
  font-weight: 400;
}

/* Best Tour Finder */
#tour-finder {
  padding-top: 2rem;
  z-index: 10;
}

.tour-finder-wrapper {
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* Minimal translucent border */
}

.finder-header {
  margin-bottom: 1.5rem;
}

.badge-tag {
  background-color: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.finder-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 1.5rem;
}

.border-right {
  border-right: 1px solid var(--border-color);
}

.form-group label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group input,
.form-group select {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 100%;
}

.form-group input[type="date"] {
  padding-left: 0;
}

.form-submit {
  padding-right: 0;
  padding-left: 1rem;
}

/* Updated Carousels & Manual Scroll Navigation */
.carousel-wrapper {
  position: relative;
}

.carousel-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0 2rem 0;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.scroll-btn.prev {
  left: -22px;
}

.scroll-btn.next {
  right: -22px;
}

/* Ensure scroll buttons don't overflow container on small screens */
@media (max-width: 1260px) {
  .scroll-btn.prev {
    left: -20px;
  }

  .scroll-btn.next {
    right: -20px;
  }
}

/* Attraction Card */
.attraction-card {
  width: 300px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.attraction-img-wrap {
  position: relative;
  height: 160px;
}

.attraction-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.attraction-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.attraction-heart:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.attraction-heart.saved {
  color: var(--primary);
}

/* Focus-visible for keyboard navigation */
.attraction-heart:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.scroll-btn:focus-visible,
.hamburger-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.attraction-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.attraction-rating {
  font-size: 0.8rem;
  color: #FACC15;
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.attraction-rating span {
  color: var(--text-muted);
  font-weight: 400;
}

.attraction-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.attraction-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.attraction-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.attraction-price {
  font-weight: 600;
  font-size: 1rem;
}

.attraction-price span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* City Card (Full Image) */
.city-card {
  width: 300px;
  height: 220px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

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

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

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.city-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.city-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* What We Offer Solid Cards */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

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

.offer-card {
  padding: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.offer-icon-wrapper {
  margin-bottom: 1.5rem;
}

.offer-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.offer-card p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 95%;
}

/* Why Trust Us - Vertical Stack & Hover logic */
.trust-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  cursor: default;
}

.outline-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: white;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.trust-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

/* Individual Hover Colors */
.hover-blue:hover h4 {
  color: #3B82F6;
}

.hover-blue:hover .outline-circle {
  border-color: #3B82F6;
  color: #3B82F6;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.hover-green:hover h4 {
  color: #10B981;
}

.hover-green:hover .outline-circle {
  border-color: #10B981;
  color: #10B981;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1);
}

.hover-purple:hover h4 {
  color: #8B5CF6;
}

.hover-purple:hover .outline-circle {
  border-color: #8B5CF6;
  color: #8B5CF6;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(139, 92, 246, 0.1);
}


/* Testimonials */
.testimonial-card-white {
  width: 400px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.test-stars {
  color: #FACC15;
  margin-bottom: 1rem;
}

.test-text {
  font-size: 1rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
}

.test-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.test-info h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.test-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Heatmap Adjustments - Clean map background */
.heatmap-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: transparent;
}

#travel-map {
  width: 100%;
  height: 60vh;
  margin: 0 auto;
  z-index: 1;
}

/* Fix for jsVectorMap tooltips */
.jvm-tooltip {
  z-index: 9999 !important;
  pointer-events: none;
  font-family: var(--font-main) !important;
  background-color: #111827 !important;
  color: #ffffff !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 5rem 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  gap: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 600;
  /* Bolder as requested */
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-desc {
  color: #9CA3AF;
  line-height: 1.6;
  font-size: 0.85rem;
}

.footer-logo-icon {
  vertical-align: text-bottom;
}

.footer-policy-link {
  margin-right: 1.5rem;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #9CA3AF;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9CA3AF;
  font-size: 0.95rem;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background-color 0.2s;
  color: white;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: #9CA3AF;
}

.links-inline a {
  color: #9CA3AF;
  transition: color 0.2s;
}

.links-inline a:hover {
  color: white;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .finder-form {
    grid-template-columns: 1fr 1fr;
  }

  .border-right {
    border-right: none;
  }

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

  .trust-flex {
    flex-direction: column;
  }

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

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

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

  .hero-subtitle br {
    display: none;
  }

  .hero-search {
    width: 100%;
    border-radius: 24px;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .hero-search .search-input-group {
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .hero-search .pill-btn {
    width: 100%;
    text-align: center;
  }

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

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

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

  .nav-center {
    display: none;
  }

  .nav-right .nav-search-wrapper {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  #travel-map {
    height: 300px;
  }

  .offer-card {
    padding: 1.5rem;
  }

  .offer-card h3 {
    font-size: 1.35rem;
  }

  .trust-flex {
    gap: 2rem;
  }

  .testimonial-card-white {
    width: 300px;
    padding: 1.5rem;
  }
}

/* Attraction Page Styles */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.article-page-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 25px;
}

/* Attraction page hero background */
.article-hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  margin-top: 70px;
  /* background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, 0) 100%), var(--hero-bg); */
  background-image: linear-gradient(rgba(0, 0, 0, 0)), var(--hero-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-bottom: 40px;
  /* offsets the fade overlay height, keeps text centered visually */
}

/* Bottom fade overlay — sits on top of the image, fades into page background */
.article-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg-main));
  pointer-events: none;
}

/* Ensure title text renders above the ::after overlay */
.article-hero .hero-content {
  position: relative;
  z-index: 1;
}

.article-title {
  font-size: 3rem;
  font-weight: 600;
  text-shadow: 0px 0px 3px black;
  margin: 10px 10vw;
}





.content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.content-text-no-margin-top {
  margin-top: 0;
}

.content-heading-2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.content-heading-3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

/* Snapshot */
.snapshot-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 2rem;
  margin: 2rem 0;
}

.snapshot-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: 48% 48%;
  column-gap: 2%;

}

.snapshot-card li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.snapshot-card li:last-child {
  margin-bottom: 0;
}

.snapshot-card li strong {
  color: var(--text-main);
  font-weight: 600;
}

.snapshot-icon {
  margin-top: 3px;
  color: var(--primary);
  flex-shrink: 0;
}

/* FAQs */
.faq-accordion details {
  background: white;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  transition: all 0.2s;
}

.faq-accordion summary {
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: '+';
  color: var(--primary);
  font-size: 1.5rem;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-accordion details[open] summary::after {
  content: '−';
}

.faq-accordion p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Map Layout */
.map-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.map-layout iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

@media (max-width: 768px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

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

  .article-page-container {
    padding: 0 20px;
    margin: 30px auto;
  }

  .content-heading-2 {
    font-size: 1.4rem;
  }

  .snapshot-card {
    padding: 1.25rem;
  }

  .snapshot-card ul {
    grid-template-columns: 1fr;
  }

  .snapshot-card li {
    font-size: 0.95rem;
  }
}

/* Responsive Cards for Top 3 Things */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.grid-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.grid-card-number {
  background: rgba(255, 140, 0, 0.1);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.grid-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.grid-card strong {
  display: block;
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Background Image Cards for "Why Visit" */
.bg-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  /* Made taller/vertical */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  padding: 1.5rem;
}

.bg-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.bg-image-card-content {
  position: relative;
  z-index: 2;
}

.bg-image-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.bg-image-card strong {
  display: block;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Horizontal Cards for "Plan Your Visit" */
.horizontal-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2rem 0;
}

.horizontal-card {
  background: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 200px;
}

.horizontal-card-img-wrapper {
  position: relative;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.horizontal-card-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: -1px;
  width: 40px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

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

.horizontal-card-body {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
}

.plan-visit-link {
  transition: color 0.2s ease;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.plan-visit-link:hover {
  color: var(--primary);
}

.horizontal-card-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: var(--text-main);
}

.horizontal-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .horizontal-card {
    flex-direction: column;
    align-items: stretch;
  }

  .horizontal-card-img-wrapper {
    width: 100%;
    height: 180px;
  }

  .horizontal-card-img-wrapper::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    width: 100%;
    height: 40px;
    top: auto;
    bottom: -1px;
  }

  .horizontal-card-body {
    padding: 0.5rem 1.25rem 1.25rem;
  }
}

/* Horizontal Right Image Cards */
.horizontal-card-right {
  background: white;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 200px;
}

.horizontal-card-right .horizontal-card-body {
  padding: 1.5rem 0.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-card-right h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: var(--text-main);
}

.horizontal-card-right p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.horizontal-card-right-img-wrapper {
  position: relative;
  width: 220px;
  height: 200px;
  flex-shrink: 0;
}

.horizontal-card-right-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

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

@media (max-width: 640px) {
  .horizontal-card-right {
    flex-direction: column-reverse;
  }

  .horizontal-card-right-img-wrapper {
    width: 100%;
    height: 180px;
  }

  .horizontal-card-right-img-wrapper::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
    width: 100%;
    height: 40px;
    top: auto;
    bottom: 0;
  }

  .horizontal-card-right .horizontal-card-body {
    padding: 0.5rem 1.25rem 1.25rem;
  }
}

/* Nearby Attractions Carousel */
.nearby-carousel-wrapper {
  position: relative;
  margin: 2rem 0;
}

.nearby-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  -ms-overflow-style: none;
  justify-content: space-evenly;
}

.nearby-carousel-track::-webkit-scrollbar {
  display: none;
}

.nearby-card {
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nearby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nearby-card-img-wrapper {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

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

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

.nearby-card-body {
  padding: 1.25rem;
}

/* Modifier: larger single nearby card (scoped) */
.nearby-card.nearby-card--large {
  min-width: 340px;
  max-width: 360px;
}

.nearby-card.nearby-card--large .nearby-card-img-wrapper {
  height: 240px;
}

@media (max-width: 768px) {
  .nearby-card.nearby-card--large {
    min-width: 100%;
    max-width: 100%;
  }

  .nearby-card.nearby-card--large .nearby-card-img-wrapper {
    height: 200px;
  }
}

.nearby-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.nearby-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Scroll arrows positioned on the nearby carousel */
.nearby-carousel-wrapper .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nearby-carousel-wrapper .scroll-btn.prev {
  left: -18px;
}

.nearby-carousel-wrapper .scroll-btn.next {
  right: -18px;
}

@media (max-width: 768px) {
  .nearby-carousel-wrapper .scroll-btn {
    display: none;
  }

  .nearby-card {
    min-width: 240px;
  }
}

/* About Us Page Layouts */
.about-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* var(--shadow-sm) equivalent */
}

.about-split {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 4rem 0;
}

.about-split.reverse {
  flex-direction: row-reverse;
}

.about-split-content {
  flex: 1;
}

.about-split-content h2 {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.about-split-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-split-img-wrapper {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  height: 450px;
}

.about-split-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-callout {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.about-callout h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.about-callout p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.about-signoff {
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  margin-top: 2rem;
}

.about-footer-text {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {

  .about-split,
  .about-split.reverse {
    flex-direction: column;
    gap: 2rem;
  }

  .about-split-img-wrapper {
    height: 300px;
    width: 100%;
  }

  .about-hero-img {
    height: 250px;
  }
}

/* Ticket Card Component */
.ticket-card {
  display: flex;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

.ticket-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ticket-card-img-wrapper {
  width: 250px;
  position: relative;
  flex-shrink: 0;
}

.ticket-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ticket-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ticket-card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.ticket-rating {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ticket-rating-stars {
  color: var(--primary);
  font-weight: 600;
}

.ticket-card-content h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin: 0 0 1rem 0;
  font-weight: 600;
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticket-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
  line-height: 1.6;
}

.ticket-features li::before {
  content: "•";
  color: var(--text-muted);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.ticket-features strong {
  color: var(--text-main);
  font-weight: 600;
}

.ticket-card-action {
  width: 200px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px dashed var(--border-color);
  flex-shrink: 0;
}

.ticket-price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.ticket-price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.ticket-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.ticket-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .ticket-card {
    flex-wrap: wrap;
  }

  .ticket-card-img-wrapper {
    height: 250px;
  }

  .ticket-card-action {
    width: 100%;
    border-left: none;
    border-top: 1px dashed var(--border-color);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .ticket-btn-wrapper {
    margin-right: 1.5rem;
  }

  .ticket-meta {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .ticket-card {
    flex-direction: column;
  }

  .ticket-card-img-wrapper {
    width: 100%;
    height: 200px;
  }

  .ticket-card-action {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-btn-wrapper {
    margin-right: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .ticket-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ============================================
   Ticket Page Enhancements
   ============================================ */

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Orange CTA Buttons for Ticket Cards */
.ticket-btn-orange {
  background-color: var(--primary);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ticket-btn-orange:hover {
  background-color: #E67A00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.3);
}

.ticket-btn-orange:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 140, 0, 0.2);
}

.ticket-btn-orange:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Breadcrumb Navigation */
.breadcrumb {
  margin-bottom: 0.5rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb ol li:not(:last-child)::after {
  content: '›';
  color: var(--text-muted);
  font-size: 1.1rem;
}

.breadcrumb ol li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb ol li a:hover {
  color: var(--primary);
}

.breadcrumb ol li[aria-current="page"] {
  color: var(--text-main);
  font-weight: 500;
}

/* Ticket page responsive - ensure ticket-card-img-wrapper fills on wrap */
@media (max-width: 900px) {
  .ticket-card-img-wrapper {
    width: 100%;
    height: 220px;
  }

  .ticket-card-content h3 {
    font-size: 1.1rem;
  }

  .ticket-price-value {
    font-size: 1.25rem;
  }
}

/* Ticket Page - Replacing Inline Styles */
.ticket-page-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 25px;
}

.ticket-hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
}

.ticket-subtitle {
  margin-top: 2.5rem;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2rem;
}

.content-text--small {
  font-size: 0.95rem;
  margin-top: 1rem;
}

.content-text--spaced {
  margin-bottom: 2rem;
}

.content-text--italic {
  font-style: italic;
  margin-top: 2rem;
}

.ticket-btn-full {
  width: 100%;
  border-radius: 8px;
}

.ticket-price-note {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--text-muted);
}

.free-cancel-text {
  color: #1AAD64;
}

.footer-policy-spacer {
  margin-right: 1.5rem;
}

.footer-desc-text {
  font-size: 0.85rem;
}

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

@media (max-width: 640px) {
  .ticket-page-container {
    padding: 0 15px;
    margin: 30px auto;
  }

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

  .ticket-subtitle {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}

/* Colosseum Custom Edits */
.reach-accessibility-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .reach-accessibility-container {
    grid-template-columns: 1fr;
  }
}

.horizontal-card {
  display: flex;
  background: white;
  margin-bottom: 1.5rem;
  height: 215px;
  overflow: hidden;
}

.horizontal-card-img-wrapper {
  width: 270px;
  flex-shrink: 0;
  height: 100%;
}

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

.horizontal-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .horizontal-card {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .horizontal-card-img-wrapper {
    width: 100%;
    height: 200px;
  }

  .horizontal-card-body {
    overflow-y: visible;
  }
}

/* ============================================
   Timings Page Styles
   ============================================ */
.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}

.week-day-card {
  background: #fffef3;
  border: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.week-day-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.week-day-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.week-day-time {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

.time-closed {
  color: #DC2626;
  font-weight: 500;
  background: #FEF2F2;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Badge Styling */
.card-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Yearly Calendar View Styling */
.calendar-view {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}

.month-card {
  background: #fffef3;
  border: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.month-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.month-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.month-time {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Vertical Cards Layout */
.vertical-cards-wrapper {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  width: 100%;
}

.vertical-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border-color);
  flex: 1;
  overflow: hidden;
}

.vertical-card-img-wrapper {
  width: 100%;
  height: 200px;
}

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

.vertical-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vertical-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vertical-card-body p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA Banner Split Layout */
.cta-banner {
  display: flex;
  margin: 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
}

.cta-banner-left {
  background: var(--primary);
  color: white;
  padding: 3.5rem 3rem;
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 15px 0 30px rgba(255, 140, 0, 0.5);
}

.cta-banner-left h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-banner-left p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.95;
}

.cta-banner-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.cta-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .calendar-view {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

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

  .calendar-view {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  .vertical-cards-wrapper {
    flex-direction: column;
  }

  .cta-banner {
    flex-direction: column;
  }

  .cta-banner-left {
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.5);
    padding: 3rem 2rem;
  }

  .cta-banner-right {
    padding: 4rem 2rem;
  }
}

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

  .calendar-view {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT US PAGE — Headout-inspired layout
   Design tokens (colors, fonts) inherited from style.css
   ═══════════════════════════════════════════════════════════ */

/* ────────── Shared Label ────────── */
.about-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-section-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════════ */
.about-hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--bg-main);
  overflow: hidden;
}

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

.about-hero-text {
  max-width: 540px;
}

.about-hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.about-hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Image Collage Grid */
.about-hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.collage-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

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

.collage-item:hover img {
  transform: scale(1.05);
}

.collage-tall {
  grid-row: span 2;
}

.collage-wide {
  grid-column: span 2;
}

/* When collage-tall spans 2 rows, rearrange to 3-row grid */
.about-hero-collage {
  grid-template-rows: 190px 190px;
}

/* ═══════════════════════════════════════
   SECTION 2 — KEY FACTS
   ═══════════════════════════════════════ */
.about-facts-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 2rem;
}

.fact-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  /* fade-in animation */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.fact-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.fact-card-content {
  position: relative;
  z-index: 2;
}

.fact-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 0.25rem;
}

.fact-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  display: block;
  margin-bottom: 0.5rem;
}

.fact-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 90%;
}

/* Asymmetric layout: card-3 spans full width */
.fact-card-3 {
  grid-column: 1 / 2;
}

.fact-card-4 {
  grid-column: 2 / 3;
}


/* ═══════════════════════════════════════
   SECTION 3 — MANIFESTO / OUR STORY
   ═══════════════════════════════════════ */
.about-manifesto-section {
  padding: 100px 0;
  background: var(--bg-main);
}

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

.about-manifesto-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-manifesto-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  height: 500px;
}

.about-manifesto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-manifesto-img:hover img {
  transform: scale(1.03);
}


/* ═══════════════════════════════════════
   SECTION 4 — VALUES CAROUSEL
   ═══════════════════════════════════════ */
.about-values-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.about-values-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.values-carousel-wrapper {
  position: relative;
}

.values-carousel {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem 0;
}

.values-carousel::-webkit-scrollbar {
  display: none;
}

.values-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.value-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 140, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

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

/* Scroll Buttons */
.values-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.values-scroll-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.values-prev {
  left: -23px;
}

.values-next {
  right: -23px;
}

/* ═══════════════════════════════════════
   SECTION 6 — TESTIMONIALS (Masonry)
   ═══════════════════════════════════════ */
.about-testimonials-section {
  padding: 10px 0;
  /* was 80 removed team section */
  background: var(--bg-white);
}

.testimonials-masonry {
  columns: 3;
  column-gap: 20px;
  margin-top: 2rem;
}

.testi-card {
  break-inside: avoid;
  background: var(--bg-main);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  /* fade-in */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testi-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testi-stars {
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-user strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.testi-user span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Featured Testimonial (Image card) */
.testi-featured {
  position: relative;
  padding: 0;
  border: none;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.testi-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.testi-featured-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: white;
}

.testi-featured-content p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.testi-featured-content strong {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ═══════════════════════════════════════
   SECTION 7 — CULTURE GALLERY + CTA
   ═══════════════════════════════════════ */
.about-cta-section {
  padding: 80px 0 100px;
  background: var(--bg-main);
}

.culture-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 4rem;
}

.culture-img {
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  /* fade-in */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.culture-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.culture-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-cta-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.about-cta-block h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.about-cta-block p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.cta-btn-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.cta-btn-primary:hover {
  background-color: #E67A00;
  border-color: #E67A00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.cta-btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.cta-btn-outline:hover {
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.about-signoff-new {
  color: var(--text-muted);
  font-size: 1rem;
}

.about-signoff-new strong {
  color: var(--text-main);
}


/* ═══════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-text {
    max-width: 100%;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.75rem;
  }

  .about-section-title {
    font-size: 2.25rem;
  }

  .about-hero-collage {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-manifesto-img {
    height: 400px;
  }

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

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

  .culture-gallery .culture-img:nth-child(4),
  .culture-gallery .culture-img:nth-child(5) {
    display: none;
  }
}


/* ═══════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .about-hero-section {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 1.15rem;
  }

  .about-section-title {
    font-size: 1.85rem;
  }

  .about-hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 160px;
  }

  .collage-tall {
    grid-row: span 1;
  }

  .collage-wide {
    grid-column: span 1;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .fact-card {
    min-height: 220px;
  }

  .fact-card-3,
  .fact-card-4 {
    grid-column: span 1;
  }

  .fact-number {
    font-size: 2.25rem;
  }

  .about-manifesto-img {
    height: 300px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testimonials-masonry {
    columns: 1;
  }

  .culture-gallery {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .culture-gallery .culture-img:nth-child(3),
  .culture-gallery .culture-img:nth-child(4),
  .culture-gallery .culture-img:nth-child(5) {
    display: none;
  }

  .culture-img {
    height: 200px;
  }

  .about-cta-block h2 {
    font-size: 2rem;
  }

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

  .cta-btn-about {
    width: 100%;
    max-width: 300px;
  }

  .values-prev {
    left: -10px;
  }

  .values-next {
    right: -10px;
  }
}

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

  .about-hero-collage {
    grid-template-rows: 130px 130px;
  }

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