/* ============================================
   Attraction Site - Complete Stylesheet
   SEO/AIO Optimized Tourism Website
   ============================================ */

/* CSS Custom Properties */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0091d5;
  --primary-light: #06b6d4;
  --secondary: #06b6d4;
  --secondary-dark: #00a2c0;
  --accent: #f59e0b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --dark-700: #1e293b;
  --dark-600: #334155;
  --dark-500: #475569;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --light: #f8fafc;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--dark-600);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}

.nav-logo {
  flex-wrap: wrap;
  position: relative;
}

.logo-img {
  height: auto;
  width: 246px;
  max-width: 300px;
  display: block;
}

.nav-logo {
  margin-left: 3rem;
}

.logo-wordmark {
  background: linear-gradient(135deg, #5B1F68, #7B2D8B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.logo-accent {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
  letter-spacing: -0.02em;
}

.logo-wave {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 5px;
  opacity: 0.6;
}

.footer-logo .logo-wordmark {
  background: linear-gradient(135deg, #C9A84C, #E85D26);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-accent {
  color: var(--primary-light);
}

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

.nav-links a {
  padding: 0.5rem 0.875rem;
  color: var(--dark-600);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(123, 45, 139, 0.08);
}

.nav-cta {
  background: var(--secondary) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--secondary-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/hero-desktop.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: 140px;
}

.hero::before {
  display: none;
}

.hero.hero-sm {
  min-height: 45vh;
  padding-top: 100px;
}

.hero.hero-sm::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.hero.hero-sm .hero-sub {
  display: block;
  color: var(--dark-600);
  opacity: 1;
}

.hero.hero-sm .breadcrumb,
.hero.hero-sm .breadcrumb a,
.hero.hero-sm .breadcrumb span {
  color: var(--dark-600);
}

.hero.hero-sm .breadcrumb a:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .hero {
    background: url('/images/hero-mobile.jpg') center 55%/cover no-repeat;
    min-height: 85vh;
    align-items: flex-start;
  }
  .hero::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.92) 25%,
      rgba(255, 255, 255, 0.6) 42%,
      rgba(255, 255, 255, 0) 60%
    );
    z-index: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 3rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 54, 93, 0.75);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  color: #0891b2;
  font-family: 'Nunito', var(--font-sans);
  margin-bottom: 1.25rem;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 25px rgba(255, 255, 255, 0.95),
    0 0 50px rgba(255, 255, 255, 0.8),
    0 0 80px rgba(255, 255, 255, 0.5),
    0 0 120px rgba(255, 255, 255, 0.3);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-pretitle {
  display: block;
  font-family: 'Nunito', var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 0.25rem;
  -webkit-text-fill-color: initial;
  background: none;
  color: #475569;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(255, 255, 255, 0.6),
    0 0 70px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  display: block;
  font-family: 'Nunito', var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 1;
  margin-top: 0.5rem;
  color: #475569;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(255, 255, 255, 0.6),
    0 0 70px rgba(255, 255, 255, 0.3);
  -webkit-text-fill-color: initial;
  background: none;
}

.hero h1 span {
  display: block;
}

.hero-sub {
  display: none;
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.stats-bar {
  background: #ffffff;
  padding: 1.5rem 0;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 1rem;
  padding: 1.2rem 2rem;
  margin: 0 auto;
  max-width: fit-content;
}

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

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-stat-label {
  font-size: 0.8rem;
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Wave decoration */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

/* btn-outline on light backgrounds (e.g. inside info-card) */
.info-card .btn-outline {
  color: var(--primary-dark);
  border-color: var(--primary);
}

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

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

.btn-white:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
}

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Pulse animation for CTA */
.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.section-gray {
  background: var(--gray-100);
}

.section-dark {
  background: var(--dark);
  color: var(--gray-300);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-gradient {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--dark-500);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ===== TL;DR BOX ===== */
.tldr-box {
  background: linear-gradient(135deg, #ecfeff, #e0f2fe);
  border: 1px solid #a5f3fc;
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
}

.tldr-box::before {
  content: 'TL;DR';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tldr-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tldr-box li {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.tldr-box li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.1em;
}

/* ===== TWO COLUMN GRID ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* ===== GBP INFO CARD ===== */
.gbp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.gbp-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.gbp-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.gbp-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.gbp-category {
  color: var(--dark-500);
  font-size: 0.875rem;
}

.gbp-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
}

.gbp-rating-text {
  font-size: 0.875rem;
  color: var(--dark-500);
}

.gbp-details {
  display: grid;
  gap: 0.75rem;
}

.gbp-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.gbp-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--dark-500);
  margin-top: 0.1em;
}

.gbp-detail strong {
  color: var(--dark);
  font-weight: 600;
}

.gbp-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.gbp-status.open {
  background: #dcfce7;
  color: #15803d;
}

.gbp-status.closed {
  background: #fee2e2;
  color: #dc2626;
}

.gbp-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ===== ZONE CARDS ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.zone-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

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

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

.zone-card-image .zone-gradient {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
}

.zone-card-image .zone-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.zone-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
}

