/*
Theme Name: EWT Tours Child
Theme URI: https://ewttours.com
Description: Custom child theme for Extraordinary World Travels — built on Kadence. Provides custom post types for Tours and Destinations, taxonomies for the destinations hierarchy (Region → Country → City → Neighborhood), and the EWT brand design system.
Author: EWT Tours
Author URI: https://ewttours.com
Template: kadence
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ewt-child
*/

/* ==========================================================================
   EWT Tours – Brand Design Tokens
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Merriweather:wght@400;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand colors */
  --ewt-blue:       #157bcf;
  --ewt-dark-blue:  #014f7f;
  --ewt-green:      #77e862;
  --ewt-white:      #ffffff;
  --ewt-navy:       #010d1a;
  --ewt-navy2:      #021624;
  --ewt-light-bg:   #f8fafc;
  --ewt-light-bg2:  #eef3f8;
  --ewt-text-dark:  #1a2332;
  --ewt-text-muted: #4a5568;

  /* Category colors (for blog post badges) */
  --ewt-cat-destinations: #157bcf;
  --ewt-cat-dining:       #ff6b35;
  --ewt-cat-attractions:  #8b5cf6;
  --ewt-cat-tours:        #10b981;
  --ewt-cat-gear:         #f59e0b;
  --ewt-cat-transport:    #06b6d4;
  --ewt-cat-tips:         #ec4899;

  /* Typography */
  --ewt-font-display: 'Bebas Neue', sans-serif;
  --ewt-font-body:    'Montserrat', sans-serif;
  --ewt-font-article: 'Merriweather', Georgia, serif;

  /* Layout */
  --ewt-container:    1200px;
  --ewt-header-h:     72px;
  --ewt-sticky-top:   92px;
}

/* ==========================================================================
   Base resets (layered on top of Kadence's own resets)
   ========================================================================== */

body.ewt-site {
  font-family: var(--ewt-font-body);
  background: var(--ewt-light-bg);
  color: var(--ewt-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ewt-container {
  max-width: var(--ewt-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   EWT Buttons
   ========================================================================== */

.ewt-btn-primary,
.ewt-btn-blue,
.ewt-btn-outline {
  display: inline-block;
  font-family: var(--ewt-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.ewt-btn-primary {
  background: var(--ewt-green);
  color: var(--ewt-navy);
  font-weight: 800;
}
.ewt-btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

.ewt-btn-blue {
  background: var(--ewt-blue);
  color: #fff;
}
.ewt-btn-blue:hover { background: #1a8fe0; transform: translateY(-1px); }

.ewt-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.ewt-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.ewt-btn-outline.dark {
  color: var(--ewt-blue);
  border-color: var(--ewt-blue);
}
.ewt-btn-outline.dark:hover { background: rgba(21,123,207,0.08); }

/* ==========================================================================
   Section labels / eyebrow text
   ========================================================================== */

.ewt-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ewt-blue);
  margin-bottom: 12px;
  display: block;
}
.ewt-section-label.on-dark { color: var(--ewt-green); }

/* ==========================================================================
   Page-specific styles will be added in Stage 2 as we convert each page.
   For now, this file establishes the theme + design tokens.
   ========================================================================== */

/* ==============================================================
   HOMEPAGE STYLES (Stage 2)
   Extracted from ewt-homepage-wp.html mockup. Scoped under
   .ewt-site to avoid colliding with admin or Kadence defaults.
   ============================================================== */


    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== BRAND COLORS ===== */
    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
      display: block;
    }
    .section-label.on-dark { color: var(--green); }
    .btn-primary {
      display: inline-block;
      background: var(--green);
      color: #010d1a;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 14px 28px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }
    .btn-outline {
      display: inline-block;
      background: transparent;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 13px 32px;
      border-radius: 4px;
      border: 2px solid rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
    .btn-outline.dark {
      color: var(--blue);
      border-color: var(--blue);
    }
    .btn-outline.dark:hover { background: rgba(21,123,207,0.08); }
    .btn-blue {
      display: inline-block;
      background: var(--blue);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 12px 28px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-blue:hover { background: #1a8fe0; transform: translateY(-1px); }

    /* ===== HEADER / NAV ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 24px;
      background: rgba(1, 13, 26, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(21, 123, 207, 0.15);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-logo img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .nav-logo-text .brand-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 2px;
      color: #fff;
    }
    .nav-logo-text .brand-sub {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-top: 2px;
    }
    nav ul {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    nav ul li a {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: rgba(255,255,255,0.75);
      transition: color 0.2s;
      text-transform: uppercase;
    }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(135deg, rgba(1,13,26,0.88) 0%, rgba(1,79,127,0.45) 50%, rgba(1,13,26,0.72) 100%),
        url('https://ewttours.com/wp-content/uploads/2025/07/Rome.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(1,13,26,0.6) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 24px 80px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(21, 123, 207, 0.15);
      border: 1px solid rgba(21, 123, 207, 0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 24px;
    }
    .hero-eyebrow::before { content: '✈'; font-size: 12px; }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      line-height: 0.95;
      letter-spacing: 2px;
      color: #fff;
      max-width: 800px;
      margin-bottom: 24px;
    }
    .hero h1 .accent { color: var(--green); }
    .hero p.tagline {
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 500;
      color: rgba(255,255,255,0.82);
      max-width: 580px;
      line-height: 1.6;
      margin-bottom: 40px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-stats {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.1);
      flex-wrap: wrap;
    }
    .hero-stat .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      letter-spacing: 1px;
      color: var(--green);
      line-height: 1;
    }
    .hero-stat .label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-top: 4px;
    }
    .hero-stat-divider {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,0.12);
    }
    .hero-destinations {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 24px 32px;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
    .dest-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      cursor: pointer;
      transition: all 0.2s;
    }
    .dest-pill:hover { background: rgba(21,123,207,0.2); border-color: var(--blue); color: #fff; }
    .dest-pill .flag { font-size: 14px; }

    /* ===== TRUST BAR — SCROLLING MARQUEE ===== */
    .trust-bar {
      background: var(--dark-blue);
      border-top: 1px solid rgba(21,123,207,0.3);
      border-bottom: 1px solid rgba(21,123,207,0.3);
      padding: 14px 0;
      overflow: hidden;
    }
    .trust-marquee { overflow: hidden; }
    .trust-track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: trustScroll 28s linear infinite;
    }
    .trust-track:hover { animation-play-state: paused; }
    @keyframes trustScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.82);
      white-space: nowrap;
      padding: 0 36px;
    }
    .trust-item .icon { color: var(--green); font-size: 16px; }
    .trust-sep {
      color: rgba(255,255,255,0.2);
      font-size: 8px;
      flex-shrink: 0;
    }
    .viator-logo-text {
      background: #28A745;
      color: white;
      font-size: 10px;
      font-weight: 800;
      padding: 2px 7px;
      border-radius: 3px;
      letter-spacing: 0.5px;
    }

    /* ===== SECTION BASE ===== */

    /* ===== DESTINATIONS — CAROUSEL ===== */
    .destinations-section {
      background: var(--light-bg2);
    }
    .section-header { margin-bottom: 48px; }
    .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      letter-spacing: 2px;
      color: var(--text-dark);
      line-height: 1;
    }
    .section-header h2.on-dark { color: #fff; }
    .section-header p {
      font-size: 16px;
      color: var(--text-muted);
      margin-top: 12px;
      max-width: 520px;
      line-height: 1.6;
    }
    .section-header p.on-dark { color: rgba(255,255,255,0.55); }

    /* Carousel wrapper */
    .dest-carousel-wrap {
      position: relative;
    }
    .dest-carousel {
      overflow: hidden;
    }
    .dest-track {
      display: flex;
      gap: 20px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .dest-card {
      flex-shrink: 0;
      width: calc((100% - 40px) / 3);
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 3/4;
    }
    .dest-card-img {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }
    .dest-card:hover .dest-card-img { transform: scale(1.06); }
    .dest-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(1,13,26,0.92) 0%, rgba(1,13,26,0.15) 55%, transparent 100%);
    }
    .dest-card-content {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 24px;
    }
    .dest-region {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 6px;
    }
    .dest-card-content h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      letter-spacing: 1px;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
    }
    .dest-card-content p {
      font-size: 12px;
      color: rgba(255,255,255,0.62);
      margin-bottom: 14px;
      line-height: 1.4;
    }
    .dest-tag {
      display: inline-block;
      background: rgba(21,123,207,0.3);
      border: 1px solid rgba(21,123,207,0.4);
      border-radius: 100px;
      padding: 3px 10px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #fff;
      margin-right: 4px;
      margin-bottom: 4px;
    }
    .dest-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      background: var(--green);
      border-radius: 50%;
      color: #010d1a;
      font-size: 16px;
      font-weight: 700;
      transition: transform 0.2s;
      float: right;
    }
    .dest-card:hover .dest-arrow { transform: rotate(45deg); }

    /* Region background images */
    .img-africa       { background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=800&q=80'); }
    .img-antarctica   { background-image: url('https://images.unsplash.com/photo-1551269901-5c5e14c25df7?w=800&q=80'); }
    .img-asia         { background-image: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=800&q=80'); }
    .img-caribbean    { background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=800&q=80'); }
    .img-europe       { background-image: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=800&q=80'); }
    .img-northamerica { background-image: url('https://images.unsplash.com/photo-1534430480872-3498386e7856?w=800&q=80'); }
    .img-southamerica { background-image: url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=800&q=80'); }
    .img-oceania      { background-image: url('https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?w=800&q=80'); }

    /* Carousel nav buttons */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 48px;
      height: 48px;
      background: #fff;
      border: none;
      border-radius: 50%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--text-dark);
      transition: all 0.2s;
    }
    .carousel-btn:hover { background: var(--blue); color: #fff; box-shadow: 0 6px 24px rgba(21,123,207,0.35); }
    .carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
    .dest-prev { left: -24px; }
    .dest-next { right: -24px; }

    /* Carousel dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
    }
    .dest-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(21,123,207,0.2);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      padding: 0;
    }
    .dest-dot.active {
      background: var(--blue);
      width: 24px;
      border-radius: 4px;
    }
    .dest-dot:hover { background: var(--blue); }

    /* ===== FEATURED GROUP TOURS ===== */
    .tours-section { background: #ffffff; }
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .tour-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .tour-card:hover {
      border-color: var(--blue);
      box-shadow: 0 8px 32px rgba(21,123,207,0.15);
      transform: translateY(-4px);
    }
    .tour-img {
      height: 220px;
      position: relative;
      overflow: hidden;
    }
    .tour-img-bg {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s;
    }
    .tour-card:hover .tour-img-bg { transform: scale(1.05); }
    .img-greece { background-image: url('https://images.unsplash.com/photo-1555993539-1732b0258235?w=600&q=80'); }
    .img-alaska { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=80'); }
    .img-japan  { background-image: url('https://images.unsplash.com/photo-1522383225653-ed111181a951?w=600&q=80'); }
    .tour-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--green);
      color: #010d1a;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
    }
    .tour-badge.sold    { background: #ff6b35; color: #fff; }
    .tour-badge.is-limited { background: #ffb800; color: #010d1a; }
    .tour-body { padding: 24px; }
    .tour-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }
    .tour-region {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
    }
    .tour-dates {
      font-size: 11px;
      font-weight: 600;
      color: #94a3b8;
    }
    .tour-body h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 1px;
      color: var(--text-dark);
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .tour-body p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .tour-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }
    .highlight-tag {
      font-size: 10px;
      font-weight: 600;
      color: var(--blue);
      background: rgba(21,123,207,0.08);
      border: 1px solid rgba(21,123,207,0.15);
      border-radius: 100px;
      padding: 3px 10px;
    }
    .tour-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid #e2e8f0;
    }
    .tour-price .from {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #94a3b8;
    }
    .tour-price .amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 1px;
      color: var(--dark-blue);
      line-height: 1;
    }
    .tour-price .pp {
      font-size: 10px;
      color: #94a3b8;
    }
    .tours-cta { text-align: center; margin-top: 48px; }

    /* ===== EXCURSIONS / VIATOR ===== */
    .excursions-section {
      background: var(--navy2);
      position: relative;
      overflow: hidden;
    }
    .excursions-section::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(21,123,207,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .excursions-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .viator-partner-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(40,167,69,0.1);
      border: 1px solid rgba(40,167,69,0.25);
      border-radius: 8px;
      padding: 10px 20px;
    }
    .viator-partner-badge .vtext {
      font-size: 11px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .viator-partner-badge .vname {
      font-size: 13px; font-weight: 800; color: #fff;
    }
    .excursions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .exc-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s;
    }
    .exc-card:hover {
      border-color: rgba(40,167,69,0.4);
      transform: translateY(-3px);
      background: rgba(255,255,255,0.06);
    }
    .exc-img {
      height: 170px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .exc-img-1 { background-image: url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=400&q=80'); }
    .exc-img-2 { background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=400&q=80'); }
    .exc-img-3 { background-image: url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=400&q=80'); }
    .exc-img-4 { background-image: url('https://images.unsplash.com/photo-1548013146-72479768bada?w=400&q=80'); }
    .exc-stars {
      position: absolute; bottom: 8px; left: 10px;
      font-size: 11px; color: #ffb800;
    }
    .exc-reviews { font-size: 10px; color: rgba(255,255,255,0.6); margin-left: 4px; }
    .exc-body { padding: 16px; }
    .exc-location {
      font-size: 10px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--blue); margin-bottom: 6px;
    }
    .exc-body h4 {
      font-size: 14px; font-weight: 700;
      color: #fff; line-height: 1.3; margin-bottom: 10px;
    }
    .exc-footer { display: flex; align-items: center; justify-content: space-between; }
    .exc-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; color: var(--green); letter-spacing: 0.5px;
    }
    .exc-viator {
      font-size: 9px; font-weight: 800; letter-spacing: 0.5px;
      background: #28A745; color: white; padding: 3px 7px; border-radius: 3px;
    }

    /* ===== TRAVEL ESSENTIALS ===== */
    .essentials-section { background: #ffffff; }
    .essentials-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }
    .ess-card {
      display: flex;
      flex-direction: column;
      background: var(--light-bg);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 18px 14px;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      color: inherit;
    }
    .ess-card:hover {
      border-color: var(--green);
      box-shadow: 0 6px 24px rgba(119,232,98,0.15);
      transform: translateY(-3px);
    }
    .ess-card-featured {
      background: linear-gradient(135deg, var(--dark-blue) 0%, #0a6aaa 100%);
      border-color: transparent;
    }
    .ess-card-featured h3,
    .ess-card-featured p { color: #ffffff !important; }
    .ess-card-featured .ess-link { color: var(--green); }
    .ess-card-featured:hover {
      border-color: var(--green);
      box-shadow: 0 6px 28px rgba(1,79,127,0.35);
    }
    .ess-icon { font-size: 26px; margin-bottom: 10px; }
    .ess-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 17px; letter-spacing: 1px;
      color: var(--text-dark); margin-bottom: 6px; line-height: 1.1;
    }
    .ess-card p {
      font-size: 12px; color: var(--text-muted);
      line-height: 1.5; flex: 1; margin-bottom: 12px;
    }
    .ess-link {
      font-size: 12px; font-weight: 700;
      color: var(--blue); text-transform: uppercase;
      letter-spacing: 0.5px; transition: color 0.2s;
    }
    .ess-card:hover .ess-link { color: var(--dark-blue); }

    /* ===== HOW IT WORKS ===== */
    .how-section {
      background: var(--light-bg);
      position: relative;
    }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      position: relative;
    }
    .how-card { text-align: center; }
    .how-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 80px; letter-spacing: 2px;
      color: rgba(119,232,98,0.45);
      line-height: 1; margin-bottom: -8px;
    }
    .how-icon { font-size: 36px; margin-bottom: 16px; display: block; }
    .how-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; letter-spacing: 1px;
      color: var(--text-dark); margin-bottom: 10px;
    }
    .how-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ===== ABOUT STRIP ===== */
    .about-strip {
      background: linear-gradient(135deg, var(--dark-blue) 0%, #013a5e 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .about-strip::before {
      content: '';
      position: absolute;
      right: -80px; top: 50%;
      transform: translateY(-50%);
      width: 400px; height: 400px;
      background: url('ewt-logo.png') center/contain no-repeat;
      opacity: 0.06;
    }
    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px; letter-spacing: 2px; line-height: 1;
      color: #fff; margin-bottom: 20px;
    }
    .about-text h2 span { color: var(--green); }
    .about-text p {
      font-size: 15px; line-height: 1.7;
      color: rgba(255,255,255,0.7); margin-bottom: 16px;
    }
    .about-text .tagline-quote {
      font-size: 16px; font-weight: 700; color: #fff;
      font-style: italic; line-height: 1.5;
      border-left: 3px solid var(--green);
      padding-left: 20px; margin: 24px 0;
    }
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .about-feature { display: flex; align-items: flex-start; gap: 12px; }
    .about-feature .feat-icon {
      width: 40px; height: 40px;
      background: rgba(119,232,98,0.1);
      border: 1px solid rgba(119,232,98,0.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .about-feature .feat-text h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .about-feature .feat-text p  { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; margin: 0; }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { background: #ffffff; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--light-bg);
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px;
      transition: all 0.25s;
    }
    .testi-card:hover {
      box-shadow: 0 8px 28px rgba(21,123,207,0.12);
      border-color: rgba(21,123,207,0.3);
      transform: translateY(-2px);
    }
    .testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 16px; }
    .testi-card blockquote {
      font-size: 14px; color: var(--text-muted);
      line-height: 1.7; font-style: italic; margin-bottom: 20px;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--dark-blue);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 14px; color: var(--green); flex-shrink: 0;
    }
    .testi-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
    .testi-trip { font-size: 11px; color: var(--blue); margin-top: 2px; }

    /* ===== NEWSLETTER ===== */
    .newsletter-section {
      background: linear-gradient(135deg, var(--dark-blue) 0%, #0a6aaa 100%);
      padding: 80px 0;
    }
    .newsletter-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
      padding: 0 24px;
    }
    .newsletter-inner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px; letter-spacing: 2px; color: #fff; margin-bottom: 12px;
    }
    .newsletter-inner p {
      font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 32px;
    }
    .newsletter-form {
      display: flex;
      gap: 0; max-width: 480px; margin: 0 auto;
    }
    .newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-right: none;
      border-radius: 6px 0 0 6px;
      padding: 14px 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px; color: #fff; outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
    .newsletter-form input:focus { border-color: var(--green); }
    .newsletter-form button {
      background: var(--green);
      color: #010d1a;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
      padding: 14px 24px;
      border: none; border-radius: 0 6px 6px 0;
      cursor: pointer; white-space: nowrap; transition: background 0.2s;
    }
    .newsletter-form button:hover { background: #8fff70; }
    .newsletter-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 12px; }

    /* ===== FOOTER ===== */
    footer {
      background: #000d1a;
      border-top: 1px solid rgba(21,123,207,0.15);
      padding: 64px 0 32px;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px; letter-spacing: 2px; color: #fff;
    }
    .footer-logo-text .brand-sub {
      font-size: 9px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: var(--green);
    }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: rgba(255,255,255,0.5);
      cursor: pointer; transition: all 0.2s;
    }
    .social-btn:hover { background: rgba(21,123,207,0.2); border-color: var(--blue); color: #fff; }
    .footer-col h4 {
      font-size: 11px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }

    /* ===== SCROLL INDICATOR ===== */
    .scroll-indicator {
      position: absolute; bottom: 32px; left: 50%;
      transform: translateX(-50%); z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5;
    }
    .scroll-indicator span {
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: #fff;
    }
    .scroll-mouse {
      width: 24px; height: 38px;
      border: 2px solid rgba(255,255,255,0.4);
      border-radius: 12px;
      display: flex; justify-content: center; padding-top: 6px;
    }
    .scroll-dot {
      width: 4px; height: 8px;
      background: var(--green); border-radius: 2px;
      animation: scrollDown 1.5s infinite;
    }
    @keyframes scrollDown {
      0%   { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(8px); opacity: 0; }
    }

    /* ===== ANNOUNCEMENT BAR ===== */
    .announce-bar {
      background: var(--green);
      color: #010d1a;
      text-align: center;
      padding: 10px 24px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    }
    .announce-bar a { color: #010d1a; text-decoration: underline; margin-left: 8px; }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

/* ==============================================================

/* ==============================================================
   ABOUT PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.97);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

    /* ===== HERO ===== */
    .about-hero {
      padding-top: 72px;
      background: var(--navy2);
      position: relative; overflow: hidden;
    }
    .about-hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1400&q=80');
      background-size: cover; background-position: center 35%;
      opacity: 0.15;
    }
    .about-hero-inner {
      position: relative; z-index: 1;
      max-width: 820px; margin: 0 auto; padding: 96px 24px 88px;
      text-align: center;
    }
    .hero-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 18px; }
    .about-hero-inner h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 88px); letter-spacing: 3px; color: #fff; line-height: 0.92; margin-bottom: 24px; }
    .about-hero-inner p { font-size: 18px; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 640px; margin: 0 auto 40px; }
    .hero-stat-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .h-stat { text-align: center; }
    .h-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; letter-spacing: 1px; color: var(--green); line-height: 1; }
    .h-stat .lbl { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }
    .h-stat-div { width: 1px; height: 52px; background: rgba(255,255,255,0.1); }
    @media (max-width: 560px) { .hero-stat-row { gap: 24px; } .h-stat-div { display: none; } }

    /* ===== STORY SECTION ===== */
    .story-section { padding: 96px 0; background: #fff; }
    .story-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    @media (max-width: 860px) { .story-inner { grid-template-columns: 1fr; gap: 40px; } }
    .story-img-stack { position: relative; }
    .story-img-main { border-radius: 16px; overflow: hidden; height: 480px; }
    .story-img-main img { width: 100%; height: 100%; object-fit: cover; }
    .story-img-accent { position: absolute; bottom: -28px; right: -28px; width: 200px; height: 160px; border-radius: 12px; overflow: hidden; border: 4px solid #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
    .story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
    @media (max-width: 860px) { .story-img-accent { display: none; } .story-img-main { height: 320px; } }
    .story-text .eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
    .story-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4.5vw, 54px); letter-spacing: 2px; color: var(--text-dark); line-height: 0.95; margin-bottom: 24px; }
    .story-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
    .story-signature { display: flex; align-items: center; gap: 16px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--light-bg2); }
    .story-signature img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(119,232,98,0.4); }
    .story-signature .sig-name { font-size: 15px; font-weight: 800; color: var(--text-dark); }
    .story-signature .sig-title { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ===== VALUES SECTION ===== */
    .values-section { padding: 80px 0; background: var(--light-bg2); }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
    .value-card { background: #fff; border-radius: 14px; padding: 32px 28px; border: 1px solid #e2e8f0; }
    .value-icon { font-size: 36px; margin-bottom: 16px; }
    .value-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 10px; }
    .value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

    /* ===== TEAM SECTION ===== */
    .team-section { padding: 96px 0; background: #fff; }
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-header .eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
    .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4.5vw, 52px); letter-spacing: 2px; color: var(--text-dark); line-height: 0.95; margin-bottom: 14px; }
    .section-header p { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    @media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
    .team-card { text-align: center; }
    .team-photo-wrap { position: relative; display: inline-block; margin-bottom: 18px; }
    .team-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid rgba(119,232,98,0.35); }
    .team-flag { position: absolute; bottom: 4px; right: 4px; width: 32px; height: 32px; border-radius: 50%; background: var(--navy2); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; }
    .team-card h3 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
    .team-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
    .team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 220px; margin: 0 auto 14px; }
    .team-regions { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
    .team-region-chip { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 4px; background: var(--light-bg2); color: var(--text-muted); }

    /* ===== GUIDES SECTION ===== */
    .guides-section { padding: 80px 0; background: var(--navy2); }
    .guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 860px) { .guides-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 520px) { .guides-grid { grid-template-columns: 1fr; } }
    .guide-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
    .guide-card-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(119,232,98,0.3); }
    .guide-card-info h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
    .guide-location { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
    .guide-card-info p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
    .guides-section .section-header .eyebrow { color: var(--green); }
    .guides-section .section-header h2 { color: #fff; }
    .guides-section .section-header p { color: rgba(255,255,255,0.55); }

    /* ===== MILESTONES / TIMELINE ===== */
    .timeline-section { padding: 96px 0; background: var(--light-bg); }
    .timeline { max-width: 740px; margin: 0 auto; position: relative; padding: 0 24px; }
    .timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--light-bg2); transform: translateX(-50%); }
    @media (max-width: 600px) { .timeline::before { left: 24px; } }
    .timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 32px); margin-bottom: 48px; position: relative; }
    .timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 32px); }
    @media (max-width: 600px) {
      .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 56px; }
    }
    .timeline-dot { position: absolute; left: 50%; top: 16px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 3px rgba(21,123,207,0.2); transform: translateX(-50%); }
    @media (max-width: 600px) { .timeline-dot { left: 24px; } }
    .timeline-content { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; padding: 20px 22px; max-width: 300px; }
    @media (max-width: 600px) { .timeline-content { max-width: 100%; } }
    .timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--blue); line-height: 1; margin-bottom: 6px; }
    .timeline-content h4 { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
    .timeline-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

    /* ===== PRESS / LOGOS ===== */
    .press-section { padding: 60px 0; background: #fff; border-top: 1px solid var(--light-bg2); border-bottom: 1px solid var(--light-bg2); }
    .press-label { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
    .press-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
    .press-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: #b0bec5; transition: color 0.2s; }
    .press-logo:hover { color: var(--text-muted); }

    /* ===== STATS STRIP ===== */
    .stats-strip { background: var(--navy); padding: 72px 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    @media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
    .stat-item { text-align: center; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.07); }
    .stat-item:last-child { border-right: none; }
    @media (max-width: 768px) { .stat-item:nth-child(2) { border-right: none; } .stat-item { border-bottom: 1px solid rgba(255,255,255,0.07); } }
    .stat-item .big { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--green); letter-spacing: 1px; line-height: 1; }
    .stat-item .stat-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
    .stat-item .stat-note { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 4px; }

    /* ===== CTA SECTION ===== */
    .cta-section { background: var(--blue); padding: 96px 0; }
    .cta-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 24px; }
    .cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); letter-spacing: 2px; color: #fff; line-height: 0.95; margin-bottom: 20px; }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 36px; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-outline { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.5); color: #fff; transition: all 0.2s; }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ==============================================================
   CONTACT PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.97);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

    /* ===== HERO ===== */
    .contact-hero {
      padding-top: 72px;
      background: var(--navy2);
      position: relative; overflow: hidden;
    }
    .contact-hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?w=1400&q=80');
      background-size: cover; background-position: center 40%;
      opacity: 0.14;
    }
    .contact-hero-inner {
      position: relative; z-index: 1;
      max-width: 760px; margin: 0 auto; padding: 80px 24px 72px;
      text-align: center;
    }
    .hero-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
    .contact-hero-inner h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6.5vw, 80px); letter-spacing: 3px; color: #fff; line-height: 0.92; margin-bottom: 20px; }
    .contact-hero-inner p { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 580px; margin: 0 auto; }

    /* ===== MAIN CONTACT LAYOUT ===== */
    .contact-main { max-width: 1160px; margin: 0 auto; padding: 60px 24px 80px; display: grid; grid-template-columns: 1fr 400px; gap: 52px; align-items: start; }
    @media (max-width: 960px) { .contact-main { grid-template-columns: 1fr; } }

    /* ===== FORM CARD ===== */
    .form-card { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.07); }
    .form-card-header { background: var(--navy); padding: 28px 32px; }
    .form-card-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; color: #fff; margin-bottom: 6px; }
    .form-card-header p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
    .form-card-body { padding: 32px; }

    .form-label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 13px 16px; border: 1.5px solid #e2e8f0; border-radius: 8px;
      font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text-dark);
      background: #fff; outline: none; transition: border-color 0.2s; margin-bottom: 18px;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,123,207,0.08); }
    .form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

    .form-section-title { font-size: 13px; font-weight: 800; color: var(--text-dark); margin: 8px 0 16px; padding-top: 16px; border-top: 1px solid var(--light-bg2); }
    .form-section-title:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

    /* Checkbox group */
    .checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
    @media (max-width: 400px) { .checkbox-group { grid-template-columns: 1fr; } }
    .checkbox-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; cursor: pointer; transition: all 0.2s; }
    .checkbox-item:hover { border-color: var(--blue); background: rgba(21,123,207,0.03); }
    .checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0; }
    .checkbox-item label { font-size: 13px; font-weight: 600; color: var(--text-dark); cursor: pointer; }

    /* Budget slider visual */
    .budget-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
    .budget-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 8px; border: 1.5px solid #e2e8f0; cursor: pointer; background: #fff; color: var(--text-muted); transition: all 0.2s; white-space: nowrap; }
    .budget-btn:hover, .budget-btn.active { border-color: var(--blue); color: var(--blue); background: rgba(21,123,207,0.05); }

    /* Submit button */
    .btn-submit { display: block; width: 100%; padding: 17px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
    .btn-submit:hover { background: #8fff70; }
    .form-footer-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }
    .form-footer-note strong { color: var(--text-dark); }

    /* ===== SUCCESS STATE ===== */
    .success-state { display: none; text-align: center; padding: 60px 32px; }
    .success-icon { font-size: 64px; margin-bottom: 20px; }
    .success-state h3 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 2px; color: var(--text-dark); margin-bottom: 12px; }
    .success-state p { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 380px; margin: 0 auto 28px; }

    /* ===== SIDEBAR ===== */
    .contact-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 92px; }
    @media (max-width: 960px) { .contact-sidebar { position: static; } }

    /* Contact Methods */
    .contact-methods { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; overflow: hidden; }
    .contact-methods-header { background: var(--navy2); padding: 22px 24px; }
    .contact-methods-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1.5px; color: #fff; margin-bottom: 4px; }
    .contact-methods-header p { font-size: 12px; color: rgba(255,255,255,0.45); }
    .contact-method-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--light-bg2); transition: background 0.2s; }
    .contact-method-item:last-child { border-bottom: none; }
    .contact-method-item:hover { background: var(--light-bg); }
    .method-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
    .method-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
    .method-value { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 3px; }
    .method-note { font-size: 12px; color: var(--text-muted); }

    /* Response promise */
    .response-card { background: rgba(119,232,98,0.06); border: 1.5px solid rgba(119,232,98,0.25); border-radius: 14px; padding: 22px; }
    .response-card h4 { font-size: 13px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
    .response-card h4 .badge { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; background: rgba(119,232,98,0.2); color: #166534; padding: 2px 8px; border-radius: 4px; }
    .response-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
    .response-item:last-child { margin-bottom: 0; }
    .response-item .check { color: #16a34a; font-weight: 800; flex-shrink: 0; }

    /* What Happens Next */
    .next-steps-card { background: #fff; border-radius: 14px; border: 1px solid #e2e8f0; padding: 24px; }
    .next-steps-card h4 { font-size: 13px; font-weight: 800; color: var(--text-dark); margin-bottom: 18px; }
    .step-item { display: flex; gap: 14px; margin-bottom: 16px; }
    .step-item:last-child { margin-bottom: 0; }
    .step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .step-text h5 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
    .step-text p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

    /* Photo card */
    .sara-card { background: var(--navy2); border-radius: 14px; overflow: hidden; }
    .sara-img { height: 180px; overflow: hidden; }
    .sara-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .sara-body { padding: 18px 20px; }
    .sara-body .label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
    .sara-body h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; }
    .sara-body p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* ===== FAQ STRIP ===== */
    .faq-strip { background: var(--light-bg2); padding: 80px 0; }
    .faq-strip-inner { max-width: 780px; margin: 0 auto; padding: 0 24px; }
    .faq-strip h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); margin-bottom: 36px; text-align: center; }
    .faq-item { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 8px; overflow: hidden; background: #fff; }
    .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 17px 22px; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--text-dark); transition: background 0.2s; user-select: none; }
    .faq-question:hover { background: var(--light-bg2); }
    .faq-item.is-open .faq-question { background: var(--navy); color: #fff; }
    .faq-chevron { font-size: 16px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--green); }
    .faq-answer { display: none; padding: 16px 22px; font-size: 13px; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--light-bg2); }
    .faq-item.is-open .faq-answer { display: block; }

    /* ===== SOCIAL / FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ==============================================================
   TOURS PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.97);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

    /* ===== HERO ===== */
    .tours-hero {
      padding-top: 72px;
      background: var(--navy2);
      position: relative;
      overflow: hidden;
    }
    .tours-hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1400&q=80');
      background-size: cover; background-position: center 40%;
      opacity: 0.18;
    }
    .tours-hero-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 72px 24px 64px;
      display: flex; flex-direction: column; align-items: center; text-align: center;
    }
    .hero-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
    .tours-hero-inner h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 88px); letter-spacing: 3px; color: #fff; line-height: 0.95; margin-bottom: 20px; }
    .tours-hero-inner p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 620px; margin-bottom: 36px; }
    .hero-stats { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
    .hero-stat { text-align: center; }
    .hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 1px; color: var(--green); line-height: 1; }
    .hero-stat .label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }
    .hero-stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }
    @media (max-width: 600px) { .hero-stats { gap: 24px; } .hero-stat-divider { display: none; } }

    /* ===== FILTER BAR ===== */
    .filter-bar-wrap {
      background: #fff;
      border-bottom: 1px solid #e2e8f0;
      position: sticky; top: 72px; z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .filter-bar { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; min-height: 64px; }
    .filter-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
    .filter-divider { width: 1px; height: 28px; background: #e2e8f0; }
    .filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .filter-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
      padding: 7px 14px; border-radius: 20px; cursor: pointer; border: 1.5px solid #e2e8f0;
      background: #fff; color: var(--text-muted); transition: all 0.2s; white-space: nowrap;
    }
    .filter-btn:hover { border-color: var(--blue); color: var(--blue); }
    .filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
    .filter-btn .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
    .results-info { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
    .sort-select {
      font-size: 12px; font-weight: 700; color: var(--text-dark); padding: 7px 12px; border: 1.5px solid #e2e8f0; border-radius: 20px; background: #fff; cursor: pointer; appearance: none; padding-right: 28px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a5568'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center;
    }
    @media (max-width: 768px) {
      .filter-bar { padding: 12px 16px; gap: 8px; }
      .filter-divider { display: none; }
      .results-info { display: none; }
    }

    /* ===== MAIN TOURS LAYOUT ===== */
    .tours-main { background: var(--light-bg); padding: 48px 0 80px; }
    .tours-layout { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* ===== TOUR CARDS GRID ===== */
    .tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
    @media (max-width: 960px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px) { .tours-grid { grid-template-columns: 1fr; } }

    .tour-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: all 0.3s; display: flex; flex-direction: column;
    }
    .tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }

    .tour-card-img { position: relative; height: 220px; overflow: hidden; }
    .tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .tour-card:hover .tour-card-img img { transform: scale(1.04); }
    .tour-card-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; z-index: 1; }
    .region-badge {
      display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 4px 10px; border-radius: 4px; color: #fff;
    }
    .region-badge.europe   { background: #157bcf; }
    .region-badge.caribbean { background: #0d9488; }
    .region-badge.is-asia     { background: #7c3aed; }
    .region-badge.central-america { background: #b45309; }
    .region-badge.south-america { background: #b91c1c; }
    .region-badge.is-africa   { background: #d97706; }
    .region-badge.middle-east { background: #0f766e; }
    .region-badge.south-pacific { background: #0369a1; }
    .featured-badge {
      display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
      background: var(--green); color: #010d1a;
    }
    .sold-out-overlay {
      position: absolute; inset: 0; background: rgba(1,13,26,0.65); display: flex; align-items: center; justify-content: center; z-index: 2;
    }
    .sold-out-overlay span { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 8px 18px; border-radius: 4px; }
    .spots-badge {
      position: absolute; bottom: 12px; right: 12px; z-index: 1;
      background: rgba(1,13,26,0.85); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8);
      padding: 4px 10px; border-radius: 4px;
    }
    .spots-badge.low { color: #ff9f43; }

    .tour-card-body { padding: 22px 22px 0; flex: 1; }
    .tour-card-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.1; }
    .tour-card-body .tour-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
    .tour-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .tour-meta-chip {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 700; color: var(--text-muted);
      background: var(--light-bg2); padding: 5px 10px; border-radius: 6px;
    }
    .tour-meta-chip .icon { font-size: 12px; }

    .tour-departures { margin-bottom: 16px; }
    .tour-departures .dep-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
    .dep-dates { display: flex; flex-wrap: wrap; gap: 6px; }
    .dep-date {
      font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
      border: 1.5px solid #e2e8f0; color: var(--text-dark);
    }
    .dep-date.soon { border-color: var(--green); color: #166534; background: rgba(119,232,98,0.08); }
    .dep-date.sold { border-color: #fee2e2; color: #991b1b; background: #fef2f2; text-decoration: line-through; }

    .tour-card-footer {
      padding: 16px 22px 20px;
      border-top: 1px solid var(--light-bg2);
      display: flex; align-items: center; justify-content: space-between;
      margin-top: auto;
    }
    .tour-price { }
    .tour-price .from { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
    .tour-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--text-dark); line-height: 1; }
    .tour-price .per-person { font-size: 10px; font-weight: 600; color: var(--text-muted); }
    .tour-price .includes { font-size: 10px; color: #166534; font-weight: 700; margin-top: 2px; }
    .btn-tour { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; padding: 11px 20px; border-radius: 4px; background: var(--navy); color: #fff; transition: all 0.2s; }
    .btn-tour:hover { background: var(--blue); }

    /* ===== FEATURED TOUR (WIDE CARD) ===== */
    .featured-tour-wrap { margin-bottom: 40px; }
    .featured-tour {
      background: var(--navy2); border-radius: 16px; overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr; min-height: 360px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    }
    @media (max-width: 768px) { .featured-tour { grid-template-columns: 1fr; } }
    .featured-tour-img { position: relative; overflow: hidden; }
    .featured-tour-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
    .featured-tour-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--navy2) 100%); }
    @media (max-width: 768px) { .featured-tour-img::after { background: linear-gradient(to bottom, transparent 60%, var(--navy2) 100%); } }
    .featured-tour-content { padding: 44px 44px 44px 40px; display: flex; flex-direction: column; justify-content: center; }
    @media (max-width: 768px) { .featured-tour-content { padding: 32px 24px; } }
    .featured-label { font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
    .featured-tour-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: #fff; line-height: 1.0; margin-bottom: 12px; }
    .featured-tour-content p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
    .featured-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
    .featured-chip { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 6px; }
    .featured-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .featured-price .from { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
    .featured-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 38px; letter-spacing: 1px; color: var(--green); line-height: 1; }
    .featured-price .pp { font-size: 11px; color: rgba(255,255,255,0.4); }

    /* ===== SECTION HEADERS ===== */
    .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
    .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3.5vw, 38px); letter-spacing: 2px; color: var(--text-dark); }
    .section-header p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
    .view-all-link { font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
    .view-all-link:hover { color: var(--dark-blue); }

    /* ===== LOAD MORE ===== */
    .load-more-wrap { text-align: center; margin-top: 16px; }
    .btn-load-more {
      display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
      padding: 14px 36px; border-radius: 4px; border: 2px solid #cbd5e0; color: var(--text-muted);
      background: #fff; cursor: pointer; transition: all 0.2s;
    }
    .btn-load-more:hover { border-color: var(--blue); color: var(--blue); }

    /* ===== WHY EWT STRIP ===== */
    .why-strip { background: var(--navy2); padding: 56px 0; }
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
    @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }
    .why-item { text-align: center; }
    .why-icon { font-size: 36px; margin-bottom: 12px; }
    .why-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: #fff; margin-bottom: 8px; }
    .why-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: var(--blue); padding: 72px 0; }
    .newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; padding: 0 24px; }
    .newsletter-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: #fff; margin-bottom: 12px; }
    .newsletter-section p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 28px; }
    .newsletter-form { display: flex; gap: 0; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
    .newsletter-form input { flex: 1; padding: 16px 20px; border: none; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .newsletter-form button { padding: 16px 24px; background: var(--navy); color: #fff; border: none; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
    .newsletter-form button:hover { background: var(--navy2); }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 14px; }
    @media (max-width: 480px) { .newsletter-form { flex-direction: column; } .newsletter-form input, .newsletter-form button { width: 100%; } }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ==============================================================
   TOUR-DETAIL PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.97);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

    /* ===== TOUR HERO ===== */
    .tour-hero {
      padding-top: 72px;
      position: relative;
    }
    .tour-hero-img {
      position: relative; height: 580px; overflow: hidden;
    }
    .tour-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
    .tour-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(1,13,26,0.2) 0%, rgba(1,13,26,0.85) 100%); }
    @media (max-width: 768px) { .tour-hero-img { height: 380px; } }

    .tour-hero-content {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
      max-width: 1200px; margin: 0 auto; padding: 0 24px 44px;
    }
    .tour-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; flex-wrap: wrap; }
    .tour-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .tour-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
    .tour-breadcrumb .sep { color: rgba(255,255,255,0.2); }
    .tour-region-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; background: #7c3aed; color: #fff; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
    .tour-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5.5vw, 70px); letter-spacing: 2px; color: #fff; line-height: 0.95; margin-bottom: 18px; }
    .tour-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700; color: #fff;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      padding: 7px 14px; border-radius: 6px; backdrop-filter: blur(6px);
    }

    /* ===== QUICK FACTS STRIP ===== */
    .quick-facts-strip { background: var(--navy2); border-bottom: 1px solid rgba(21,123,207,0.2); }
    .quick-facts-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; flex-wrap: wrap; }
    .quick-fact {
      display: flex; align-items: center; gap: 10px;
      padding: 18px 28px 18px 0; margin-right: 28px;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .quick-fact:last-child { border-right: none; }
    .quick-fact .icon { font-size: 20px; }
    .quick-fact .label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
    .quick-fact .value { font-size: 14px; font-weight: 800; color: #fff; margin-top: 1px; }
    @media (max-width: 768px) {
      .quick-facts-inner { gap: 0; }
      .quick-fact { padding: 14px 16px; margin-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); width: 50%; }
    }
    @media (max-width: 400px) { .quick-fact { width: 100%; } }

    /* ===== MAIN LAYOUT ===== */
    .tour-main { max-width: 1200px; margin: 0 auto; padding: 52px 24px 80px; display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
    @media (max-width: 1000px) { .tour-main { grid-template-columns: 1fr; } }

    /* ===== ARTICLE CONTENT ===== */
    .tour-content { min-width: 0; }
    .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3.5vw, 36px); letter-spacing: 2px; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--light-bg2); }
    .tour-overview { margin-bottom: 48px; }
    .tour-overview p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

    /* Highlights */
    .highlights-section { margin-bottom: 48px; }
    .highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media (max-width: 560px) { .highlights-grid { grid-template-columns: 1fr; } }
    .highlight-item { display: flex; align-items: flex-start; gap: 10px; background: var(--light-bg2); border-radius: 10px; padding: 14px 16px; }
    .highlight-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .highlight-text { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }

    /* ===== ITINERARY ===== */
    .itinerary-section { margin-bottom: 48px; }
    .itinerary-list { display: flex; flex-direction: column; gap: 0; }
    .itinerary-day {
      border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; margin-bottom: 10px;
    }
    .itinerary-day-header {
      display: flex; align-items: center; gap: 0; cursor: pointer;
      background: #fff; padding: 0; transition: background 0.2s;
      user-select: none;
    }
    .itinerary-day-header:hover { background: var(--light-bg2); }
    .itinerary-day.is-open .itinerary-day-header { background: var(--navy); }
    .day-num {
      display: flex; align-items: center; justify-content: center; flex-direction: column;
      background: var(--light-bg2); min-width: 68px; align-self: stretch; padding: 16px 12px;
      border-right: 1px solid #e2e8f0;
    }
    .itinerary-day.is-open .day-num { background: rgba(255,255,255,0.07); border-right-color: rgba(255,255,255,0.1); }
    .day-num .day-label { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .itinerary-day.is-open .day-num .day-label { color: rgba(255,255,255,0.4); }
    .day-num .day-number { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue); line-height: 1; }
    .itinerary-day.is-open .day-num .day-number { color: var(--green); }
    .day-header-text { flex: 1; padding: 16px 20px; }
    .day-header-text .day-title { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 3px; }
    .itinerary-day.is-open .day-header-text .day-title { color: #fff; }
    .day-header-text .day-subtitle { font-size: 12px; color: var(--text-muted); }
    .itinerary-day.is-open .day-header-text .day-subtitle { color: rgba(255,255,255,0.45); }
    .day-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
    .day-tag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: rgba(21,123,207,0.1); color: var(--blue); }
    .itinerary-day.is-open .day-tag { background: rgba(119,232,98,0.15); color: var(--green); }
    .day-toggle { padding: 16px 20px; font-size: 18px; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
    .itinerary-day.is-open .day-toggle { transform: rotate(180deg); color: var(--green); }
    .itinerary-day-body { display: none; padding: 20px 24px 20px 88px; background: #fff; border-top: 1px solid var(--light-bg2); }
    .itinerary-day.is-open .itinerary-day-body { display: block; }
    .itinerary-day-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
    .itinerary-day-body p:last-child { margin-bottom: 0; }
    .day-activities { list-style: none; padding: 0; margin-bottom: 12px; }
    .day-activities li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-dark); font-weight: 500; padding: 5px 0; border-bottom: 1px solid var(--light-bg2); }
    .day-activities li:last-child { border-bottom: none; }
    .day-activities li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
    .day-meals { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
    .meal-chip { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 4px; background: rgba(119,232,98,0.1); color: #166534; border: 1px solid rgba(119,232,98,0.3); }
    @media (max-width: 560px) { .itinerary-day-body { padding-left: 20px; } }

    /* ===== INCLUDED / EXCLUDED ===== */
    .included-section { margin-bottom: 48px; }
    .inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    @media (max-width: 560px) { .inc-grid { grid-template-columns: 1fr; } }
    .inc-box { background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; padding: 22px 24px; }
    .inc-box-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
    .inc-box-header .badge { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; }
    .inc-box.included .badge { background: rgba(119,232,98,0.15); color: #166534; }
    .inc-box.excluded .badge { background: rgba(239,68,68,0.1); color: #991b1b; }
    .inc-list { list-style: none; }
    .inc-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-dark); padding: 6px 0; border-bottom: 1px solid var(--light-bg2); }
    .inc-list li:last-child { border-bottom: none; }
    .inc-list li .check { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
    .inc-box.included .check { color: #166534; }
    .inc-box.excluded .check { color: #dc2626; }

    /* ===== DEPARTURES TABLE ===== */
    .departures-section { margin-bottom: 48px; }
    .dep-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
    .dep-table thead { background: var(--navy); }
    .dep-table thead th { padding: 14px 18px; text-align: left; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .dep-table tbody tr { background: #fff; border-bottom: 1px solid var(--light-bg2); }
    .dep-table tbody tr:last-child { border-bottom: none; }
    .dep-table tbody td { padding: 14px 18px; font-size: 13px; color: var(--text-dark); font-weight: 500; }
    .dep-status { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
    .dep-status.available { background: rgba(119,232,98,0.12); color: #166534; }
    .dep-status.low { background: rgba(255,159,67,0.15); color: #92400e; }
    .dep-status.sold { background: rgba(239,68,68,0.1); color: #991b1b; }
    .dep-book-btn { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 4px; background: var(--navy); color: #fff; cursor: pointer; border: none; transition: background 0.2s; }
    .dep-book-btn:hover { background: var(--blue); }
    .dep-book-btn:disabled, .dep-book-btn.sold { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; }

    /* ===== PHOTO GALLERY ===== */
    .gallery-section { margin-bottom: 48px; }
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; gap: 10px; border-radius: 14px; overflow: hidden; }
    .gallery-grid .main-photo { grid-column: 1 / 2; grid-row: 1 / 3; }
    .gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; cursor: pointer; }
    .gallery-grid img:hover { transform: scale(1.03); }
    @media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; } .gallery-grid .main-photo { grid-column: 1/2; grid-row: 1/3; } }

    /* ===== GUIDE ===== */
    .guide-section { margin-bottom: 48px; }
    .guide-card { display: flex; align-items: flex-start; gap: 24px; background: #fff; border-radius: 14px; border: 1px solid #e2e8f0; padding: 28px; }
    @media (max-width: 540px) { .guide-card { flex-direction: column; align-items: center; text-align: center; } }
    .guide-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(119,232,98,0.4); }
    .guide-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
    .guide-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1.5px; color: var(--text-dark); margin-bottom: 6px; }
    .guide-bio { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
    .guide-credentials { display: flex; flex-wrap: wrap; gap: 8px; }
    .guide-cred { font-size: 11px; font-weight: 700; color: var(--text-muted); background: var(--light-bg2); padding: 4px 12px; border-radius: 6px; }

    /* ===== REVIEWS ===== */
    .reviews-section { margin-bottom: 48px; }
    .reviews-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
    .reviews-avg { text-align: center; }
    .reviews-avg .score { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--text-dark); line-height: 1; }
    .reviews-avg .stars { font-size: 18px; color: #f59e0b; letter-spacing: 2px; }
    .reviews-avg .count { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-top: 4px; }
    .reviews-divider { width: 1px; height: 72px; background: #e2e8f0; }
    .reviews-bars { flex: 1; }
    .rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
    .rating-bar-row .bar-label { font-size: 11px; font-weight: 700; color: var(--text-muted); width: 40px; }
    .rating-bar { flex: 1; height: 6px; background: var(--light-bg2); border-radius: 3px; overflow: hidden; }
    .rating-bar-fill { height: 100%; background: #f59e0b; border-radius: 3px; }
    .rating-bar-row .bar-pct { font-size: 11px; font-weight: 700; color: var(--text-muted); width: 32px; text-align: right; }
    .review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 560px) { .review-cards { grid-template-columns: 1fr; } .reviews-header { flex-wrap: wrap; } }
    .review-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; }
    .review-stars { font-size: 13px; color: #f59e0b; margin-bottom: 8px; }
    .review-text { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 10px; }
    .review-author img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
    .review-author .name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
    .review-author .meta { font-size: 11px; color: var(--text-muted); }

    /* ===== FAQ ===== */
    .faq-section { margin-bottom: 48px; }
    .faq-item { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
    .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--text-dark); background: #fff; transition: background 0.2s; user-select: none; }
    .faq-question:hover { background: var(--light-bg2); }
    .faq-item.is-open .faq-question { background: var(--navy); color: #fff; }
    .faq-chevron { font-size: 16px; transition: transform 0.3s; color: var(--text-muted); }
    .faq-item.is-open .faq-chevron { transform: rotate(180deg); color: var(--green); }
    .faq-answer { display: none; padding: 16px 20px; font-size: 13px; color: var(--text-muted); line-height: 1.7; background: #fff; border-top: 1px solid var(--light-bg2); }
    .faq-item.is-open .faq-answer { display: block; }

    /* ===== BOOKING SIDEBAR ===== */
    .tour-sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 20px; }
    @media (max-width: 1000px) { .tour-sidebar { position: static; } }

    .booking-card { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
    .booking-card-header { background: var(--navy2); padding: 22px 24px; }
    .booking-card-header .spots { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
    .spots-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
    .spots-text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.65); }
    .booking-price { display: flex; align-items: flex-end; gap: 6px; }
    .booking-price .from { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
    .booking-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--green); letter-spacing: 1px; line-height: 1; }
    .booking-price .pp { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
    .booking-includes { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 6px; }
    .booking-includes span { color: rgba(119,232,98,0.8); font-weight: 700; }

    .booking-form { padding: 22px 24px; }
    .form-label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; display: block; }
    .form-input, .form-select {
      width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
      font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--text-dark);
      background: #fff; outline: none; transition: border-color 0.2s; margin-bottom: 14px;
    }
    .form-input:focus, .form-select:focus { border-color: var(--blue); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--text-dark); background: #fff; outline: none; transition: border-color 0.2s; margin-bottom: 14px; resize: vertical; min-height: 80px; }
    .form-textarea:focus { border-color: var(--blue); }
    .btn-book { display: block; width: 100%; text-align: center; padding: 16px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 8px; border: none; cursor: pointer; transition: all 0.2s; margin-bottom: 12px; }
    .btn-book:hover { background: #8fff70; }
    .booking-note { font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.5; }
    .booking-note strong { color: var(--text-dark); }

    /* Sidebar trust items */
    .trust-card { background: #fff; border-radius: 14px; border: 1px solid #e2e8f0; padding: 20px; }
    .trust-card h4 { font-size: 13px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
    .trust-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .trust-item:last-child { margin-bottom: 0; }
    .trust-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
    .trust-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
    .trust-item strong { color: var(--text-dark); }

    /* Sidebar next departure */
    .next-dep-card { background: var(--navy2); border-radius: 14px; padding: 20px 22px; }
    .next-dep-card .label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
    .next-dep-card .date { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: #fff; line-height: 1; margin-bottom: 4px; }
    .next-dep-card .spots { font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 14px; }
    .next-dep-card a { display: block; text-align: center; padding: 12px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 6px; }

    /* ===== RELATED TOURS ===== */
    .related-section { background: var(--light-bg2); padding: 60px 0; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    @media (max-width: 900px) { .related-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }
    .related-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; transition: transform 0.3s, box-shadow 0.3s; }
    .related-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
    .related-card-img { height: 180px; overflow: hidden; position: relative; }
    .related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .related-card:hover .related-card-img img { transform: scale(1.05); }
    .related-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; color: #fff; }
    .related-card-body { padding: 18px; }
    .related-card-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 6px; line-height: 1.1; }
    .related-card-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
    .related-card-footer { display: flex; align-items: center; justify-content: space-between; }
    .related-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text-dark); }
    .related-price span { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; color: var(--text-muted); vertical-align: middle; margin-right: 2px; }
    .related-link { font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); }
    .related-link:hover { color: var(--dark-blue); }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: var(--blue); padding: 72px 0; }
    .newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; padding: 0 24px; }
    .newsletter-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: #fff; margin-bottom: 12px; }
    .newsletter-section p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 28px; }
    .newsletter-form { display: flex; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
    .newsletter-form input { flex: 1; padding: 16px 20px; border: none; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .newsletter-form button { padding: 16px 24px; background: var(--navy); color: #fff; border: none; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
    .newsletter-form button:hover { background: var(--navy2); }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 14px; }
    @media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
    .footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ==============================================================
   BLOG PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block; }
    .section-label.on-dark { color: var(--green); }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }
    .btn-outline-dark {
      display: inline-block; background: transparent; color: var(--text-dark);
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
      letter-spacing: 1px; text-transform: uppercase; padding: 12px 28px;
      border-radius: 4px; border: 2px solid #e2e8f0; cursor: pointer; transition: all 0.2s;
    }
    .btn-outline-dark:hover { border-color: var(--blue); color: var(--blue); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.95);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== BLOG HERO ===== */
    .blog-hero {
      padding-top: 72px; background: var(--navy);
      background-image: linear-gradient(160deg, rgba(1,13,26,0.92) 0%, rgba(1,79,127,0.4) 60%, rgba(1,13,26,0.95) 100%),
        url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80');
      background-size: cover; background-position: center 35%;
    }
    .blog-hero-inner { max-width: 1200px; margin: 0 auto; padding: 72px 24px 64px; }
    .blog-hero-inner .section-label { justify-content: flex-start; }
    .blog-hero-inner h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 8vw, 100px); letter-spacing: 3px; color: #fff; line-height: 0.9; margin-bottom: 20px; }
    .blog-hero-inner h1 span { color: var(--green); }
    .blog-hero-inner p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; margin-bottom: 36px; }
    .blog-search { display: flex; max-width: 520px; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
    .blog-search input { flex: 1; padding: 15px 20px; background: rgba(255,255,255,0.08); border: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .blog-search input::placeholder { color: rgba(255,255,255,0.35); }
    .blog-search button { background: var(--blue); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; padding: 15px 24px; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
    .blog-search button:hover { background: var(--dark-blue); }

    /* ===== CATEGORY FILTER ===== */
    .category-bar { background: #fff; border-bottom: 1px solid #e2e8f0; position: sticky; top: 72px; z-index: 100; }
    .category-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
    .category-inner::-webkit-scrollbar { display: none; }
    .cat-btn { flex-shrink: 0; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); padding: 16px 18px; border-bottom: 3px solid transparent; cursor: pointer; transition: all 0.2s; white-space: nowrap; background: none; border-top: none; border-left: none; border-right: none; font-family: 'Montserrat', sans-serif; }
    .cat-btn:hover { color: var(--blue); }
    .cat-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

    /* ===== FEATURED POST ===== */
    .featured-section { background: var(--light-bg); padding: 64px 0 0; }
    .featured-post { display: grid; grid-template-columns: 1fr 420px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); background: #fff; }
    @media (max-width: 900px) { .featured-post { grid-template-columns: 1fr; } }
    .featured-img { position: relative; min-height: 460px; overflow: hidden; }
    .featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .featured-post:hover .featured-img img { transform: scale(1.04); }
    .featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.06) 100%); }
    .featured-badge { position: absolute; top: 20px; left: 20px; background: var(--green); color: #010d1a; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; }
    .featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
    .featured-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
    .featured-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3vw, 38px); letter-spacing: 1.5px; color: var(--text-dark); line-height: 1.05; margin-bottom: 16px; }
    .featured-body h2 a:hover { color: var(--blue); }
    .featured-body p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
    .post-meta { display: flex; align-items: center; gap: 16px; font-size: 11px; color: var(--text-muted); margin-bottom: 24px; }
    .post-meta-author { display: flex; align-items: center; gap: 8px; font-weight: 600; }
    .post-meta-author img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
    .read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); transition: gap 0.2s; }
    .read-more:hover { gap: 12px; }
    .read-more::after { content: '→'; }

    /* ===== BLOG GRID ===== */
    .blog-grid-section { background: var(--light-bg); padding: 48px 0 80px; }
    .blog-grid-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
    .blog-grid-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; color: var(--text-dark); }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    @media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
    .post-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.28s; }
    .post-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .post-img { height: 210px; position: relative; overflow: hidden; }
    .post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .post-card:hover .post-img img { transform: scale(1.06); }
    .post-cat-badge { position: absolute; top: 12px; left: 12px; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
    .cat-destinations { background: rgba(21,123,207,0.9); color: #fff; }
    .cat-dining { background: rgba(255,107,53,0.9); color: #fff; }
    .cat-attractions { background: rgba(139,92,246,0.9); color: #fff; }
    .cat-tours { background: rgba(16,185,129,0.9); color: #fff; }
    .cat-gear { background: rgba(245,158,11,0.9); color: #fff; }
    .cat-transport { background: rgba(6,182,212,0.9); color: #fff; }
    .cat-tips { background: rgba(236,72,153,0.9); color: #fff; }
    .post-body { padding: 20px 22px 22px; }
    .post-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1px; color: var(--text-dark); line-height: 1.1; margin-bottom: 10px; }
    .post-body h3 a:hover { color: var(--blue); }
    .post-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
    .post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid #f0f4f8; }
    .post-author { display: flex; align-items: center; gap: 8px; }
    .post-author img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
    .post-author-name { font-size: 11px; font-weight: 600; color: var(--text-muted); }
    .post-date { font-size: 11px; color: var(--text-muted); }
    .post-read-time { font-size: 10px; font-weight: 600; color: var(--blue); background: rgba(21,123,207,0.08); padding: 3px 8px; border-radius: 3px; }

    /* ===== EDITORIAL SPOTLIGHT ===== */
    .spotlight-section { background: var(--navy2); padding: 72px 0; }
    .spotlight-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    @media (max-width: 768px) { .spotlight-inner { grid-template-columns: 1fr; } }
    .spotlight-img { border-radius: 14px; overflow: hidden; height: 420px; }
    .spotlight-img img { width: 100%; height: 100%; object-fit: cover; }
    .spotlight-body .section-label { margin-bottom: 16px; }
    .spotlight-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 52px); letter-spacing: 2px; color: #fff; line-height: 1; margin-bottom: 20px; }
    .spotlight-body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 28px; }
    .spotlight-posts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
    .spotlight-post-link { display: flex; gap: 14px; align-items: center; padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; transition: all 0.2s; }
    .spotlight-post-link:hover { background: rgba(255,255,255,0.08); border-color: rgba(21,123,207,0.35); }
    .spotlight-post-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--green); flex-shrink: 0; width: 32px; line-height: 1; }
    .spotlight-post-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.4; }
    .spotlight-post-cat { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 3px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

    /* ===== CATEGORIES SECTION ===== */
    .cats-section { background: #fff; padding: 72px 0; }
    .cats-section .section-header { margin-bottom: 40px; }
    .cats-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    @media (max-width: 900px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
    .cat-card { position: relative; border-radius: 12px; overflow: hidden; height: 180px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
    .cat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.18); }
    .cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
    .cat-card:hover .cat-card-bg { transform: scale(1.06); }
    .cat-card-overlay { position: absolute; inset: 0; }
    .cat-card-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
    .cat-card-icon { font-size: 28px; margin-bottom: 8px; }
    .cat-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; line-height: 1; }
    .cat-card-count { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }

    /* ===== MORE POSTS GRID ===== */
    .more-posts-section { background: var(--light-bg2); padding: 72px 0; }
    .more-posts-section .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 12px; }
    .more-posts-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); }
    .more-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    @media (max-width: 640px) { .more-grid { grid-template-columns: 1fr; } }
    .more-post { display: flex; gap: 20px; align-items: flex-start; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.25s; }
    .more-post:hover { border-color: #c8d8e8; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .more-post-img { width: 130px; height: 110px; flex-shrink: 0; overflow: hidden; }
    .more-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .more-post:hover .more-post-img img { transform: scale(1.06); }
    .more-post-body { padding: 16px 16px 16px 0; flex: 1; }
    .more-post-cat { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
    .more-post-body h4 { font-size: 14px; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 6px; }
    .more-post-body h4 a:hover { color: var(--blue); }
    .more-post-body p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
    .more-post-meta { font-size: 10px; color: var(--text-muted); margin-top: 8px; font-weight: 600; }

    /* ===== LOAD MORE ===== */
    .load-more-bar { text-align: center; padding: 48px 0 0; }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: linear-gradient(135deg, var(--dark-blue) 0%, #010d1a 100%); padding: 80px 24px; }
    .newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .newsletter-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; color: #fff; margin-bottom: 16px; }
    .newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
    .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; border-radius: 4px; overflow: hidden; }
    .newsletter-form input { flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button { background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; padding: 16px 24px; border: none; cursor: pointer; white-space: nowrap; }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }

/* ==============================================================
   BLOG-POST PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.97);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

    /* ===== POST HERO ===== */
    .post-hero {
      padding-top: 72px;
      background: var(--navy2);
    }
    .post-hero-img { position: relative; height: 520px; overflow: hidden; }
    .post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
    .post-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(1,13,26,0.3) 0%, rgba(1,13,26,0.75) 100%); }
    @media (max-width: 768px) { .post-hero-img { height: 300px; } }
    .post-hero-content { max-width: 860px; margin: 0 auto; padding: 40px 24px 48px; }
    .post-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 20px; flex-wrap: wrap; }
    .post-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .post-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
    .post-breadcrumb .current { color: var(--green); }
    .post-cat-label { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; background: rgba(21,123,207,0.85); color: #fff; padding: 4px 12px; border-radius: 4px; margin-bottom: 16px; }
    .post-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 62px); letter-spacing: 2px; color: #fff; line-height: 1.0; margin-bottom: 20px; }
    .post-hero-content .post-excerpt { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 700px; margin-bottom: 28px; }
    .post-meta-bar { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .post-author-info { display: flex; align-items: center; gap: 10px; }
    .post-author-info img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(119,232,98,0.5); }
    .post-author-name { font-size: 13px; font-weight: 700; color: #fff; }
    .post-author-role { font-size: 11px; color: rgba(255,255,255,0.45); }
    .post-meta-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
    .post-meta-item { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; }
    .post-meta-item span { color: rgba(255,255,255,0.75); }

    /* ===== ARTICLE LAYOUT ===== */
    .article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; max-width: 1160px; margin: 0 auto; padding: 56px 24px 80px; align-items: start; }
    @media (max-width: 960px) { .article-layout { grid-template-columns: 1fr; } }

    /* ===== ARTICLE BODY ===== */
    .article-body { min-width: 0; }
    .article-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3vw, 36px); letter-spacing: 2px; color: var(--text-dark); margin: 44px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--light-bg2); }
    .article-body h2:first-child { margin-top: 0; }
    .article-body h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: var(--text-dark); margin: 28px 0 12px; }
    .article-body p { font-family: 'Merriweather', serif; font-size: 16px; color: #2d3748; line-height: 1.9; margin-bottom: 20px; }
    .article-body ul, .article-body ol { margin: 0 0 20px 0; padding-left: 24px; }
    .article-body ul li, .article-body ol li { font-family: 'Merriweather', serif; font-size: 15px; color: #2d3748; line-height: 1.8; margin-bottom: 8px; }
    .article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
    .article-body a:hover { color: var(--dark-blue); }
    .article-body strong { font-weight: 700; color: var(--text-dark); }

    /* Inline images */
    .article-img { margin: 32px 0; border-radius: 12px; overflow: hidden; }
    .article-img img { width: 100%; height: 380px; object-fit: cover; }
    @media (max-width: 600px) { .article-img img { height: 220px; } }
    .article-img figcaption { font-size: 12px; color: var(--text-muted); padding: 10px 14px; background: var(--light-bg2); font-style: italic; }

    /* Pull quote */
    .pull-quote { margin: 36px 0; padding: 28px 32px; border-left: 4px solid var(--green); background: var(--light-bg2); border-radius: 0 12px 12px 0; }
    .pull-quote p { font-family: 'Merriweather', serif; font-size: 18px; font-style: italic; color: var(--text-dark); line-height: 1.7; margin: 0; }
    .pull-quote cite { display: block; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-top: 12px; font-style: normal; }

    /* Tip / callout box */
    .tip-box { margin: 32px 0; padding: 22px 24px; border-radius: 12px; }
    .tip-box.green { background: rgba(119,232,98,0.1); border: 1px solid rgba(119,232,98,0.3); }
    .tip-box.blue { background: rgba(21,123,207,0.08); border: 1px solid rgba(21,123,207,0.25); }
    .tip-box.orange { background: rgba(255,159,67,0.1); border: 1px solid rgba(255,159,67,0.3); }
    .tip-box-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
    .tip-box-icon { font-size: 20px; }
    .tip-box-label { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
    .tip-box.green .tip-box-label { color: #2a8a1a; }
    .tip-box.blue .tip-box-label { color: var(--blue); }
    .tip-box.orange .tip-box-label { color: #c47b00; }
    .tip-box p { font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }
    .tip-box ul { margin: 8px 0 0; padding-left: 18px; }
    .tip-box ul li { font-family: 'Montserrat', sans-serif; font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 4px; }

    /* Info table */
    .info-table { width: 100%; border-collapse: collapse; margin: 28px 0; border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; }
    .info-table th { background: var(--navy2); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 16px; text-align: left; }
    .info-table td { padding: 12px 16px; font-size: 13.5px; color: var(--text-muted); border-bottom: 1px solid #f0f4f8; }
    .info-table tr:last-child td { border-bottom: none; }
    .info-table tr:nth-child(even) td { background: var(--light-bg); }
    .info-table td strong { color: var(--text-dark); }

    /* Share bar */
    .share-bar { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; margin: 40px 0; flex-wrap: wrap; }
    .share-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .share-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; padding: 8px 16px; border-radius: 4px; transition: all 0.2s; cursor: pointer; }
    .share-btn.twitter { background: #1da1f2; color: #fff; }
    .share-btn.facebook { background: #1877f2; color: #fff; }
    .share-btn.copy { background: var(--light-bg2); color: var(--text-dark); border: 1px solid #e2e8f0; }
    .share-btn:hover { opacity: 0.88; transform: translateY(-1px); }

    /* Author bio */
    .author-bio { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--light-bg2); border-radius: 14px; margin: 48px 0 0; }
    .author-bio img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--blue); }
    .author-bio-text h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1.5px; color: var(--text-dark); margin-bottom: 4px; }
    .author-bio-text .author-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
    .author-bio-text p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }
    @media (max-width: 500px) { .author-bio { flex-direction: column; } }

    /* ===== SIDEBAR ===== */
    .article-sidebar { position: sticky; top: 92px; }
    @media (max-width: 960px) { .article-sidebar { position: static; } }

    /* TOC */
    .toc-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; margin-bottom: 24px; }
    .toc-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--blue); }
    .toc-list { list-style: none; }
    .toc-list li { border-bottom: 1px solid var(--light-bg2); }
    .toc-list li:last-child { border-bottom: none; }
    .toc-list li a { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text-muted); padding: 9px 0; transition: color 0.2s; line-height: 1.4; }
    .toc-list li a:hover { color: var(--blue); }
    .toc-list li a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #c8d8e8; flex-shrink: 0; transition: background 0.2s; }
    .toc-list li a:hover::before { background: var(--blue); }
    .toc-num { font-size: 10px; font-weight: 800; color: var(--blue); flex-shrink: 0; min-width: 18px; }

    /* Sidebar newsletter */
    .sidebar-newsletter { background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
    .sidebar-newsletter h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: #fff; margin-bottom: 10px; }
    .sidebar-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 16px; }
    .sidebar-newsletter input { width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 13px; outline: none; margin-bottom: 10px; }
    .sidebar-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
    .sidebar-newsletter button { width: 100%; padding: 12px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; }

    /* Sidebar related posts */
    .sidebar-related { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; margin-bottom: 24px; }
    .sidebar-related h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--light-bg2); }
    .related-post-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--light-bg2); }
    .related-post-item:last-child { border-bottom: none; padding-bottom: 0; }
    .related-post-img { width: 72px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
    .related-post-img img { width: 100%; height: 100%; object-fit: cover; }
    .related-post-info .cat { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
    .related-post-info h5 { font-size: 12px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
    .related-post-info h5 a:hover { color: var(--blue); }
    .related-post-info .read-time { font-size: 10px; color: var(--text-muted); margin-top: 4px; }

    /* Sidebar CTA */
    .sidebar-cta { background: var(--green); border-radius: 14px; padding: 24px; text-align: center; }
    .sidebar-cta h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: #010d1a; margin-bottom: 8px; }
    .sidebar-cta p { font-size: 13px; color: rgba(1,13,26,0.7); line-height: 1.6; margin-bottom: 16px; }
    .sidebar-cta a { display: block; padding: 12px; background: #010d1a; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; transition: background 0.2s; }
    .sidebar-cta a:hover { background: var(--navy2); }

    /* ===== RELATED POSTS GRID ===== */
    .related-section { background: var(--light-bg2); padding: 72px 0; }
    .related-section .section-header { margin-bottom: 36px; }
    .related-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }
    .post-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.28s; }
    .post-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .post-img { height: 210px; position: relative; overflow: hidden; }
    .post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .post-card:hover .post-img img { transform: scale(1.06); }
    .post-cat-badge { position: absolute; top: 12px; left: 12px; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
    .cat-destinations { background: rgba(21,123,207,0.9); color: #fff; }
    .cat-dining { background: rgba(255,107,53,0.9); color: #fff; }
    .cat-attractions { background: rgba(139,92,246,0.9); color: #fff; }
    .cat-transport { background: rgba(6,182,212,0.9); color: #fff; }
    .cat-gear { background: rgba(245,158,11,0.9); color: #fff; }
    .post-body { padding: 20px 22px 22px; }
    .post-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1px; color: var(--text-dark); line-height: 1.1; margin-bottom: 10px; }
    .post-body h3 a:hover { color: var(--blue); }
    .post-body p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
    .post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid #f0f4f8; }
    .post-author { display: flex; align-items: center; gap: 8px; }
    .post-author img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
    .post-author-name { font-size: 11px; font-weight: 600; color: var(--text-muted); }
    .post-read-time { font-size: 10px; font-weight: 600; color: var(--blue); background: rgba(21,123,207,0.08); padding: 3px 8px; border-radius: 3px; }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: linear-gradient(135deg, var(--dark-blue) 0%, #010d1a 100%); padding: 80px 24px; }
    .newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .newsletter-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; color: #fff; margin-bottom: 16px; }
    .newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
    .newsletter-form { display: flex; max-width: 480px; margin: 0 auto 16px; border-radius: 4px; overflow: hidden; }
    .newsletter-form input { flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button { background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; padding: 16px 24px; border: none; cursor: pointer; white-space: nowrap; }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 8px; }

/* ==============================================================
   COUNTRY PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block;
    }
    .section-label.on-dark { color: var(--green); }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }
    .btn-outline {
      display: inline-block; background: transparent; color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 1px; text-transform: uppercase; padding: 13px 32px;
      border-radius: 4px; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.95);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; height: 72px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== TRUST BAR ===== */
    .trust-bar { background: var(--dark-blue); overflow: hidden; height: 40px; display: flex; align-items: center; }
    .trust-track {
      display: flex; align-items: center; width: max-content;
      animation: trustScroll 28s linear infinite;
    }
    @keyframes trustScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(255,255,255,0.8); white-space: nowrap; padding: 0 32px;
    }
    .trust-divider { color: rgba(255,255,255,0.2); font-size: 16px; }

    /* ===== HERO ===== */
    .country-hero {
      min-height: 65vh; position: relative;
      display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
    }
    .country-hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(160deg, rgba(1,13,26,0.78) 0%, rgba(1,79,127,0.3) 55%, rgba(1,13,26,0.88) 100%),
        url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=80');
      background-size: cover; background-position: center 30%;
    }
    .country-hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 30%, rgba(1,13,26,0.72) 100%);
    }
    .country-hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto;
      padding: 100px 24px 52px; width: 100%;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .breadcrumb span.current { color: var(--green); }
    .breadcrumb-sep { color: rgba(255,255,255,0.25); }
    .country-flag {
      font-size: 48px; margin-bottom: 12px; display: block; line-height: 1;
    }
    .country-hero-content h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 9vw, 110px);
      line-height: 0.92; letter-spacing: 2px;
      color: #fff; margin-bottom: 16px;
    }
    .country-hero-content h1 .accent { color: var(--green); }
    .country-hero-content p.tagline {
      font-size: clamp(14px, 1.8vw, 17px); font-weight: 500;
      color: rgba(255,255,255,0.78); max-width: 520px;
      line-height: 1.6; margin-bottom: 32px;
    }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    /* ===== HERO STATS BAR ===== */
    .hero-stats-bar {
      position: relative; z-index: 2;
      background: rgba(1,13,26,0.88); backdrop-filter: blur(8px);
      border-top: 1px solid rgba(21,123,207,0.2);
    }
    .hero-stats-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: stretch;
    }
    .hero-stat {
      flex: 1; padding: 20px 24px; display: flex; align-items: center; gap: 16px;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-icon { font-size: 24px; }
    .hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; color: var(--green); line-height: 1; }
    .hero-stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px; }

    /* ===== INTRO SECTION ===== */
    .intro-section { background: #fff; padding: 80px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
    .intro-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px;
      color: var(--text-dark); margin-bottom: 20px;
    }
    .intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
    .intro-text p:last-of-type { margin-bottom: 28px; }

    /* Quick facts card */
    .facts-card {
      background: var(--light-bg); border: 1px solid #e2e8f0;
      border-radius: 16px; padding: 28px; position: sticky; top: 92px;
    }
    .facts-card h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 20px;
      letter-spacing: 1px; color: var(--text-dark); margin-bottom: 20px;
      padding-bottom: 14px; border-bottom: 2px solid var(--blue);
    }
    .fact-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 12px 0; border-bottom: 1px solid #e2e8f0;
    }
    .fact-row:last-child { border-bottom: none; }
    .fact-icon { font-size: 20px; width: 28px; flex-shrink: 0; text-align: center; margin-top: 1px; }
    .fact-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
    .fact-value { font-size: 13px; font-weight: 600; color: var(--text-dark); }
    .fact-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ===== CITIES GRID ===== */
    .cities-section { background: var(--light-bg2); padding: 80px 0; }
    .cities-section .section-header { margin-bottom: 40px; }
    .cities-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark);
      margin-top: 8px;
    }
    .cities-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .city-card {
      position: relative; border-radius: 12px; overflow: hidden;
      aspect-ratio: 3/4; cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .city-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
    .city-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 0.5s;
    }
    .city-card:hover .city-card-bg { transform: scale(1.06); }
    .city-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(1,13,26,0.92) 0%, rgba(1,13,26,0.2) 60%, transparent 100%);
    }
    .city-card-body {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px;
    }
    .city-card-name {
      font-family: 'Bebas Neue', sans-serif; font-size: 22px;
      letter-spacing: 2px; color: #fff; display: block; margin-bottom: 4px;
    }
    .city-card-desc { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 12px; }
    .city-card-link {
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--green);
      display: inline-flex; align-items: center; gap: 5px;
      transition: gap 0.2s;
    }
    .city-card:hover .city-card-link { gap: 9px; }
    .city-card-link::after { content: '→'; }

    /* ===== MAP SECTION ===== */
    .map-section { background: var(--navy2); padding: 72px 0; }
    .map-section .section-header { margin-bottom: 32px; }
    .map-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff;
      margin-top: 8px;
    }
    .map-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    #uk-map {
      width: 100%; height: 480px;
      border-radius: 12px; overflow: hidden;
      border: 1px solid rgba(21,123,207,0.2);
    }
    .map-nav {
      display: flex; justify-content: center; padding: 24px 0 0;
    }
    .city-select {
      background: rgba(1,13,26,0.8); color: #fff;
      border: 1px solid rgba(21,123,207,0.5); border-radius: 4px;
      font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
      padding: 10px 16px; cursor: pointer; outline: none;
      transition: border-color 0.2s; min-width: 240px;
    }
    .city-select:hover, .city-select:focus { border-color: var(--blue); }
    .city-select option { background: #021624; }

    /* ===== FEATURED TOURS ===== */
    .tours-section { background: #fff; padding: 80px 0; }
    .tours-section .section-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
    }
    .tours-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark);
    }
    .tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tour-card {
      background: #fff; border-radius: 16px; overflow: hidden;
      border: 1px solid #e2e8f0; transition: all 0.28s;
    }
    .tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(21,123,207,0.12); }
    .tour-img {
      height: 220px; position: relative; overflow: hidden;
    }
    .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .tour-card:hover .tour-img img { transform: scale(1.06); }
    .tour-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 45%, rgba(1,13,26,0.65) 100%);
    }
    .tour-badge {
      position: absolute; top: 14px; left: 14px; z-index: 2;
      background: var(--green); color: #010d1a;
      font-size: 10px; font-weight: 800; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
    }
    .tour-badge.is-limited { background: #ff9f43; color: #fff; }
    .tour-body { padding: 20px; }
    .tour-meta {
      display: flex; align-items: center; gap: 16px;
      font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px;
    }
    .tour-meta span { display: flex; align-items: center; gap: 5px; }
    .tour-body h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 22px;
      letter-spacing: 1px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.1;
    }
    .tour-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
    .tour-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 20px; border-top: 1px solid #f0f4f8;
    }
    .tour-price .from { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
    .tour-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--blue); line-height: 1; }
    .tour-price .pp { font-size: 11px; color: var(--text-muted); }

    /* ===== VIATOR EXCURSIONS ===== */
    .exc-section { background: var(--navy2); padding: 80px 0; }
    .exc-section .section-header { margin-bottom: 36px; }
    .exc-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px;
    }
    .exc-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .exc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .exc-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px; overflow: hidden; transition: all 0.25s;
    }
    .exc-card:hover { border-color: rgba(21,123,207,0.4); background: rgba(21,123,207,0.06); transform: translateY(-3px); }
    .exc-img {
      height: 170px; position: relative; overflow: hidden;
    }
    .exc-img img { width: 100%; height: 100%; object-fit: cover; }
    .exc-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(1,13,26,0.7) 100%);
    }
    .exc-stars {
      position: absolute; bottom: 10px; left: 12px; z-index: 2;
      display: flex; align-items: center; gap: 4px;
    }
    .exc-stars .stars { color: #f59e0b; font-size: 11px; }
    .exc-stars .count { font-size: 10px; color: rgba(255,255,255,0.65); }
    .exc-body { padding: 14px; }
    .exc-location { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
    .exc-body h4 { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
    .exc-body .exc-duration { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
    .exc-footer { display: flex; align-items: center; justify-content: space-between; }
    .exc-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--green); letter-spacing: 1px; }
    .exc-price span { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; font-weight: 600; }
    .exc-btn {
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--blue); border: 1px solid rgba(21,123,207,0.35);
      padding: 6px 12px; border-radius: 4px; transition: all 0.2s;
    }
    .exc-card:hover .exc-btn { background: var(--blue); color: #fff; border-color: var(--blue); }
    .exc-footer-bar {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
    }
    .exc-footer-bar p { font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ===== TRAVEL TIPS ===== */
    .tips-section { background: var(--light-bg2); padding: 80px 0; }
    .tips-section .section-header { margin-bottom: 36px; }
    .tips-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px;
    }
    .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tip-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e2e8f0; }
    .tip-icon { font-size: 32px; margin-bottom: 14px; }
    .tip-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 10px; }
    .tip-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
    .tip-card ul { list-style: none; margin-top: 10px; }
    .tip-card ul li {
      font-size: 13px; color: var(--text-muted); line-height: 1.6;
      padding: 4px 0 4px 16px; position: relative;
    }
    .tip-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; }

    /* ===== LANDMARKS ===== */
    .landmarks-section { background: var(--navy2); padding: 80px 0; }
    .landmarks-section .section-header { margin-bottom: 40px; }
    .landmarks-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px;
    }
    .landmarks-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .landmarks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .landmark-card {
      border-radius: 12px; overflow: hidden; position: relative;
      height: 300px; cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .landmark-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
    .landmark-card img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s;
    }
    .landmark-card:hover img { transform: scale(1.06); }
    .landmark-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(1,13,26,0.95) 0%, rgba(1,13,26,0.3) 55%, transparent 100%);
    }
    .landmark-body {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px;
    }
    .landmark-tag {
      display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; background: rgba(21,123,207,0.8); color: #fff;
      padding: 3px 8px; border-radius: 3px; margin-bottom: 8px;
    }
    .landmark-body h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px;
      color: #fff; margin-bottom: 4px; line-height: 1.1;
    }
    .landmark-body p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }
    .landmark-location {
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--green); margin-bottom: 6px; display: block;
    }

    /* ===== MUSEUMS ===== */
    .museums-section { background: var(--light-bg2); padding: 80px 0; }
    .museums-section .section-header { margin-bottom: 40px; }
    .museums-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px;
    }
    .museums-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .museums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .museum-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      border: 1px solid #e2e8f0; transition: all 0.25s;
    }
    .museum-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .museum-img { height: 180px; overflow: hidden; }
    .museum-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .museum-card:hover .museum-img img { transform: scale(1.05); }
    .museum-body { padding: 18px 20px 20px; }
    .museum-meta {
      display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap;
    }
    .museum-badge {
      font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 3px 8px; border-radius: 3px;
    }
    .museum-badge.free { background: rgba(119,232,98,0.15); color: #2a8a1a; }
    .museum-badge.paid { background: rgba(21,123,207,0.1); color: var(--blue); }
    .museum-city { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .museum-body h3 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.2; }
    .museum-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
    .museum-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
    .museum-highlight {
      font-size: 10px; font-weight: 600; color: var(--text-muted);
      background: var(--light-bg2); padding: 3px 8px; border-radius: 20px;
      border: 1px solid #e2e8f0;
    }

    /* ===== THINGS TO DO ===== */
    .things-section { background: #fff; padding: 80px 0; }
    .things-section .section-header { margin-bottom: 40px; }
    .things-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px;
    }
    .things-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .things-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .thing-card {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 22px; border-radius: 12px; border: 1px solid #e2e8f0;
      transition: all 0.2s; background: #fff;
    }
    .thing-card:hover { border-color: rgba(21,123,207,0.35); box-shadow: 0 6px 20px rgba(21,123,207,0.08); }
    .thing-icon {
      font-size: 28px; width: 48px; height: 48px; flex-shrink: 0;
      background: var(--light-bg2); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .thing-content h4 { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
    .thing-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
    .thing-tag {
      display: inline-block; margin-top: 8px; font-size: 9px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
      background: rgba(21,123,207,0.08); padding: 3px 8px; border-radius: 3px;
    }

    /* ===== TRANSPORTATION ===== */
    .transport-section { background: var(--navy2); padding: 80px 0; }
    .transport-section .section-header { margin-bottom: 40px; }
    .transport-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--white); margin-top: 8px;
    }
    .transport-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 560px; margin-top: 10px; }
    .transport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
    @media (max-width: 900px) { .transport-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px) { .transport-grid { grid-template-columns: 1fr; } }
    .transport-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
      border-radius: 14px; padding: 24px; transition: border-color .2s, background .2s;
    }
    .transport-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(119,232,98,0.3); }
    .transport-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .transport-icon { font-size: 26px; line-height: 1; }
    .transport-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1.5px; color: var(--white); }
    .transport-cost { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    .transport-card p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 12px; }
    .transport-tips { list-style: none; padding: 0; margin: 0; }
    .transport-tips li { font-size: 12.5px; color: rgba(255,255,255,0.55); padding: 4px 0 4px 18px; position: relative; border-top: 1px solid rgba(255,255,255,0.06); }
    .transport-tips li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-size: 11px; }
    .transport-tips li:first-child { border-top: none; }
    .rail-callout {
      background: rgba(21,123,207,0.1); border: 1px solid rgba(21,123,207,0.35);
      border-radius: 14px; padding: 28px 32px; display: flex; align-items: flex-start; gap: 24px;
    }
    .rail-callout-icon { font-size: 40px; flex-shrink: 0; }
    .rail-callout-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: var(--white); margin: 0 0 8px; }
    .rail-callout-body p { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 12px; }
    .rail-callout-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
    .rail-callout-body li { font-size: 12px; font-weight: 600; letter-spacing: .5px; color: var(--blue); background: rgba(21,123,207,0.15); padding: 4px 12px; border-radius: 20px; }
    @media (max-width: 640px) { .rail-callout { flex-direction: column; } }

    /* ===== TRAVEL GEAR ===== */
    .gear-section { background: #fff; padding: 80px 0; }
    .gear-section .section-header { margin-bottom: 40px; }
    .gear-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px;
    }
    .gear-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .gear-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .gear-card {
      border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden;
      transition: all 0.25s;
    }
    .gear-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .gear-img {
      height: 190px; overflow: hidden; background: var(--light-bg2);
      display: flex; align-items: center; justify-content: center;
    }
    .gear-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .gear-card:hover .gear-img img { transform: scale(1.05); }
    .gear-body { padding: 16px 18px 18px; }
    .gear-tag {
      font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
      color: var(--blue); background: rgba(21,123,207,0.1); padding: 3px 8px;
      border-radius: 3px; display: inline-block; margin-bottom: 8px;
    }
    .gear-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 6px; }
    .gear-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
    .gear-footer { display: flex; align-items: center; justify-content: space-between; }
    .gear-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text-dark); letter-spacing: 1px; }
    .gear-btn {
      font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      background: var(--blue); color: #fff; padding: 7px 14px; border-radius: 4px;
      transition: background 0.2s;
    }
    .gear-btn:hover { background: var(--dark-blue); }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: linear-gradient(135deg, var(--dark-blue) 0%, #010d1a 100%); padding: 80px 24px; }
    .newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .newsletter-inner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; color: #fff; margin-bottom: 16px;
    }
    .newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
    .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; border-radius: 4px; overflow: hidden; }
    .newsletter-form input {
      flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15); border-right: none;
      color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button {
      background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase;
      padding: 16px 24px; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap;
    }
    .newsletter-form button:hover { background: #8fff70; }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 34px; height: 34px; border-radius: 6px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
    }
    .social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }

/* ==============================================================
   CITY PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block; }
    .section-label.on-dark { color: var(--green); }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }
    .btn-outline {
      display: inline-block; background: transparent; color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 1px; text-transform: uppercase; padding: 13px 32px;
      border-radius: 4px; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.95);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== TRUST BAR ===== */
    .trust-bar { background: var(--dark-blue); overflow: hidden; height: 40px; display: flex; align-items: center; }
    .trust-track { display: flex; align-items: center; width: max-content; animation: trustScroll 28s linear infinite; }
    @keyframes trustScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); white-space: nowrap; padding: 0 32px; }
    .trust-divider { color: rgba(255,255,255,0.2); font-size: 16px; }

    /* ===== HERO ===== */
    .city-hero { min-height: 68vh; position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
    .city-hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(160deg, rgba(1,13,26,0.72) 0%, rgba(1,79,127,0.25) 55%, rgba(1,13,26,0.85) 100%),
        url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=80');
      background-size: cover; background-position: center 40%;
    }
    .city-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(1,13,26,0.75) 100%); }
    .city-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 100px 24px 52px; width: 100%; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; flex-wrap: wrap; }
    .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .breadcrumb span.current { color: var(--green); }
    .breadcrumb-sep { color: rgba(255,255,255,0.25); }
    .city-flag { font-size: 40px; margin-bottom: 12px; display: block; line-height: 1; }
    .city-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 11vw, 130px); line-height: 0.88; letter-spacing: 2px; color: #fff; margin-bottom: 18px; }
    .city-hero-content h1 .accent { color: var(--green); }
    .city-hero-content p.tagline { font-size: clamp(14px, 1.8vw, 17px); font-weight: 500; color: rgba(255,255,255,0.78); max-width: 540px; line-height: 1.6; margin-bottom: 32px; }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    /* ===== STATS BAR ===== */
    .hero-stats-bar { position: relative; z-index: 2; background: rgba(1,13,26,0.88); backdrop-filter: blur(8px); border-top: 1px solid rgba(21,123,207,0.2); }
    .hero-stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; }
    .hero-stat { flex: 1; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,0.07); }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-icon { font-size: 24px; }
    .hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; color: var(--green); line-height: 1; }
    .hero-stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px; }

    /* ===== INTRO ===== */
    .intro-section { background: #fff; padding: 80px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
    .intro-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); margin-bottom: 20px; }
    .intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
    .intro-text p:last-of-type { margin-bottom: 28px; }
    .facts-card { background: var(--light-bg); border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; position: sticky; top: 92px; }
    .facts-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--blue); }
    .fact-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid #e2e8f0; }
    .fact-row:last-child { border-bottom: none; }
    .fact-icon { font-size: 20px; width: 28px; flex-shrink: 0; text-align: center; margin-top: 1px; }
    .fact-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
    .fact-value { font-size: 13px; font-weight: 600; color: var(--text-dark); }
    .fact-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ===== MAP ===== */
    .map-section { background: var(--navy2); padding: 72px 0; }
    .map-section .section-header { margin-bottom: 32px; }
    .map-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .map-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    #city-map { width: 100%; height: 420px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(21,123,207,0.2); }
    .map-legend { display: flex; align-items: center; justify-content: center; gap: 28px; padding: 20px 0 0; flex-wrap: wrap; }
    .legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .legend-dot { width: 12px; height: 12px; border-radius: 50%; }
    .legend-dot.is-country { background: var(--blue); }
    .legend-dot.is-city { background: var(--green); }

    /* ===== NEIGHBORHOODS ===== */
    .hoods-section { background: var(--light-bg2); padding: 80px 0; }
    .hoods-section .section-header { margin-bottom: 40px; }
    .hoods-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .hoods-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .hoods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .hood-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3/4; transition: transform 0.3s, box-shadow 0.3s; }
    .hood-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,0.18); }
    .hood-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
    .hood-card:hover .hood-card-bg { transform: scale(1.06); }
    .hood-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,13,26,0.93) 0%, rgba(1,13,26,0.15) 60%, transparent 100%); }
    .hood-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; }
    .hood-vibe { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 5px; display: block; }
    .hood-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1.5px; color: #fff; margin-bottom: 5px; }
    .hood-body p { font-size: 11px; color: rgba(255,255,255,0.62); line-height: 1.5; }

    /* ===== LANDMARKS ===== */
    .landmarks-section { background: var(--navy2); padding: 80px 0; }
    .landmarks-section .section-header { margin-bottom: 40px; }
    .landmarks-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .landmarks-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .landmarks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .landmark-card { border-radius: 12px; overflow: hidden; position: relative; height: 300px; transition: transform 0.3s, box-shadow 0.3s; }
    .landmark-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
    .landmark-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .landmark-card:hover img { transform: scale(1.06); }
    .landmark-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,13,26,0.95) 0%, rgba(1,13,26,0.3) 55%, transparent 100%); }
    .landmark-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px; }
    .landmark-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(21,123,207,0.8); color: #fff; padding: 3px 8px; border-radius: 3px; margin-bottom: 8px; }
    .landmark-location { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: block; }
    .landmark-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: #fff; margin-bottom: 4px; line-height: 1.1; }
    .landmark-body p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }

    /* ===== MUSEUMS ===== */
    .museums-section { background: var(--light-bg2); padding: 80px 0; }
    .museums-section .section-header { margin-bottom: 40px; }
    .museums-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .museums-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .museums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .museum-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.25s; }
    .museum-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .museum-img { height: 180px; overflow: hidden; }
    .museum-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .museum-card:hover .museum-img img { transform: scale(1.05); }
    .museum-body { padding: 18px 20px 20px; }
    .museum-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
    .museum-badge { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
    .museum-badge.free { background: rgba(119,232,98,0.15); color: #2a8a1a; }
    .museum-badge.paid { background: rgba(21,123,207,0.1); color: var(--blue); }
    .museum-area { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .museum-body h3 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.2; }
    .museum-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
    .museum-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
    .museum-highlight { font-size: 10px; font-weight: 600; color: var(--text-muted); background: var(--light-bg2); padding: 3px 8px; border-radius: 20px; border: 1px solid #e2e8f0; }

    /* ===== THINGS TO DO ===== */
    .things-section { background: #fff; padding: 80px 0; }
    .things-section .section-header { margin-bottom: 40px; }
    .things-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .things-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .things-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .thing-card { display: flex; gap: 20px; align-items: flex-start; padding: 22px; border-radius: 12px; border: 1px solid #e2e8f0; transition: all 0.2s; }
    .thing-card:hover { border-color: rgba(21,123,207,0.35); box-shadow: 0 6px 20px rgba(21,123,207,0.08); }
    .thing-icon { font-size: 28px; width: 48px; height: 48px; flex-shrink: 0; background: var(--light-bg2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .thing-content h4 { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
    .thing-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
    .thing-tag { display: inline-block; margin-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: rgba(21,123,207,0.08); padding: 3px 8px; border-radius: 3px; }

    /* ===== TRANSPORTATION ===== */
    .transport-section { background: var(--navy2); padding: 80px 0; }
    .transport-section .section-header { margin-bottom: 40px; }
    .transport-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .transport-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 560px; margin-top: 10px; }
    .transport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
    .transport-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
      border-radius: 14px; padding: 24px; transition: all 0.25s;
    }
    .transport-card:hover { border-color: rgba(21,123,207,0.45); background: rgba(21,123,207,0.07); }
    .transport-icon { font-size: 32px; margin-bottom: 14px; }
    .transport-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: #fff; margin-bottom: 4px; }
    .transport-cost { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; display: block; }
    .transport-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 14px; }
    .transport-tips { list-style: none; }
    .transport-tips li { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; padding: 4px 0 4px 16px; position: relative; }
    .transport-tips li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 11px; }

    /* Oyster card callout */
    .oyster-callout {
      background: rgba(119,232,98,0.08); border: 1px solid rgba(119,232,98,0.3);
      border-radius: 14px; padding: 28px 32px;
      display: flex; align-items: center; gap: 28px;
    }
    .oyster-icon { font-size: 48px; flex-shrink: 0; }
    .oyster-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1.5px; color: var(--green); margin-bottom: 8px; }
    .oyster-content p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
    .oyster-tips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
    .oyster-tip { font-size: 11px; font-weight: 600; background: rgba(119,232,98,0.12); color: var(--green); padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(119,232,98,0.25); }

    /* ===== FEATURED TOURS ===== */
    .tours-section { background: #fff; padding: 80px 0; }
    .tours-section .section-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
    .tours-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); }
    .tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tour-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.28s; }
    .tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(21,123,207,0.12); }
    .tour-img { height: 220px; position: relative; overflow: hidden; }
    .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .tour-card:hover .tour-img img { transform: scale(1.06); }
    .tour-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(1,13,26,0.65) 100%); }
    .tour-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--green); color: #010d1a; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
    .tour-badge.is-limited { background: #ff9f43; color: #fff; }
    .tour-body { padding: 20px; }
    .tour-meta { display: flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
    .tour-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.1; }
    .tour-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
    .tour-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid #f0f4f8; }
    .tour-price .from { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
    .tour-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--blue); line-height: 1; }
    .tour-price .pp { font-size: 11px; color: var(--text-muted); }

    /* ===== VIATOR EXCURSIONS ===== */
    .exc-section { background: var(--navy); padding: 80px 0; }
    .exc-section .section-header { margin-bottom: 36px; }
    .exc-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .exc-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .exc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .exc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; transition: all 0.25s; }
    .exc-card:hover { border-color: rgba(21,123,207,0.4); background: rgba(21,123,207,0.06); transform: translateY(-3px); }
    .exc-img { height: 160px; position: relative; overflow: hidden; }
    .exc-img img { width: 100%; height: 100%; object-fit: cover; }
    .exc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(1,13,26,0.7) 100%); }
    .exc-stars { position: absolute; bottom: 10px; left: 12px; z-index: 2; display: flex; align-items: center; gap: 4px; }
    .exc-stars .stars { color: #f59e0b; font-size: 11px; }
    .exc-stars .count { font-size: 10px; color: rgba(255,255,255,0.65); }
    .exc-body { padding: 14px; }
    .exc-location { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
    .exc-body h4 { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
    .exc-body .exc-duration { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
    .exc-footer { display: flex; align-items: center; justify-content: space-between; }
    .exc-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--green); letter-spacing: 1px; }
    .exc-price span { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; }
    .exc-btn { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(21,123,207,0.35); padding: 6px 12px; border-radius: 4px; transition: all 0.2s; }
    .exc-card:hover .exc-btn { background: var(--blue); color: #fff; border-color: var(--blue); }
    .exc-footer-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
    .exc-footer-bar p { font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ===== TRAVEL TIPS ===== */
    .tips-section { background: var(--light-bg2); padding: 80px 0; }
    .tips-section .section-header { margin-bottom: 36px; }
    .tips-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tip-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e2e8f0; }
    .tip-icon { font-size: 32px; margin-bottom: 14px; }
    .tip-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 10px; }
    .tip-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
    .tip-card ul { list-style: none; margin-top: 10px; }
    .tip-card ul li { font-size: 13px; color: var(--text-muted); line-height: 1.6; padding: 4px 0 4px 16px; position: relative; }
    .tip-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; }

    /* ===== GEAR ===== */
    .gear-section { background: #fff; padding: 80px 0; }
    .gear-section .section-header { margin-bottom: 40px; }
    .gear-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .gear-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .gear-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .gear-card { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; transition: all 0.25s; }
    .gear-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .gear-img { height: 190px; overflow: hidden; }
    .gear-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .gear-card:hover .gear-img img { transform: scale(1.05); }
    .gear-body { padding: 16px 18px 18px; }
    .gear-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); background: rgba(21,123,207,0.1); padding: 3px 8px; border-radius: 3px; display: inline-block; margin-bottom: 8px; }
    .gear-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 6px; }
    .gear-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
    .gear-footer { display: flex; align-items: center; justify-content: space-between; }
    .gear-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text-dark); letter-spacing: 1px; }
    .gear-btn { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--blue); color: #fff; padding: 7px 14px; border-radius: 4px; transition: background 0.2s; }
    .gear-btn:hover { background: var(--dark-blue); }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: linear-gradient(135deg, var(--dark-blue) 0%, #010d1a 100%); padding: 80px 24px; }
    .newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .newsletter-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; color: #fff; margin-bottom: 16px; }
    .newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
    .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; border-radius: 4px; overflow: hidden; }
    .newsletter-form input { flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button { background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; padding: 16px 24px; border: none; cursor: pointer; white-space: nowrap; }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn { width: 34px; height: 34px; border-radius: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; }
    .social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }

/* ==============================================================
   NEIGHBORHOOD PAGE STYLES
   ============================================================== */


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block; }
    .section-label.on-dark { color: var(--green); }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }
    .btn-outline {
      display: inline-block; background: transparent; color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 1px; text-transform: uppercase; padding: 13px 32px;
      border-radius: 4px; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.95);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== TRUST BAR ===== */
    .trust-bar { background: var(--dark-blue); overflow: hidden; height: 40px; display: flex; align-items: center; }
    .trust-track { display: flex; align-items: center; width: max-content; animation: trustScroll 28s linear infinite; }
    @keyframes trustScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); white-space: nowrap; padding: 0 32px; }
    .trust-divider { color: rgba(255,255,255,0.2); font-size: 16px; }

    /* ===== HERO ===== */
    .city-hero { min-height: 68vh; position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
    .city-hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(160deg, rgba(1,13,26,0.75) 0%, rgba(1,79,127,0.22) 55%, rgba(1,13,26,0.88) 100%),
        url('https://images.unsplash.com/photo-1529655683826-aba9b3e77383?w=1920&q=80');
      background-size: cover; background-position: center 55%;
    }
    .city-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(1,13,26,0.78) 100%); }
    .city-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 100px 24px 52px; width: 100%; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; flex-wrap: wrap; }
    .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .breadcrumb span.current { color: var(--green); }
    .breadcrumb-sep { color: rgba(255,255,255,0.25); }
    .city-flag { font-size: 40px; margin-bottom: 12px; display: block; line-height: 1; }
    .city-hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 11vw, 130px); line-height: 0.88; letter-spacing: 2px; color: #fff; margin-bottom: 18px; }
    .city-hero-content h1 .accent { color: var(--green); }
    .city-hero-content p.tagline { font-size: clamp(14px, 1.8vw, 17px); font-weight: 500; color: rgba(255,255,255,0.78); max-width: 540px; line-height: 1.6; margin-bottom: 32px; }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    /* ===== STATS BAR ===== */
    .hero-stats-bar { position: relative; z-index: 2; background: rgba(1,13,26,0.88); backdrop-filter: blur(8px); border-top: 1px solid rgba(21,123,207,0.2); }
    .hero-stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: stretch; }
    .hero-stat { flex: 1; padding: 20px 24px; display: flex; align-items: center; gap: 16px; border-right: 1px solid rgba(255,255,255,0.07); }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-icon { font-size: 24px; }
    .hero-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; color: var(--green); line-height: 1; }
    .hero-stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px; }

    /* ===== INTRO ===== */
    .intro-section { background: #fff; padding: 80px 0; }
    .intro-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
    @media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }
    .intro-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); margin-bottom: 20px; }
    .intro-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
    .intro-text p:last-of-type { margin-bottom: 28px; }
    .facts-card { background: var(--light-bg); border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; position: sticky; top: 92px; }
    .facts-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--blue); }
    .fact-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid #e2e8f0; }
    .fact-row:last-child { border-bottom: none; }
    .fact-icon { font-size: 20px; width: 28px; flex-shrink: 0; text-align: center; margin-top: 1px; }
    .fact-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
    .fact-value { font-size: 13px; font-weight: 600; color: var(--text-dark); }
    .fact-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ===== MAP ===== */
    .map-section { background: var(--navy2); padding: 72px 0; }
    .map-section .section-header { margin-bottom: 32px; }
    .map-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .map-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    #hood-map { width: 100%; height: 420px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(21,123,207,0.2); }
    .map-legend { display: flex; align-items: center; justify-content: center; gap: 28px; padding: 20px 0 0; flex-wrap: wrap; }
    .legend-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .legend-dot { width: 12px; height: 12px; border-radius: 50%; }
    .legend-dot.is-country { background: var(--blue); }
    .legend-dot.is-city { background: var(--green); }

    /* ===== LANDMARKS ===== */
    .landmarks-section { background: var(--navy2); padding: 80px 0; }
    .landmarks-section .section-header { margin-bottom: 40px; }
    .landmarks-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .landmarks-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .landmarks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 768px) { .landmarks-grid { grid-template-columns: 1fr; } }
    .landmark-card { border-radius: 12px; overflow: hidden; position: relative; height: 300px; transition: transform 0.3s, box-shadow 0.3s; }
    .landmark-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
    .landmark-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .landmark-card:hover img { transform: scale(1.06); }
    .landmark-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,13,26,0.95) 0%, rgba(1,13,26,0.3) 55%, transparent 100%); }
    .landmark-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px; }
    .landmark-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: rgba(21,123,207,0.8); color: #fff; padding: 3px 8px; border-radius: 3px; margin-bottom: 8px; }
    .landmark-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: #fff; margin-bottom: 4px; line-height: 1.1; }
    .landmark-body p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }

    /* ===== MUSEUMS ===== */
    .museums-section { background: var(--light-bg2); padding: 80px 0; }
    .museums-section .section-header { margin-bottom: 40px; }
    .museums-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .museums-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .museums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    @media (max-width: 768px) { .museums-grid { grid-template-columns: 1fr; } }
    .museum-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.25s; }
    .museum-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .museum-img { height: 180px; overflow: hidden; }
    .museum-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .museum-card:hover .museum-img img { transform: scale(1.05); }
    .museum-body { padding: 18px 20px 20px; }
    .museum-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
    .museum-badge { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
    .museum-badge.free { background: rgba(119,232,98,0.15); color: #2a8a1a; }
    .museum-badge.paid { background: rgba(21,123,207,0.1); color: var(--blue); }
    .museum-area { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .museum-body h3 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.2; }
    .museum-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
    .museum-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
    .museum-highlight { font-size: 10px; font-weight: 600; color: var(--text-muted); background: var(--light-bg2); padding: 3px 8px; border-radius: 20px; border: 1px solid #e2e8f0; }

    /* ===== THINGS TO DO ===== */
    .things-section { background: #fff; padding: 80px 0; }
    .things-section .section-header { margin-bottom: 40px; }
    .things-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .things-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .things-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    @media (max-width: 640px) { .things-grid { grid-template-columns: 1fr; } }
    .thing-card { display: flex; gap: 20px; align-items: flex-start; padding: 22px; border-radius: 12px; border: 1px solid #e2e8f0; transition: all 0.2s; }
    .thing-card:hover { border-color: rgba(21,123,207,0.35); box-shadow: 0 6px 20px rgba(21,123,207,0.08); }
    .thing-icon { font-size: 28px; width: 48px; height: 48px; flex-shrink: 0; background: var(--light-bg2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .thing-content h4 { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
    .thing-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
    .thing-tag { display: inline-block; margin-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: rgba(21,123,207,0.08); padding: 3px 8px; border-radius: 3px; }

    /* ===== DINING ===== */
    .dining-section { background: var(--navy2); padding: 80px 0; }
    .dining-section .section-header { margin-bottom: 40px; }
    .dining-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .dining-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 520px; margin-top: 10px; }
    .dining-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media (max-width: 900px) { .dining-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px) { .dining-grid { grid-template-columns: 1fr; } }
    .dining-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; overflow: hidden; transition: all 0.25s; }
    .dining-card:hover { border-color: rgba(21,123,207,0.4); background: rgba(21,123,207,0.06); transform: translateY(-3px); }
    .dining-img { height: 170px; overflow: hidden; position: relative; }
    .dining-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .dining-card:hover .dining-img img { transform: scale(1.06); }
    .dining-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(1,13,26,0.65) 100%); }
    .dining-price-badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(1,13,26,0.8); color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 4px; border: 1px solid rgba(119,232,98,0.3); }
    .dining-body { padding: 18px 20px 20px; }
    .dining-type { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
    .dining-body h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; }
    .dining-body p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 14px; }
    .dining-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .dining-tag { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); padding: 3px 8px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }

    /* ===== GETTING THERE ===== */
    .getting-there-section { background: var(--light-bg2); padding: 80px 0; }
    .getting-there-section .section-header { margin-bottom: 40px; }
    .getting-there-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .getting-there-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 560px; margin-top: 10px; }
    .getting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
    @media (max-width: 900px) { .getting-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px) { .getting-grid { grid-template-columns: 1fr; } }
    .getting-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 24px; transition: all 0.2s; }
    .getting-card:hover { border-color: rgba(21,123,207,0.35); box-shadow: 0 6px 20px rgba(21,123,207,0.08); }
    .getting-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .getting-icon { font-size: 26px; }
    .getting-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1.5px; color: var(--text-dark); }
    .getting-cost { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-top: 2px; }
    .getting-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
    .getting-tips { list-style: none; }
    .getting-tips li { font-size: 12.5px; color: var(--text-muted); padding: 4px 0 4px 18px; position: relative; border-top: 1px solid #f0f4f8; }
    .getting-tips li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 11px; }
    .getting-tips li:first-child { border-top: none; }
    .zone-callout {
      background: rgba(21,123,207,0.08); border: 1px solid rgba(21,123,207,0.25);
      border-radius: 14px; padding: 28px 32px; display: flex; align-items: flex-start; gap: 24px;
    }
    .zone-callout-icon { font-size: 40px; flex-shrink: 0; }
    .zone-callout-body h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1.5px; color: var(--text-dark); margin: 0 0 8px; }
    .zone-callout-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 12px; }
    .zone-callout-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
    .zone-callout-body li { font-size: 12px; font-weight: 600; color: var(--blue); background: rgba(21,123,207,0.1); padding: 4px 12px; border-radius: 20px; }
    @media (max-width: 640px) { .zone-callout { flex-direction: column; } }

    /* ===== FEATURED TOURS ===== */
    .tours-section { background: #fff; padding: 80px 0; }
    .tours-section .section-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
    .tours-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); }
    .tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 768px) { .tours-grid { grid-template-columns: 1fr; } }
    .tour-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.28s; }
    .tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(21,123,207,0.12); }
    .tour-img { height: 220px; position: relative; overflow: hidden; }
    .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .tour-card:hover .tour-img img { transform: scale(1.06); }
    .tour-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(1,13,26,0.65) 100%); }
    .tour-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--green); color: #010d1a; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
    .tour-badge.is-limited { background: #ff9f43; color: #fff; }
    .tour-body { padding: 20px; }
    .tour-meta { display: flex; align-items: center; gap: 16px; font-size: 11px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
    .tour-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.1; }
    .tour-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
    .tour-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid #f0f4f8; }
    .tour-price .from { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
    .tour-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--blue); line-height: 1; }
    .tour-price .pp { font-size: 11px; color: var(--text-muted); }

    /* ===== VIATOR EXCURSIONS ===== */
    .exc-section { background: var(--navy); padding: 80px 0; }
    .exc-section .section-header { margin-bottom: 36px; }
    .exc-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff; margin-top: 8px; }
    .exc-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .exc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    @media (max-width: 900px) { .exc-grid { grid-template-columns: repeat(2, 1fr); } }
    .exc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; transition: all 0.25s; }
    .exc-card:hover { border-color: rgba(21,123,207,0.4); background: rgba(21,123,207,0.06); transform: translateY(-3px); }
    .exc-img { height: 160px; position: relative; overflow: hidden; }
    .exc-img img { width: 100%; height: 100%; object-fit: cover; }
    .exc-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(1,13,26,0.7) 100%); }
    .exc-stars { position: absolute; bottom: 10px; left: 12px; z-index: 2; display: flex; align-items: center; gap: 4px; }
    .exc-stars .stars { color: #f59e0b; font-size: 11px; }
    .exc-stars .count { font-size: 10px; color: rgba(255,255,255,0.65); }
    .exc-body { padding: 14px; }
    .exc-location { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
    .exc-body h4 { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
    .exc-body .exc-duration { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
    .exc-footer { display: flex; align-items: center; justify-content: space-between; }
    .exc-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--green); letter-spacing: 1px; }
    .exc-price span { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; }
    .exc-btn { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(21,123,207,0.35); padding: 6px 12px; border-radius: 4px; transition: all 0.2s; }
    .exc-card:hover .exc-btn { background: var(--blue); color: #fff; border-color: var(--blue); }
    .exc-footer-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
    .exc-footer-bar p { font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ===== TRAVEL TIPS ===== */
    .tips-section { background: var(--light-bg2); padding: 80px 0; }
    .tips-section .section-header { margin-bottom: 36px; }
    .tips-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 768px) { .tips-grid { grid-template-columns: 1fr; } }
    .tip-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e2e8f0; }
    .tip-icon { font-size: 32px; margin-bottom: 14px; }
    .tip-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 10px; }
    .tip-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
    .tip-card ul { list-style: none; margin-top: 10px; }
    .tip-card ul li { font-size: 13px; color: var(--text-muted); line-height: 1.6; padding: 4px 0 4px 16px; position: relative; }
    .tip-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; }

    /* ===== GEAR ===== */
    .gear-section { background: #fff; padding: 80px 0; }
    .gear-section .section-header { margin-bottom: 40px; }
    .gear-section .section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark); margin-top: 8px; }
    .gear-section .section-header p { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 500px; margin-top: 10px; }
    .gear-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    @media (max-width: 900px) { .gear-grid { grid-template-columns: repeat(2, 1fr); } }
    .gear-card { border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; transition: all 0.25s; }
    .gear-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.1); border-color: #c8d8e8; }
    .gear-img { height: 190px; overflow: hidden; }
    .gear-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .gear-card:hover .gear-img img { transform: scale(1.05); }
    .gear-body { padding: 16px 18px 18px; }
    .gear-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); background: rgba(21,123,207,0.1); padding: 3px 8px; border-radius: 3px; display: inline-block; margin-bottom: 8px; }
    .gear-body h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 6px; }
    .gear-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
    .gear-footer { display: flex; align-items: center; justify-content: space-between; }
    .gear-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text-dark); letter-spacing: 1px; }
    .gear-btn { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--blue); color: #fff; padding: 7px 14px; border-radius: 4px; transition: background 0.2s; }
    .gear-btn:hover { background: var(--dark-blue); }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: linear-gradient(135deg, var(--dark-blue) 0%, #010d1a 100%); padding: 80px 24px; }
    .newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .newsletter-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; color: #fff; margin-bottom: 16px; }
    .newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
    .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; border-radius: 4px; overflow: hidden; }
    .newsletter-form input { flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none; }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button { background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; padding: 16px 24px; border: none; cursor: pointer; white-space: nowrap; }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
    .footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 2px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }

/* ==============================================================
   REGION PAGE STYLES
   ============================================================== */

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== BRAND COLORS ===== */
    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --light-bg:   #f8fafc;
      --light-bg2:  #eef3f8;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block;
    }
    .section-label.on-dark { color: var(--green); }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }
    .btn-outline {
      display: inline-block; background: transparent; color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
      letter-spacing: 1px; text-transform: uppercase; padding: 13px 32px;
      border-radius: 4px; border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
    .btn-outline.dark { color: var(--blue); border-color: var(--blue); }
    .btn-outline.dark:hover { background: rgba(21,123,207,0.08); }
    .btn-blue {
      display: inline-block; background: var(--blue); color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 12px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-blue:hover { background: #1a8fe0; transform: translateY(-1px); }

    /* ===== HEADER / NAV ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px; background: rgba(1,13,26,0.95);
      backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; height: 72px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; }
    .nav-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase; }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ===== TRUST BAR ===== */
    .trust-bar { background: var(--dark-blue); overflow: hidden; height: 40px; display: flex; align-items: center; }
    .trust-track {
      display: flex; align-items: center; width: max-content;
      animation: trustScroll 28s linear infinite;
    }
    .trust-track:hover { animation-play-state: paused; }
    @keyframes trustScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(255,255,255,0.8); white-space: nowrap; padding: 0 32px;
    }
    .trust-divider { color: rgba(255,255,255,0.2); font-size: 16px; }

    /* ===== REGION HERO ===== */
    .region-hero {
      min-height: 62vh; position: relative;
      display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
    }
    .region-hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(160deg, rgba(1,13,26,0.75) 0%, rgba(1,79,127,0.35) 55%, rgba(1,13,26,0.85) 100%),
        url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1920&q=80');
      background-size: cover; background-position: center;
    }
    .region-hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 30%, rgba(1,13,26,0.7) 100%);
    }
    .region-hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto;
      padding: 100px 24px 52px;
      width: 100%;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .breadcrumb span { color: var(--green); }
    .breadcrumb-sep { color: rgba(255,255,255,0.25); }
    .region-hero-content h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 9vw, 110px);
      line-height: 0.92; letter-spacing: 2px;
      color: #fff; margin-bottom: 16px;
    }
    .region-hero-content h1 .accent { color: var(--green); }
    .region-hero-content p.tagline {
      font-size: clamp(14px, 1.8vw, 17px); font-weight: 500;
      color: rgba(255,255,255,0.78); max-width: 520px;
      line-height: 1.6; margin-bottom: 32px;
    }
    .region-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .region-hero-stats {
      position: relative; z-index: 2;
      background: rgba(1,13,26,0.85); backdrop-filter: blur(8px);
      border-top: 1px solid rgba(21,123,207,0.2);
    }
    .region-stats-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: stretch;
    }
    .region-stat {
      flex: 1; padding: 20px 24px; display: flex; align-items: center; gap: 16px;
      border-right: 1px solid rgba(255,255,255,0.07);
    }
    .region-stat:last-child { border-right: none; }
    .region-stat-icon { font-size: 24px; }
    .region-stat .num {
      font-family: 'Bebas Neue', sans-serif; font-size: 32px;
      letter-spacing: 1px; color: var(--green); line-height: 1;
    }
    .region-stat .lbl {
      font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px;
    }

    /* ===== REGION INTRO ===== */
    .region-intro-section { background: #ffffff; padding: 72px 0; }
    .region-intro-grid {
      display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start;
    }
    .region-intro-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px;
      color: var(--text-dark); margin-bottom: 20px;
    }
    .region-intro-text p {
      font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px;
    }
    .region-intro-text p:last-of-type { margin-bottom: 28px; }
    .region-highlights-card {
      background: var(--light-bg); border: 1px solid #e2e8f0;
      border-radius: 16px; padding: 28px; position: sticky; top: 92px;
    }
    .region-highlights-card h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 20px;
      letter-spacing: 1px; color: var(--text-dark); margin-bottom: 20px;
      padding-bottom: 14px; border-bottom: 2px solid var(--blue);
    }
    .highlight-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 12px 0; border-bottom: 1px solid #e2e8f0;
    }
    .highlight-row:last-child { border-bottom: none; }
    .highlight-icon { font-size: 20px; width: 28px; flex-shrink: 0; text-align: center; margin-top: 1px; }
    .highlight-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
    .highlight-value { font-size: 13px; font-weight: 600; color: var(--text-dark); }
    .highlight-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    /* ===== COUNTRIES GRID ===== */
    /* ===== MAP SECTION ===== */
    .map-section { background: var(--navy2); padding: 72px 0; }
    .map-section .section-header { margin-bottom: 32px; }
    .map-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff;
    }
    #europe-map {
      width: 100%; height: 460px;
      border-radius: 12px; overflow: hidden;
      border: 1px solid rgba(21,123,207,0.2);
    }
    .map-nav {
      display: flex; justify-content: center;
      padding: 24px 0 0;
    }
    .country-select {
      background: rgba(1,13,26,0.8); color: #fff;
      border: 1px solid rgba(21,123,207,0.5); border-radius: 4px;
      font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
      padding: 10px 16px; cursor: pointer; outline: none;
      transition: border-color 0.2s; min-width: 220px;
    }
    .country-select:hover, .country-select:focus { border-color: var(--blue); }
    .country-select option { background: #021624; }

    /* ===== FEATURED TOURS ===== */
    .tours-section { background: #ffffff; padding: 72px 0; }
    .tours-section .section-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
    }
    .tours-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: var(--text-dark);
    }
    .tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tour-card {
      background: #fff; border-radius: 16px; overflow: hidden;
      border: 1px solid #e2e8f0; transition: all 0.28s;
    }
    .tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(21,123,207,0.12); }
    .tour-img {
      height: 220px; position: relative; overflow: hidden;
      background-size: cover; background-position: center;
    }
    .tour-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 45%, rgba(1,13,26,0.65) 100%);
    }
    .tour-badge {
      position: absolute; top: 14px; left: 14px; z-index: 2;
      background: var(--green); color: #010d1a;
      font-size: 10px; font-weight: 800; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
    }
    .tour-badge.is-sold-out { background: #ff4444; color: #fff; }
    .tour-badge.is-limited { background: #ff9f43; color: #fff; }
    .tour-region-label {
      position: absolute; bottom: 14px; left: 14px; z-index: 2;
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.7);
    }
    .tour-body { padding: 20px; }
    .tour-meta {
      display: flex; align-items: center; gap: 16px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
      color: var(--text-muted); margin-bottom: 10px;
    }
    .tour-meta span { display: flex; align-items: center; gap: 5px; }
    .tour-body h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 22px;
      letter-spacing: 1px; color: var(--text-dark); margin-bottom: 8px; line-height: 1.1;
    }
    .tour-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
    .tour-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 20px; border-top: 1px solid #f0f4f8;
    }
    .tour-price .from { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
    .tour-price .amount { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--blue); line-height: 1; }
    .tour-price .pp { font-size: 11px; color: var(--text-muted); }

    /* ===== VIATOR EXCURSIONS (DARK) ===== */
    .exc-section { background: var(--navy2); padding: 72px 0; }
    .exc-section .section-header { margin-bottom: 36px; }
    .exc-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 52px); letter-spacing: 2px; color: #fff;
    }
    .exc-section .section-header p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 500px; margin-top: 8px; }
    .exc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .exc-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px; overflow: hidden; transition: all 0.25s;
    }
    .exc-card:hover { border-color: rgba(21,123,207,0.4); background: rgba(21,123,207,0.06); transform: translateY(-3px); }
    .exc-img {
      height: 170px; background-size: cover; background-position: center; position: relative;
    }
    .exc-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(1,13,26,0.7) 100%);
    }
    .exc-stars {
      position: absolute; bottom: 10px; left: 12px; z-index: 2;
      display: flex; align-items: center; gap: 4px;
    }
    .exc-stars .stars { color: #f59e0b; font-size: 11px; }
    .exc-stars .count { font-size: 10px; color: rgba(255,255,255,0.65); }
    .exc-body { padding: 14px; }
    .exc-location { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
    .exc-body h4 { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
    .exc-body .exc-duration { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
    .exc-footer { display: flex; align-items: center; justify-content: space-between; }
    .exc-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--green); letter-spacing: 1px; }
    .exc-price span { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; font-weight: 600; }
    .exc-btn {
      font-size: 10px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--blue); border: 1px solid rgba(21,123,207,0.35);
      padding: 6px 12px; border-radius: 4px; transition: all 0.2s;
    }
    .exc-card:hover .exc-btn { background: var(--blue); color: #fff; border-color: var(--blue); }
    .exc-footer-bar {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
    }
    .exc-footer-bar p { font-size: 13px; color: rgba(255,255,255,0.45); }

    /* ===== TRAVEL TIPS ===== */
    .tips-section { background: var(--light-bg2); padding: 72px 0; }
    .tips-section .section-header { margin-bottom: 36px; }
    .tips-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 48px); letter-spacing: 2px; color: var(--text-dark);
    }
    .tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .tip-card {
      background: #fff; border-radius: 14px; padding: 28px;
      border: 1px solid #e2e8f0;
    }
    .tip-icon { font-size: 32px; margin-bottom: 14px; }
    .tip-card h3 {
      font-family: 'Bebas Neue', sans-serif; font-size: 20px;
      letter-spacing: 1px; color: var(--text-dark); margin-bottom: 10px;
    }
    .tip-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
    .tip-card ul { list-style: none; margin-top: 10px; }
    .tip-card ul li {
      font-size: 13px; color: var(--text-muted); line-height: 1.6;
      padding: 4px 0; padding-left: 16px; position: relative;
    }
    .tip-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; }

    /* ===== NEWSLETTER ===== */
    .newsletter-section { background: linear-gradient(135deg, var(--dark-blue) 0%, #010d1a 100%); padding: 80px 24px; }
    .newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .newsletter-inner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 6vw, 64px); letter-spacing: 2px; color: #fff; margin-bottom: 16px;
    }
    .newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 32px; }
    .newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 16px; border-radius: 4px; overflow: hidden; }
    .newsletter-form input {
      flex: 1; padding: 16px 20px; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15); border-right: none;
      color: #fff; font-family: 'Montserrat', sans-serif; font-size: 14px; outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
    .newsletter-form button {
      background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase;
      padding: 16px 24px; border: none; cursor: pointer; transition: background 0.2s; white-space: nowrap;
    }
    .newsletter-form button:hover { background: #8fff70; }
    .newsletter-sub { font-size: 12px; color: rgba(255,255,255,0.35); }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); padding: 56px 0 0; }
    .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img { width: 48px; height: 48px; border-radius: 50%; }
    .footer-logo-text .brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: #fff; }
    .footer-logo-text .brand-sub { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-top: 2px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 34px; height: 34px; border-radius: 6px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s;
    }
    .social-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