.zone-card-body {
  padding: 1.5rem;
}

.zone-card-body h3 {
  margin-bottom: 0.5rem;
}

.zone-card-body p {
  color: var(--dark-500);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.zone-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zone-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gray-100);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--dark-600);
}

/* Zone images are set via inline style in the template (background-image: url('/images/{cssClass}.jpg')).
 * No per-zone CSS classes needed — image path is derived directly from cssClass in attractions.json. */

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-family: var(--font-sans);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--dark-500);
  line-height: 1.7;
}

.faq-answer-inner ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.faq-answer-inner li {
  margin-bottom: 0.3rem;
}

/* ===== PRICING TABLE ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--secondary);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

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

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.25rem;
  vertical-align: top;
  margin-right: 0.15rem;
}

.pricing-period {
  color: var(--dark-500);
  font-size: 0.875rem;
}

.pricing-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(34, 211, 238, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

/* ===== TABLE ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrapper th {
  background: var(--gray-100);
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--gray-200);
}

.table-wrapper td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}

.table-wrapper tr:last-child td {
  border-bottom: none;
}

.table-wrapper tr:hover td {
  background: var(--gray-100);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  padding: 1rem 1.25rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}

.comparison-table th:first-child {
  background: var(--gray-100);
}

.comparison-table th.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.comparison-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table td:first-child {
  font-weight: 600;
  background: var(--gray-100);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

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

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

.blog-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Blog card gradient rotation — no data file needed */
.blog-card:nth-child(3n+1) .blog-card-image { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.blog-card:nth-child(3n+2) .blog-card-image { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.blog-card:nth-child(3n+3) .blog-card-image { background: linear-gradient(135deg, var(--accent), #ef4444); }

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--dark-500);
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.blog-card-body h3 a {
  color: var(--dark);
}

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

.blog-card-body p {
  color: var(--dark-500);
  font-size: 0.9rem;
}

.blog-tag {
  display: inline-block;
  background: rgba(8, 145, 178, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
}

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

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-500);
}

.breadcrumb li::after {
  content: '/';
  color: var(--gray-400);
}

.breadcrumb li:last-child::after {
  display: none;
}

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

/* ===== BOOKING CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary), #ea580c);
  color: white;
  border-radius: var(--radius-2xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ===== STICKY BOOKING BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 0.75rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 2rem !important;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-bar-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.sticky-bar-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--dark-500);
  text-decoration: line-through;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.footer-disclaimer {
  border-top: 1px solid var(--dark-600);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer strong {
  color: var(--gray-300);
}

.footer-bottom {
  border-top: 1px solid var(--dark-600);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

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

/* ===== ARTICLE HERO IMAGE ===== */
.article-hero-wrap {
  max-width: 900px;
  margin: 0 auto 0;
  padding: 0 1rem 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .article-hero-wrap {
    padding: 0 0.75rem;
    border-radius: var(--radius-xl);
  }
  .article-hero-img {
    max-height: 240px;
    border-radius: var(--radius-xl);
  }
}

/* ===== CONTENT ARTICLE ===== */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content p {
  margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gray-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--dark-600);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.article-content th, .article-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.article-content th {
  background: var(--gray-100);
  font-weight: 600;
}

/* ===== TOC (Table of Contents) ===== */
.toc {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.toc-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-600);
}

.toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.toc li {
  margin-bottom: 0.3rem;
}

.toc a {
  color: var(--primary);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-600);
  font-style: italic;
  margin-bottom: 1rem;
}

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

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-500);
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--dark-500);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* --- Top-bar & Announcement-bar: hide on scroll --- */
  .top-bar,
  .announcement-bar {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .top-bar.scroll-hidden,
  .announcement-bar.scroll-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  /* --- Mobile Navigation: full-screen overlay --- */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
    border-radius: 8px;
  }

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

  .nav-toggle {
    display: flex;
    z-index: 10001;
    position: relative;
  }

  /* Hamburger → X animation */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* --- Menu Settings (Language/Currency inside menu) --- */
  .menu-settings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 0 0;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
  }

  .menu-settings .selector {
    width: 100%;
  }

  .menu-settings .selector-btn {
    width: 100%;
    justify-content: space-between;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--dark-600);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .menu-settings .selector-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--gray-50);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.25rem 0;
  }

  .menu-settings .selector-dropdown a,
  .menu-settings .selector-dropdown button {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .menu-settings .selector-dropdown a.active,
  .menu-settings .selector-dropdown button.active {
    background: var(--primary);
    color: var(--white);
  }

  /* --- Hero --- */
  .hero {
    min-height: 85vh;
    padding-top: 200px;
  }

  .hero h1 {
    font-size: 2.75rem;
    color: #0891b2;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
  }

  .wave-divider svg {
    height: 40px;
  }

  .hero-pretitle {
    font-size: 0.85rem;
    color: #475569;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
  }

  .hero-subtitle {
    font-size: 0.9rem;
    color: #475569;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-badge {
    display: none;
  }
  .hero-sub {
    display: none;
  }

  .stats-bar {
    padding: 1rem 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    justify-items: center;
    width: 100%;
    padding: 0 0.5rem;
  }

  .hero-stat {
    min-width: auto;
    width: 100%;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* --- Sections --- */
  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2rem 0;
  }

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

  .section-header p {
    font-size: 0.95rem;
  }

  /* --- Two Column Grid → Stack --- */
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* --- Info Grid → Stack --- */
  .info-grid {
    grid-template-columns: 1fr !important;
  }

  /* --- GBP Card --- */
  .gbp-card {
    padding: 1.5rem;
  }

  .gbp-header {
    flex-direction: column;
  }

  .gbp-detail {
    font-size: 0.9rem;
  }

  /* --- TL;DR Box --- */
  .tldr-box {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .tldr-box li {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* --- Zone Cards: show only first 4 on mobile --- */
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .zones-grid .zone-card:nth-child(n+5) {
    display: none;
  }

  .zone-card {
    margin: 0;
  }

  /* --- Limit info cards in Getting There to 3 on mobile --- */
  [aria-label="Getting There"] .info-grid .info-card:nth-child(n+4) {
    display: none;
  }

  /* --- Show only 2 testimonials on mobile --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(n+3) {
    display: none;
  }

  /* --- Hide sections with too much text on mobile --- */
  .mobile-hide {
    display: none !important;
  }

  /* --- Pricing --- */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* --- Sticky Bar --- */
  .sticky-bar-inner {
    flex-direction: row;
    gap: 1rem;
  }

  /* --- CTA Banner --- */
  .cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.35rem;
  }

  /* --- Blog Grid --- */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* --- Info Cards --- */
  .info-card {
    padding: 1.25rem;
  }

  /* --- Buttons --- */
  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .btn-block {
    font-size: 0.95rem;
    padding: 0.875rem;
  }
}

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

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding-top: 4rem;
  }

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

  .wave-divider svg {
    height: 40px;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat .hero-stat-num {
    font-size: 1.5rem;
  }

  .tldr-box {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }

  .tldr-box li {
    font-size: 0.85rem;
  }

  .gbp-card {
    padding: 1.25rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-sm {
    padding: 1.5rem 0;
  }

  .info-icon {
    font-size: 1.8rem;
  }

  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    line-height: 1.4;
  }

  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .sticky-bar-inner {
    padding: 0.5rem 0;
  }

  .sticky-bar-price {
    font-size: 1.1rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--dark-500); }
.text-white { color: var(--white); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0c4a6e 0%, #0891b2 100%);
  padding: 8rem 0 3rem;
  color: white;
  text-align: center;
  position: relative;
}

.page-header .breadcrumb li {
  color: rgba(255, 255, 255, 0.65);
}

.page-header .breadcrumb li::after {
  color: rgba(255, 255, 255, 0.4);
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb a:hover {
  color: white;
}

.page-header h1 {
  color: white;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== SKIP TO CONTENT ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--secondary), #ea580c);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.announcement-bar a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}

/* ===== LOADING / ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOP BAR (Language + Currency) ===== */
.top-bar {
  background: var(--dark-700);
  color: var(--gray-300);
  font-size: 0.78rem;
  padding: 0.3rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.selector {
  position: relative;
}

.selector-btn {
  background: none;
  border: 1px solid var(--dark-500);
  color: var(--gray-300);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.selector-btn:hover {
  border-color: var(--gray-400);
  color: var(--white);
}

.selector-btn svg {
  flex-shrink: 0;
}

.selector-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.15);
  z-index: 9999;
  min-width: 180px;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.35rem 0;
}

.selector-dropdown.open {
  display: block;
}

.selector-dropdown a,
.selector-dropdown button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.85rem;
  color: var(--dark-600);
  text-decoration: none;
  font-size: 0.82rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.selector-dropdown a:hover,
.selector-dropdown button:hover {
  background: var(--gray-100);
}

.selector-dropdown a.active,
.selector-dropdown button.active {
  color: var(--primary);
  font-weight: 600;
  background: var(--gray-100);
}

/* Chevron rotation */
.selector-btn .chevron {
  transition: transform 0.2s;
}

.selector.open .selector-btn .chevron {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
  }
  .selector-btn {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
  }
  .selector-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ===== TRANSLATED FAQ PAGE STYLES ===== */

/* Language Bar (translated pages) */
.lang-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.lang-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  align-items: center;
}