/* ==============================================================
   DESTINATIONS HUB STYLES
   ============================================================== */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    :root {
      --blue:       #157bcf;
      --dark-blue:  #014f7f;
      --green:      #77e862;
      --white:      #ffffff;
      --navy:       #010d1a;
      --navy2:      #021624;
      --text-dark:  #1a2332;
      --text-muted: #4a5568;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 12px; display: block;
    }
    .section-label.on-dark { color: var(--green); }

    /* ===== HEADER ===== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 24px;
      background: rgba(1,13,26,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(21,123,207,0.15);
    }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo img { width: 52px; height: 52px; border-radius: 50%; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
    .nav-logo-text .brand-name {
      font-family: 'Bebas Neue', sans-serif; font-size: 22px;
      letter-spacing: 2px; color: #fff;
    }
    .nav-logo-text .brand-sub {
      font-size: 9px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--green); margin-top: 2px;
    }
    nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
    nav ul li a {
      font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
      color: rgba(255,255,255,0.75); transition: color 0.2s; text-transform: uppercase;
    }
    nav ul li a:hover { color: #fff; }
    nav ul li a.active { color: var(--green); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .btn-primary {
      display: inline-block; background: var(--green); color: #010d1a;
      font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
      letter-spacing: 0.5px; text-transform: uppercase; padding: 14px 28px;
      border-radius: 4px; border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary:hover { background: #8fff70; transform: translateY(-1px); }

    /* ===== HERO ===== */
    .hero {
      min-height: 55vh; position: relative;
      display: flex; flex-direction: column; justify-content: center;
      overflow: hidden; padding-top: 72px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(135deg, rgba(1,13,26,0.88) 0%, rgba(1,79,127,0.5) 50%, rgba(1,13,26,0.75) 100%),
        url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&auto=format&fit=crop');
      background-size: cover; background-position: center;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(1,13,26,0.7) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1200px; margin: 0 auto; padding: 72px 24px 64px;
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 28px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .breadcrumb a:hover { color: var(--green); }
    .breadcrumb-sep { color: rgba(255,255,255,0.25); font-size: 14px; }
    .hero-label {
      font-size: 11px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block;
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 8vw, 96px);
      letter-spacing: 3px; line-height: 0.95;
      color: #fff; margin-bottom: 20px;
    }
    .hero h1 span { color: var(--green); }
    .hero p {
      font-size: 18px; font-weight: 400; line-height: 1.6;
      color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 36px;
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--blue); overflow: hidden;
      padding: 0; height: 44px; display: flex; align-items: center;
    }
    .trust-track {
      display: flex; align-items: center; gap: 0;
      animation: trustScroll 28s linear infinite;
      white-space: nowrap;
    }
    @keyframes trustScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: #fff; padding: 0 32px;
    }
    .trust-divider { color: rgba(255,255,255,0.4); font-size: 18px; }

    /* ===== MAP SECTION ===== */
    .map-section { background: var(--navy2); padding: 80px 0 72px; }
    .map-section .section-header { margin-bottom: 36px; }
    .map-section .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 5vw, 56px); letter-spacing: 2px; color: #fff;
      margin-top: 8px;
    }
    .map-section .section-header p {
      color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.6;
      max-width: 520px; margin-top: 12px;
    }
    .map-wrapper { position: relative; }
    #world-map {
      width: 100%; height: 520px;
      border-radius: 12px; overflow: hidden;
      border: 1px solid rgba(21,123,207,0.2);
    }
    .map-reset-btn {
      position: absolute; top: 14px; right: 14px;
      background: rgba(1,13,26,0.85); color: rgba(255,255,255,0.7);
      border: 1px solid rgba(21,123,207,0.4); border-radius: 4px;
      font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 8px 14px; cursor: pointer; transition: all 0.2s;
      backdrop-filter: blur(4px);
    }
    .map-reset-btn:hover { border-color: var(--blue); color: #fff; }
    .map-nav {
      display: flex; justify-content: center;
      padding: 28px 0 0;
    }
    .region-select {
      background: rgba(1,13,26,0.8); color: #fff;
      border: 1px solid rgba(21,123,207,0.5); border-radius: 4px;
      font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
      padding: 12px 20px; cursor: pointer; outline: none; min-width: 280px;
      transition: border-color 0.2s;
    }
    .region-select:hover, .region-select:focus { border-color: var(--blue); }
    .region-select option { background: #021624; }

    /* ===== REGION CARDS ===== */
    .regions-section { background: #f0f4f8; padding: 96px 0; }
    .section-header { margin-bottom: 56px; }
    .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 5vw, 56px); letter-spacing: 2px; color: var(--text-dark);
      margin-top: 8px;
    }
    .section-header p {
      color: var(--text-muted); font-size: 15px; line-height: 1.6;
      max-width: 520px; margin-top: 12px;
    }
    .regions-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .region-card {
      position: relative; border-radius: 10px; overflow: hidden;
      aspect-ratio: 3/4; cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .region-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); }
    .region-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 0.5s;
    }
    .region-card:hover .region-card-bg { transform: scale(1.06); }
    .region-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(1,13,26,0.92) 0%, rgba(1,13,26,0.3) 55%, transparent 100%);
    }
    .region-card-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px 20px 20px;
    }
    .region-card-flag {
      font-size: 22px; display: block; margin-bottom: 6px;
    }
    .region-card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px; letter-spacing: 2px; color: #fff;
      display: block; margin-bottom: 6px;
    }
    .region-card-desc {
      font-size: 12px; color: rgba(255,255,255,0.65);
      line-height: 1.5; margin-bottom: 14px;
    }
    .region-card-link {
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--green);
      display: inline-flex; align-items: center; gap: 6px;
      transition: gap 0.2s;
    }
    .region-card:hover .region-card-link { gap: 10px; }
    .region-card-link::after { content: '→'; }

    /* ===== FEATURED TOURS ===== */
    .tours-section { background: var(--navy2); padding: 96px 0; }
    .tours-section .section-header h2 { color: #fff; }
    .tours-section .section-header p { color: rgba(255,255,255,0.6); }
    .tours-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .tour-card {
      background: rgba(255,255,255,0.04); border-radius: 10px; overflow: hidden;
      border: 1px solid rgba(21,123,207,0.12);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      cursor: pointer;
    }
    .tour-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.4);
      border-color: rgba(21,123,207,0.35);
    }
    .tour-img {
      position: relative; height: 220px; overflow: hidden;
    }
    .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .tour-card:hover .tour-img img { transform: scale(1.06); }
    .tour-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--green); color: #010d1a;
      font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
    }
    .tour-body { padding: 22px 22px 24px; }
    .tour-region {
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
    }
    .tour-body h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px; letter-spacing: 1.5px; color: #fff;
      margin-bottom: 10px; line-height: 1.1;
    }
    .tour-body p {
      font-size: 13px; color: rgba(255,255,255,0.55);
      line-height: 1.6; margin-bottom: 18px;
    }
    .tour-meta {
      display: flex; align-items: center; gap: 16px;
      padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07);
    }
    .tour-meta-item {
      font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45);
      display: flex; align-items: center; gap: 5px;
    }
    .tour-price {
      margin-left: auto; font-size: 13px; font-weight: 800;
      color: var(--green);
    }
    .tours-cta { text-align: center; margin-top: 48px; }
    .btn-outline {
      display: inline-block; background: transparent; color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
      letter-spacing: 1px; text-transform: uppercase; padding: 14px 36px;
      border: 2px solid rgba(255,255,255,0.25); border-radius: 4px;
      transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--green); color: var(--green); }

    /* ===== NEWSLETTER ===== */
    .newsletter-section {
      background: var(--navy); padding: 96px 0;
      border-top: 1px solid rgba(21,123,207,0.12);
    }
    .newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; }
    .newsletter-inner .section-label { justify-content: center; display: flex; }
    .newsletter-inner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 5vw, 58px); letter-spacing: 2px; color: #fff;
      margin-bottom: 16px; margin-top: 8px;
    }
    .newsletter-inner p {
      font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7;
      margin-bottom: 40px;
    }
    .newsletter-form {
      display: flex; gap: 12px; max-width: 520px; margin: 0 auto;
    }
    .newsletter-form input {
      flex: 1; background: rgba(255,255,255,0.06); color: #fff;
      border: 1px solid rgba(21,123,207,0.35); border-radius: 4px;
      font-family: 'Montserrat', sans-serif; font-size: 14px;
      padding: 14px 20px; outline: none; transition: border-color 0.2s;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
    .newsletter-form input:focus { border-color: var(--blue); }
    .newsletter-form button { flex-shrink: 0; }
    .newsletter-note {
      margin-top: 14px; font-size: 11px; color: rgba(255,255,255,0.25);
      letter-spacing: 0.5px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy); padding: 32px 0;
      border-top: 1px solid rgba(21,123,207,0.15);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-copy {
      font-size: 13px; color: rgba(255,255,255,0.35);
    }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
      color: rgba(255,255,255,0.4); text-transform: uppercase; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--green); }
    /* ===== MOBILE NAV ===== */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(1,13,26,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(21,123,207,0.2); z-index: 999; padding: 20px 24px 28px; }
    .mobile-nav.is-open { display: block; }
    .mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
    .mobile-nav ul li a { display: block; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s; }
    .mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--green); }
    .mobile-nav .mobile-cta { display: block; width: 100%; text-align: center; margin-top: 8px; padding: 14px; background: var(--green); color: #010d1a; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; }
    @media (max-width: 768px) {
      nav, .nav-cta { display: none; }
      .hamburger { display: flex; }
    }

/* ==============================================================
   STAGE 4B ADDITIONS
   ============================================================== */

.tour-map-section { margin-bottom: 56px; }
.tour-map-section .section-title { margin-bottom: 24px; }
.tour-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  min-height: 400px;
  background: #f1f5f9;
}
.tour-map-wrap .wpgmza_map,
.tour-map-wrap iframe { width: 100% !important; min-height: 400px; display: block; }