.lang-list a {
  color: var(--dark-500);
  text-decoration: none;
  transition: color var(--transition);
}

.lang-list a:hover {
  color: var(--primary);
}

.lang-current {
  color: var(--primary);
  font-weight: 600;
}

.lang-select select,
.currency-selector select {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.8rem;
  color: var(--dark);
  cursor: pointer;
}

/* Page Hero (translated FAQ pages) */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/hero-desktop.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: 100px;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  margin-bottom: 1rem;
}

.page-hero .breadcrumb ol {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: var(--primary-dark);
}

.page-hero .breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--gray-400);
}

.page-hero .breadcrumb li[aria-current] {
  color: var(--dark-500);
}

.page-hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  font-family: 'Nunito', var(--font-sans);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0891b2;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 25px rgba(255, 255, 255, 0.95),
    0 0 50px rgba(255, 255, 255, 0.8),
    0 0 80px rgba(255, 255, 255, 0.5);
}

.page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: #475569;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(255, 255, 255, 0.6);
}


/* FAQ Section */
.faq-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.faq-section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
}

/* Accordion (translated FAQ pages) */
.accordion {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.accordion-item:hover {
  border-color: var(--primary-light);
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  font-family: var(--font-sans);
  gap: 1rem;
}

.accordion-btn:hover {
  color: var(--primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--gray-400);
  transition: all var(--transition);
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion-item.active .accordion-icon::before {
  background: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content > p,
.accordion-content > ul {
  padding: 0 1.5rem 1.25rem;
  color: var(--dark-500);
  line-height: 1.7;
  margin: 0;
}

.accordion-content ul {
  list-style: disc;
  padding-left: 2.75rem;
  padding-bottom: 1.25rem;
}

.accordion-content li {
  margin-bottom: 0.3rem;
}

/* Responsive adjustments for translated FAQ pages */
@media (max-width: 768px) {
  .lang-list {
    font-size: 0.7rem;
    gap: 0.15rem 0.5rem;
  }

  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }

  .accordion-btn {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .accordion-content > p,
  .accordion-content > ul {
    padding: 0 1.25rem 1rem;
  }
}

/* Print styles */
@media print {
  .navbar, .footer, .sticky-bar, .cta-banner, .top-bar, .lang-bar { display: none; }
  body { font-size: 12pt; color: black; }
  a { color: black; }
}