/* Booking success state */
.booking-success { color: var(--text-dark); }
.booking-success strong { display: block; font-size: 16px; margin-top: 4px; }

/* Tour map figures (image-based maps) */
.tour-map-figure {
  margin: 0 0 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.tour-map-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.tour-map-figure figcaption {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.tour-map-figure + .tour-map-figure { margin-top: 16px; }

/* ==============================================================
   STAGE 4C FIXES (v1.5.0)
   ============================================================== */

/* Fix: white bar between hero and quick-facts strip
   The unscoped homepage rule "section { padding: 96px 0 }" was leaking
   into .tour-hero, creating bottom whitespace. Reset all sections inside
   tour detail page. */
.ewt-tour-detail section { padding: 0; }
.ewt-tour-detail .tour-hero { padding-top: 72px; padding-bottom: 0; }
.ewt-tour-detail .related-section { padding: 80px 0; background: #fff; }
.ewt-tour-detail .newsletter-section { padding: 80px 0; }

/* Trust card polish (sidebar "Why Book With EWT Tours") */
.ewt-tour-detail .trust-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  margin-top: 16px;
  box-sizing: border-box;
  width: 100%;
}
.ewt-tour-detail .trust-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.ewt-tour-detail .trust-card .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0;
}
.ewt-tour-detail .trust-card .trust-item:last-child { margin-bottom: 0; }
.ewt-tour-detail .trust-card .trust-item .icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  width: 22px;
  text-align: center;
}
.ewt-tour-detail .trust-card .trust-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}
.ewt-tour-detail .trust-card .trust-item strong { color: var(--text-dark); }

/* Make sure tour gallery hides cleanly when no images */
.gallery-section:empty { display: none; }

/* ==============================================================
   STAGE 4D HOTFIX (v1.5.1)
   Two fixes:
   1. White bar between fixed header and hero image — caused by
      light body bg showing through .tour-hero padding-top: 72px.
      Solution: paint that 72px area dark navy so no white peek.
   2. Trust-card overflow — explicit max-width + box-sizing.
   ============================================================== */

.ewt-tour-detail .tour-hero {
  background: var(--ewt-navy) !important;
  padding-top: 72px !important;
  padding-bottom: 0 !important;
}

/* Belt-and-suspenders: also ensure no margin on hero or section above */
.ewt-tour-detail .tour-hero,
.ewt-tour-detail .tour-hero-img { margin: 0; }

/* Trust card sidebar containment */
.ewt-tour-detail .tour-sidebar {
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
  min-width: 0;
}
.ewt-tour-detail .tour-sidebar > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.ewt-tour-detail .tour-sidebar .trust-card {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.ewt-tour-detail .tour-sidebar .trust-card .trust-item p {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  min-width: 0;
  max-width: 100%;
}

/* ==============================================================
   STAGE 4E NUCLEAR FIX (v1.5.3)
   Aggressive overrides to kill the persistent white bars on
   tour detail page. Targets multiple selectors with !important.
   ============================================================== */

/* 1. Body bg under tour detail = dark navy, so any "showing through" is dark */
body.single-ewt_tour,
body.postid-ewt_tour,
body.ewt-site.single-ewt_tour { background: #010d1a !important; }

/* 2. The main wrapper itself */
body.single-ewt_tour main,
body.single-ewt_tour .ewt-main,
body.single-ewt_tour .ewt-tour-detail,
.ewt-tour-detail { background: #010d1a !important; }

/* 3. Force tour-hero + its wrapper to be solid navy */
body.single-ewt_tour section.tour-hero,
.ewt-tour-detail section.tour-hero,
section.tour-hero {
  background: #010d1a !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* 4. Tour-hero-img — give it a top margin equal to the fixed header height,
   so the image sits below the header WITHOUT a padding-bg gap */
.ewt-tour-detail .tour-hero-img,
body.single-ewt_tour .tour-hero-img {
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  height: 580px !important;
}

/* 5. Push the image down BELOW the fixed header, no gap */
.ewt-tour-detail .tour-hero { padding-top: 72px !important; }

/* 6. Quick-facts-strip starts immediately after hero — no margin/padding above */
.ewt-tour-detail .quick-facts-strip,
body.single-ewt_tour .quick-facts-strip {
  margin-top: 0 !important;
  background: #021624 !important;
}

/* 7. Kill any inherited section padding from homepage CSS */
.ewt-tour-detail section:not(.related-section):not(.newsletter-section) {
  padding: 0 !important;
}

/* 8. Kill any default browser block margins */
.ewt-tour-detail h1,
.ewt-tour-detail section,
.ewt-tour-detail .quick-facts-strip {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* ==============================================================
   STAGE 4F (v1.5.5)
   1. Make announce-bar visible (fixed at top, header sits below it)
   2. White bar fix: hero image extends to top:0, header overlays it.
      No padding-top means no white-bg gap. Bulletproof.
   ============================================================== */

/* Announce bar = fixed at the very top, above the header */
.announce-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1001 !important;
  background: var(--green, #77e862) !important;
  color: #010d1a !important;
  text-align: center !important;
  padding: 10px 24px !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
}
.announce-bar a { color: #010d1a !important; text-decoration: underline !important; margin-left: 8px !important; }

/* Header sits below the announce bar (~36px tall) */
body.ewt-site header {
  top: 36px !important;
}

/* Tour hero: image starts at top: 0 behind the fixed header. No padding gap. */
body.single-ewt_tour .tour-hero,
.ewt-tour-detail .tour-hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  background: #010d1a !important;
}

/* The title content needs more room since image extends to top.
   Push it slightly down from absolute bottom so it does not crowd the bottom edge. */
body.single-ewt_tour .tour-hero-content {
  bottom: 0 !important;
  padding-bottom: 50px !important;
}

/* Hide announce bar on smaller screens (it makes the header crowded) */
@media (max-width: 768px) {
  .announce-bar { display: none !important; }
  body.ewt-site header { top: 0 !important; }
}

/* ==============================================================
   ITINERARY: VERTICAL TIMELINE + AT A GLANCE BAR (v1.6.0)
   ============================================================== */

/* AT A GLANCE — quick route overview */
.itin-glance {
  background: linear-gradient(135deg, #014f7f 0%, #013a5e 100%);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 36px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(1,79,127,0.15);
}
.itin-glance-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #77e862;
  margin-bottom: 14px;
}
.itin-glance-route {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 1.5px;
  line-height: 1.25;
}
.itin-glance-stop { white-space: nowrap; color: #fff; }
.itin-glance-arrow { color: #77e862; font-weight: bold; font-size: 0.85em; }

/* VERTICAL TIMELINE */
.itin-timeline {
  position: relative;
  padding: 8px 0;
}

.itin-day {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  align-items: start;
}

/* The connecting line between markers */
.itin-day::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #157bcf 0%, rgba(21,123,207,0.3) 100%);
  z-index: 1;
}
.itin-day:last-child::before { display: none; }

/* The numbered circle marker */
.itin-day-marker {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #157bcf 0%, #014f7f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(21,123,207,0.2);
}
.itin-day-marker .itin-day-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}

/* The content card */
.itin-day-content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
}

/* Decorative arrow connecting marker to card */
.itin-day-content::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 22px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  transform: rotate(45deg);
}

.itin-day-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #1a2332;
  margin: 0 0 12px 0;
  line-height: 1.1;
}

.itin-day-body {
  font-size: 14px;
  line-height: 1.7;
  color: #4a5568;
}
.itin-day-body p { margin: 0 0 10px 0; }
.itin-day-body p:last-child { margin-bottom: 0; }
.itin-day-body strong { color: #1a2332; }

/* Mobile: stack with smaller markers */
@media (max-width: 600px) {
  .itin-day { grid-template-columns: 44px 1fr; gap: 14px; }
  .itin-day-marker { width: 44px; height: 44px; }
  .itin-day-marker .itin-day-num { font-size: 18px; }
  .itin-day::before { left: 21px; top: 44px; }
  .itin-day-content { padding: 16px 18px; }
  .itin-day-content::before { display: none; }
  .itin-glance { padding: 18px 20px; }
}

/* ==============================================================
   ITINERARY: PRINCESS-STYLE MASTER/DETAIL LAYOUT (v1.7.0)
   Replaces the old at-a-glance + vertical timeline.
   ============================================================== */

/* Hide the old at-a-glance bar if any cached HTML still references it */
.itin-glance, .itin-timeline { display: none !important; }

/* Two-column layout: sticky sidebar + content */
.itin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .itin-layout { grid-template-columns: 1fr; gap: 0; }
}

/* Sidebar */
.itin-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px;
}

@media (max-width: 900px) {
  .itin-sidebar { position: static; max-height: none; margin-bottom: 24px; }
}

/* Day list (left side) */
.itin-day-list { list-style: none; margin: 0; padding: 0; }
.itin-day-item { margin: 0; padding: 0; position: relative; }

.itin-day-item a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #1a2332;
  transition: background 0.15s ease;
}

.itin-day-item a:hover { background: #f1f5f9; }
.itin-day-item.is-active a { background: #157bcf; color: #fff; }
.itin-day-item.is-active a .itin-day-num-small { color: rgba(255,255,255,0.8); }

/* Connector line between sidebar items */
.itin-day-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 44px;
  bottom: -4px;
  width: 2px;
  background: #e2e8f0;
  z-index: 0;
}

/* Sidebar icon (the anchor / sea / coach) */
.itin-day-icon {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #014f7f;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #e2e8f0;
}
.itin-day-item.is-active .itin-day-icon {
  background: #014f7f;
  color: #fff;
  box-shadow: 0 0 0 2px #157bcf;
}

/* Sidebar text */
.itin-day-meta { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.itin-day-num-small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #94a3b8;
  margin-bottom: 2px;
}
.itin-day-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* RIGHT: Content area */
.itin-content { min-width: 0; }

.itin-detail {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  scroll-margin-top: 110px;  /* offset for fixed header on anchor jumps */
}

.itin-detail-header { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #e2e8f0; }

.itin-detail-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #157bcf;
  margin-bottom: 6px;
}

.itin-detail-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 1px;
  color: #1a2332;
  line-height: 1.1;
  margin: 0;
}

.itin-detail-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(21,123,207,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #014f7f;
}
.itin-detail-icon svg { width: 18px; height: 18px; }

.itin-detail-body { font-size: 14px; line-height: 1.7; color: #4a5568; }
.itin-detail-body p { margin: 0 0 12px 0; }
.itin-detail-body p:last-child { margin-bottom: 0; }
.itin-detail-body strong { color: #1a2332; }

@media (max-width: 600px) {
  .itin-detail { padding: 20px 22px; }
  .itin-detail-title { font-size: 22px; }
}

/* ==============================================================
   v1.7.1 HOTFIX:
   1. Announce-bar positioning aware of WP admin bar (logged-in)
   2. Force nav menu visibility against Kadence parent CSS
   ============================================================== */

/* When WP admin bar is visible (logged-in admins), shift our fixed
   header + announce bar down to avoid overlap */
body.admin-bar .announce-bar { top: 32px !important; }
body.admin-bar.ewt-site header { top: 68px !important; }

@media screen and (max-width: 782px) {
  body.admin-bar .announce-bar { top: 46px !important; }
  body.admin-bar.ewt-site header { top: 82px !important; }
}

/* Force the primary navigation menu to be visible in the header.
   High specificity to beat any Kadence parent theme overrides. */
body.ewt-site .nav-inner nav,
body.ewt-site header .nav-inner > nav {
  display: block !important;
  visibility: visible !important;
  flex: 1 !important;
  text-align: center !important;
}

body.ewt-site .nav-inner nav ul,
body.ewt-site header nav ul,
body.ewt-site header .nav-inner nav ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 32px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.ewt-site .nav-inner nav ul li,
body.ewt-site header nav ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

body.ewt-site .nav-inner nav ul li a,
body.ewt-site header nav ul li a,
body.ewt-site header .nav-inner nav ul li a {
  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
  background: transparent !important;
  border: none !important;
  display: inline-block !important;
  white-space: nowrap !important;
  transition: color 0.2s !important;
}

body.ewt-site .nav-inner nav ul li a:hover,
body.ewt-site header nav ul li a:hover {
  color: #fff !important;
}

body.ewt-site .nav-inner nav ul li.current-menu-item a,
body.ewt-site header nav ul li.current-menu-item a {
  color: #77e862 !important;
}

/* Hide hamburger on desktop, show on mobile (must override Kadence) */
@media (min-width: 769px) {
  body.ewt-site header .hamburger { display: none !important; }
}
@media (max-width: 768px) {
  body.ewt-site header nav { display: none !important; }
  body.ewt-site header .hamburger { display: flex !important; }
}

/* ==============================================================
   v1.7.2 ROOT-CAUSE FIX
   The body.ewt-site class isn\t being added by the body_class
   filter on this install (likely Kadence parent overrides it),
   so all CSS scoped under body.ewt-site fails. Drop the prefix.
   ============================================================== */

/* Announce bar: fixed at top, but offset for WP admin bar */
.announce-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1001 !important;
  background: #77e862 !important;
  color: #010d1a !important;
  text-align: center !important;
  padding: 10px 24px !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}
.announce-bar a { color: #010d1a !important; text-decoration: underline !important; margin-left: 8px !important; }

/* Header: fixed below announce-bar */
header { top: 36px !important; }

/* Logged-in: shift everything down 32px to clear WP admin bar */
body.admin-bar .announce-bar { top: 32px !important; }
body.admin-bar header { top: 68px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar .announce-bar { top: 46px !important; }
  body.admin-bar header { top: 82px !important; }
}

/* Force nav menu visibility — no body.ewt-site dependency */
header nav,
header .nav-inner > nav {
  display: block !important;
  visibility: visible !important;
  flex: 1 !important;
  text-align: center !important;
}

header nav ul,
header .nav-inner nav ul {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 32px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

header nav ul li,
header .nav-inner nav ul li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

header nav ul li a,
header .nav-inner nav ul li a {
  font-family: Montserrat, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: transparent !important;
  padding: 8px 0 !important;
  border: none !important;
}
header nav ul li a:hover { color: #fff !important; }

@media (min-width: 769px) { header .hamburger { display: none !important; } }
@media (max-width: 768px) {
  header nav { display: none !important; }
  header .hamburger { display: flex !important; }
}

/* Tour hero — drop body prefix too */
.ewt-tour-detail .tour-hero {
  background: #010d1a !important;
  padding-bottom: 0 !important;
}

/* ==============================================================
   v1.7.3 NUCLEAR NAV FIX
   Menu HTML confirmed rendering. Issue is Kadence CSS hiding it.
   Use hyper-specific selectors + every visibility property.
   ============================================================== */

/* Force visibility on every wrapper */
.nav-inner > nav,
header > .nav-inner > nav,
header nav {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  height: auto !important;
  min-height: auto !important;
  width: auto !important;
  flex: 1 !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
}

/* Force the UL to be visible flex */
.nav-inner nav > ul,
header nav > ul,
header nav ul {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 32px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  width: auto !important;
  background: transparent !important;
  position: static !important;
}

/* Force EACH li to render */
.nav-inner nav ul li,
.nav-inner nav ul li.menu-item,
header nav ul li,
header nav ul li.menu-item {
  display: list-item !important;
  visibility: visible !important;
  opacity: 1 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  height: auto !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  float: none !important;
}

/* Force EACH link to be visible white */
.nav-inner nav ul li a,
.nav-inner nav ul li.menu-item > a,
header nav ul li a,
header nav ul li.menu-item > a {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: transparent !important;
  padding: 8px 0 !important;
  border: none !important;
  height: auto !important;
  width: auto !important;
  white-space: nowrap !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4) !important;
}

.nav-inner nav ul li a:hover,
header nav ul li a:hover {
  color: #77e862 !important;
}

.nav-inner nav ul li.current-menu-item > a,
header nav ul li.current-menu-item > a {
  color: #77e862 !important;
}

/* ==============================================================
   v1.7.5 — Announce bar REMOVED
   Header returns to top: 0 (no announce-bar above it).
   When admin bar is visible (logged-in), shift header to top: 32px.
   ============================================================== */

/* Hide announce-bar entirely if any cached HTML still has it */
.announce-bar { display: none !important; }

/* Header back to top of viewport */
header { top: 0 !important; }

/* Logged-in: shift just for WP admin bar */
body.admin-bar header { top: 32px !important; }
@media screen and (max-width: 782px) {
  body.admin-bar header { top: 46px !important; }
}

/* ==============================================================
   v1.8.1 — Restore section spacing (scoped properly this time)
   Earlier cleanup removed the global "section { padding }" rule,
   which made the homepage sections collide. Re-add per-page.
   ============================================================== */

/* HOMEPAGE: section padding for breathing room */
.ewt-home > section,
.ewt-home > div.trust-bar + section,
body.home .destinations-section,
body.home .tours-section,
body.home .excursions-section,
body.home .essentials-section,
body.home .how-section,
body.home .about-strip,
body.home .testimonials-section,
body.home .newsletter-section {
  padding: 96px 0;
}
body.home .how-section.tight,
.ewt-home .how-section.tight { padding: 64px 0; }

/* Hero stays full-bleed (no top/bottom padding from above rules) */
.ewt-home > section.hero,
body.home .hero { padding: 0 !important; }

/* ABOUT PAGE: section spacing */
.ewt-about-page > section,
.ewt-about-page .story-section,
.ewt-about-page .values-section,
.ewt-about-page .team-section,
.ewt-about-page .guides-section { padding: 80px 0; }
.ewt-about-page .about-hero { padding: 96px 0 64px; }

/* CONTACT PAGE: section spacing */
.ewt-contact-page > section,
.ewt-contact-page .contact-main { padding: 80px 0; }
.ewt-contact-page .contact-hero { padding: 96px 0 48px; }

/* COUNTRY/CITY/NEIGHBORHOOD pages: section spacing */
.ewt-country-page > section,
.ewt-city-page > section,
.ewt-neighborhood-page > section,
.ewt-region-page > section { padding: 64px 0; }
.ewt-country-page .country-hero,
.ewt-city-page .city-hero,
.ewt-region-page .region-hero,
.ewt-neighborhood-page .city-hero { padding: 0 !important; }

/* TOURS ARCHIVE: section spacing */
.ewt-tours-archive > section,
.ewt-tours-archive .tours-grid-section { padding: 64px 0; }
.ewt-tours-archive .tours-hero { padding: 0 !important; }

/* BLOG ARCHIVE: section spacing */
.ewt-blog-archive > section,
body.blog .featured-section,
body.blog .blog-grid-section,
body.blog .spotlight-section,
body.blog .cats-section,
body.blog .more-posts-section { padding: 64px 0; }

/* Tour detail stays tight (no section padding) — already handled */

/* ==============================================================
   v2.0.0 — Itinerary 2-column layout STRONG enforcement
   Previous CSS lost cascade fight. Use !important + body class.
   ============================================================== */

.ewt-tour-detail .itin-layout {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  gap: 32px !important;
  align-items: start !important;
}

@media (max-width: 900px) {
  .ewt-tour-detail .itin-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* Sidebar list — kill bullets, keep clean look */
.ewt-tour-detail .itin-day-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ewt-tour-detail .itin-day-item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Sidebar sticky on desktop */
@media (min-width: 901px) {
  .ewt-tour-detail .itin-sidebar {
    position: sticky !important;
    top: 110px !important;
  }
}
