  :root {
    --gold: #D4AF37;
    --gold-light: #E8C97A;
    --gold-pale: #F5E8C0;
    --deep: #1A3A52;
    --deep2: #162132;
    --teal: #00D1FF;
    --teal-light: #00A3C9;
    --coral: #D4614A;
    --cream: #F8FAFC;
    --white: #ffffff;
    --text: #1A3A52;
    --text-light: #7A8D9A;
  }

  .tour-package-page {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ===== HERO ===== */
  .hm-hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep);
  }
  .hm-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    0% { transform: scale(1.08) translateX(0); }
    100% { transform: scale(1.15) translateX(-2%); }
  }
  .hm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      170deg,
      rgba(13,27,42,0.55) 0%,
      rgba(13,27,42,0.3) 40%,
      rgba(201,168,76,0.15) 70%,
      rgba(13,27,42,0.75) 100%
    );
  }
  .hm-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hm-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: hmFloat var(--dur, 8s) ease-in-out var(--delay, 0s) infinite;
  }
  @keyframes hmFloat {
    0% { opacity: 0; transform: translateY(100vh) translateX(0); }
    10% { opacity: 0.8; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) translateX(30px); }
  }
  .hm-hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 1200px;
  }
  .hm-hero-tag {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 20px;
    margin-bottom: 28px;
    animation: hmFadeUp 1s ease 0.2s both;
  }
  .hm-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -1px;
    animation: hmFadeUp 1s ease 0.4s both;
    color: white;
    margin: 0;
  }
  .hm-hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hm-hero-subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
    animation: hmFadeUp 1s ease 0.6s both;
  }
  .hm-hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin: 24px auto;
    max-width: 600px;
    line-height: 1.6;
    animation: hmFadeUp 1s ease 0.7s both;
  }
  .hm-hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 36px 0;
    animation: hmFadeUp 1s ease 0.8s both;
  }
  .hm-hero-meta-item { text-align: center; }
  .hm-hero-meta-item .hm-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
  }
  .hm-hero-meta-item .hm-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
  }
  .hm-hero-divider {
    width: 1px;
    height: 50px;
    background: rgba(201,168,76,0.4);
    margin: auto 0;
  }
  .hm-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: hmFadeUp 1s ease 1s both;
  }
  .hm-btn-primary {
    background: var(--gold);
    color: var(--deep);
    padding: 16px 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .hm-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    color: var(--deep);
  }
  .hm-btn-outline {
    background: transparent;
    color: white;
    padding: 15px 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .hm-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }
  .hm-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: hmFadeUp 1s ease 1.4s both;
  }
  .hm-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.7); opacity: 0.5; }
  }
  @keyframes hmFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== OVERVIEW STRIP ===== */
  .hm-overview-strip {
    background: var(--deep);
    display: flex;
    overflow-x: auto;
  }
  .hm-strip-item {
    flex: 1;
    min-width: 200px;
    padding: 18px 24px;
    border-right: 1px solid rgba(201,168,76,0.15);
    text-align: center;
    transition: background 0.3s;
  }
  .hm-strip-item:hover { background: rgba(201,168,76,0.06); }
  .hm-strip-item:last-child { border-right: none; }
  .hm-strip-icon { font-size: 24px; margin-bottom: 10px; color: var(--gold-light); }
  .hm-strip-label {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .hm-strip-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: white;
    font-weight: 400;
  }

  /* ===== SECTION HEADER ===== */
  .hm-section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .hm-section-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
  }
  .hm-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--deep);
    line-height: 1.1;
    margin: 0;
  }
  .hm-section-title em { font-style: italic; color: var(--teal); }
  .hm-section-rule {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
  }

  /* ===== OVERVIEW ===== */
  .hm-overview {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
  }
  .hm-overview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/web-images/whysrilanka/bluewhale.webp') center/cover no-repeat fixed;
    opacity: 0.15;
  }
  .hm-overview::after {
    content: 'EXPLORE';
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.04;
    pointer-events: none;
    letter-spacing: 10px;
  }
  .hm-overview-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
  .hm-overview-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .hm-overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }
  .hm-tag {
    padding: 8px 18px;
    border: 1px solid var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(201,168,76,0.06);
  }
  .hm-overview-visual { position: relative; }
  .hm-img-stack {
    position: relative;
    height: 500px;
  }
  .hm-img-stack img {
    position: absolute;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  }
  .hm-ois-main {
    width: 75%;
    height: 400px;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .hm-ois-secondary {
    width: 55%;
    height: 260px;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
  }
  .hm-ois-accent {
    position: absolute;
    bottom: 30px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    opacity: 0.12;
    z-index: 1;
  }
  .hm-overview-quote {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--deep);
    color: var(--gold-light);
    padding: 20px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5;
    max-width: 200px;
    z-index: 4;
  }

  /* ===== WHO IS THIS FOR ===== */
  .hm-suitable {
    background: var(--deep);
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
  }
  .hm-suitable::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/web-images/places-section/galle-fort.webp') center/cover;
    opacity: 0.08;
  }
  .hm-suitable .hm-section-title { color: white; }
  .hm-suitable .hm-section-eyebrow { color: var(--gold-light); }
  .hm-sf-grid {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .hm-sf-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .hm-sf-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .hm-sf-card:hover::before { opacity: 1; }
  .hm-sf-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.5); }
  .hm-sf-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
    color: var(--gold-light);
  }
  .hm-sf-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: white;
    margin-bottom: 12px;
    font-weight: 400;
  }
  .hm-sf-desc {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
  }

  /* ===== HIGHLIGHTS ===== */
  .hm-highlights {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
  }
  .hm-highlights::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100%;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(26,92,107,0.08) 0%, transparent 50%);
  }
  .hm-highlights-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .hm-hl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hm-hl-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 2px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .hm-hl-item:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
  .hm-hl-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.35;
    line-height: 1;
    min-width: 36px;
  }
  .hm-hl-text {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--text);
    line-height: 1.6;
  }
  .hm-hl-visual { position: relative; }
  .hm-hl-img-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  .hm-hl-img-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--cream);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  .hm-hl-img-overlay-2 {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 45%;
    height: 180px;
    object-fit: cover;
    border: 5px solid var(--cream);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 2;
  }
  .hm-hl-img-overlay-3 {
    position: absolute;
    bottom: -40px;
    left: 20px;
    width: 35%;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--cream);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 2;
  }
  .hm-hl-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--gold);
    color: var(--deep);
    padding: 12px 20px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
  }

  /* ===== ITINERARY ===== */
  .hm-itinerary {
    position: relative;
    background: var(--deep);
    padding: 80px 40px;
    overflow: hidden;
    --itin-bg: url('/web-images/places-section/ninearch.webp');
  }
  .hm-itinerary::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--itin-bg);
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    transition: background-image 0.5s ease-in-out;
  }
  .hm-itin-map-line {
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 100px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    opacity: 0.2;
    transform: translateX(-50%);
  }
  .hm-itin-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hm-itinerary .hm-section-title { color: white; }
  .hm-itinerary .hm-section-eyebrow { color: var(--gold-light); }
  .hm-day-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    margin-bottom: 50px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .hm-day-tabs::-webkit-scrollbar { height: 4px; }
  .hm-day-tabs::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.5); border-radius: 4px; }
  @media (min-width: 768px) {
    .hm-day-tabs { justify-content: flex-start; }
  }
  .hm-day-tab {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Josefin Sans', sans-serif;
  }
  .hm-day-tab.active, .hm-day-tab:hover {
    background: var(--gold);
    color: var(--deep);
    border-color: var(--gold);
    font-weight: 700;
  }
  .hm-day-panel { display: none; }
  .hm-day-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .hm-day-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.8;
    margin-bottom: 10px;
  }
  .hm-day-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: white;
    margin-bottom: 6px;
    font-weight: 400;
  }
  .hm-day-route {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .hm-day-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hm-timeline-item {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .hm-timeline-time {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    min-width: 90px;
    padding-top: 3px;
  }
  .hm-timeline-act {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }
  .hm-timeline-act strong { color: white; display: block; margin-bottom: 2px; }
  .hm-day-overnight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .hm-day-visual {
    position: relative;
    height: 500px;
  }
  .hm-day-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }
  .hm-day-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(13,27,42,0.9), transparent);
  }
  .hm-day-dress {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
  }
  .hm-day-dress span { color: var(--gold-light); }

  /* ===== ITINERARY NAV (PREV / NEXT) ===== */
  .hm-itin-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  /* Compact circle arrow buttons */
  .hm-nav-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease,
                transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    /* tooltip context */
    overflow: visible;
  }
  .hm-nav-btn:hover:not(:disabled) {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212,175,55,0.35);
  }
  .hm-nav-btn:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212,175,55,0.25);
  }
  .hm-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* Arrow SVG inside circle */
  .hm-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .hm-nav-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-light);
    transition: stroke 0.3s ease, transform 0.3s ease;
  }
  .hm-nav-btn:hover:not(:disabled) .hm-nav-arrow svg {
    stroke: var(--deep);
  }
  .hm-nav-prev:hover:not(:disabled) .hm-nav-arrow svg {
    transform: translateX(-2px);
  }
  .hm-nav-next:hover:not(:disabled) .hm-nav-arrow svg {
    transform: translateX(2px);
  }

  /* Tooltip — hidden by default, shown on hover */
  .hm-nav-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(20,40,58,0.96);
    border: 1px solid rgba(212,175,55,0.25);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 20;
  }
  /* small caret */
  .hm-nav-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(212,175,55,0.25);
  }
  /* reveal on button hover */
  .hm-nav-btn:hover:not(:disabled) .hm-nav-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .hm-nav-hint {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    font-family: 'Josefin Sans', sans-serif;
  }
  .hm-nav-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    display: block;
    line-height: 1.2;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .hm-nav-btn { width: 46px; height: 46px; }
  }

  /* ===== TOUR SUMMARY TABLE ===== */
  .hm-summary {
    padding: 100px 40px;
    background: white;
    position: relative;
    overflow: hidden;
  }
  .hm-summary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--teal), var(--coral), var(--gold));
  }
  .hm-summary-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .hm-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
  }
  .hm-summary-table th {
    background: var(--deep);
    color: var(--gold-light);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
  }
  .hm-summary-table td {
    padding: 16px 20px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    line-height: 1.6;
  }
  .hm-summary-table tr:hover td { background: rgba(201,168,76,0.04); }
  .hm-day-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--deep);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
  }

  /* ===== GALLERY ===== */
  .hm-gallery {
    padding: 100px 40px;
    background: var(--cream);
    overflow: hidden;
  }
  .hm-gallery-inner { max-width: 1400px; margin: 0 auto; }
  .hm-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 12px;
  }
  .hm-gm-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .hm-gm-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .hm-gm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .hm-gm-item:hover img { transform: scale(1.1); }
  .hm-gm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  .hm-gm-item:hover .hm-gm-overlay { opacity: 1; }
  .hm-gm-label {
    color: white;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* ===== INCLUSIONS / EXCLUSIONS ===== */
  .hm-inclusions {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
  }
  .hm-inclusions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/web-images/places-section/ocean.webp') center/cover fixed;
    opacity: 0.12;
  }
  .hm-inc-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .hm-inc-card {
    background: white;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
  }
  .hm-inc-card.hm-inc-header { border-top: 4px solid var(--gold); }
  .hm-inc-card.hm-exc-header { border-top: 4px solid var(--coral); }
  .hm-inc-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--deep);
    margin-bottom: 30px;
    font-weight: 400;
  }
  .hm-inc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
    margin: 0;
  }
  .hm-inc-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
  }
  .hm-inc-list li i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
  }
  .hm-inc-list.hm-yes-list li i { color: var(--gold); }
  .hm-inc-list.hm-no-list li i { color: var(--coral); }

  /* ===== PERKS — WARM IVORY RIBBON CARDS ===== */
  .hm-perks {
    background: linear-gradient(180deg, #fbfbfb 0%, #f1f1f1 100%);
    padding: 110px 40px;
    position: relative;
    overflow: hidden;
  }
  .hm-perks::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    top: -200px; right: -200px;
    border-radius: 50%;
  }
  .hm-perks::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    bottom: -150px; left: -100px;
    border-radius: 50%;
  }
  .hm-perks-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
  }
  .hm-perks .hm-section-title { color: var(--deep); }
  .hm-perks .hm-section-eyebrow { color: var(--gold); }
  .hm-perks-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .hm-perk-card {
    background: white;
    border: none;
    border-left: 4px solid var(--gold);
    padding: 26px 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
  }
  .hm-perk-card:hover {
    background: white;
    border-color: var(--gold);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.1);
  }
  .hm-perk-card::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .hm-perk-card:hover::after { opacity: 1; }
  .hm-perk-icon {
    font-size: 22px;
    color: var(--gold);
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .hm-perk-text {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.5;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
  }

  /* ===== ADD-ONS — MAGAZINE TABLE ON DARK TEAL ===== */
  .hm-addons-section {
    background: linear-gradient(160deg, #0a3d3d 0%, #0d2f2f 60%, #122424 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .hm-addons-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.03) 59px, rgba(201,168,76,0.03) 60px),
      repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.03) 59px, rgba(201,168,76,0.03) 60px);
  }
  .hm-addons-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
  }
  .hm-addons-header {
    text-align: center;
    margin-bottom: 50px;
  }
  .hm-addons-header .hm-addons-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #5ddba9;
    margin-bottom: 12px;
    display: block;
  }
  .hm-addons-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 14px;
    font-weight: 400;
    text-align: center;
  }
  .hm-addons-title em { font-style: italic; color: #5ddba9; }
  .hm-addons-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: 'Josefin Sans', sans-serif;
  }

  .hm-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
  }
  .hm-combined-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
  }
  @media (max-width: 992px) {
    .hm-combined-grid { grid-template-columns: 1fr; gap: 50px; }
  }
  .hm-addons-scrollable {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 15px;
  }
  .hm-addons-scrollable::-webkit-scrollbar {
    width: 6px;
  }
  .hm-addons-scrollable::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
  }
  .hm-addons-scrollable::-webkit-scrollbar-thumb {
    background: rgba(93,219,169,0.3);
    border-radius: 4px;
  }
  .hm-addons-scrollable::-webkit-scrollbar-thumb:hover {
    background: rgba(93,219,169,0.6);
  }
  .hm-addon-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .hm-addon-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: #5ddba9;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
  }
  .hm-addon-card:hover {
    background: rgba(93,219,169,0.05);
    border-color: rgba(93,219,169,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .hm-addon-card:hover::before {
    transform: scaleY(1);
  }
  .hm-addon-name {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-family: 'Josefin Sans', sans-serif;
  }
  .hm-addon-price {
    font-size: 12px;
    color: #5ddba9;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    background: rgba(93,219,169,0.1);
    border-radius: 20px;
    font-family: 'Josefin Sans', sans-serif;
  }
  .hm-addon-price.hm-ao-free {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
  }

  /* ===== BOOKING CTA — SPLIT PANEL GLASS ===== */
  .hm-booking {
    position: relative;
    padding: 0;
    overflow: hidden;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hm-booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/web-images/places-section/safari1.webp') center/cover;
    filter: saturate(1.3) brightness(0.4);
  }
  .hm-booking::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.65) 0%, rgba(10,61,61,0.5) 100%);
  }
  .hm-booking-inner {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto;
    padding: 70px 50px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.2);
  }
  .hm-booking-inner::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .hm-booking-inner::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .hm-booking .hm-section-eyebrow { color: #5ddba9; }
  .hm-booking .hm-section-title { color: white; font-size: clamp(28px, 4vw, 40px); }
  .hm-booking-price-wrap {
    margin: 34px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .hm-booking-from {
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Josefin Sans', sans-serif;
  }
  .hm-booking-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    color: var(--gold-light);
    line-height: 1;
    font-weight: 300;
  }
  .hm-booking-price sup { font-size: 28px; vertical-align: super; }
  .hm-booking-price .hm-per { font-size: 18px; color: rgba(255,255,255,0.4); font-family: 'Josefin Sans', sans-serif; font-weight: 300; }
  .hm-booking-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .hm-booking-btns .hm-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #d4b85c 100%);
    color: var(--deep);
    border: none;
    font-weight: 700;
  }
  .hm-booking-btns .hm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,168,76,0.3);
  }
  .hm-booking-btns .hm-btn-outline {
    border-color: rgba(255,255,255,0.25);
    color: white;
  }
  .hm-booking-btns .hm-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
  }
  .hm-booking-trust {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .hm-booking-trust span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .hm-booking-trust i {
    color: var(--gold);
    font-size: 12px;
  }

  /* ===== MAP ===== */
  .hm-map {
    padding: 80px 40px;
  }
  .hm-map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .hm-overview-inner { grid-template-columns: 1fr; gap: 50px; }
    .hm-sf-grid { grid-template-columns: 1fr 1fr; }
    .hm-highlights-inner { grid-template-columns: 1fr; gap: 50px; }
    .hm-day-panel.active { grid-template-columns: 1fr; }
    .hm-inc-inner { grid-template-columns: 1fr; }
    .hm-perks-grid { grid-template-columns: repeat(3, 1fr); }
    .hm-addons-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .hm-gm-item:nth-child(1) { grid-column: span 2; height: 300px; }
    .hm-gm-item { height: 200px; }
  }
  @media (max-width: 768px) {
    .hm-hero-meta { gap: 20px; flex-wrap: wrap; }
    .hm-hl-grid { grid-template-columns: 1fr; }
    .hm-img-stack { height: 350px; }
    .hm-ois-main { width: 85%; height: 280px; }
    .hm-ois-secondary { width: 60%; height: 180px; }
    .hm-sf-grid { grid-template-columns: 1fr; }
    .hm-perks-grid { grid-template-columns: 1fr 1fr; }
    .hm-addons-grid { grid-template-columns: 1fr; }
    .hm-gallery-masonry { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hm-gm-item:nth-child(1) { grid-column: span 1; height: 250px; }
    .hm-day-visual { height: 350px; }
    .hm-booking-price { font-size: 52px; }
  }

  /* ============================================================
     DISCOVERY TOUR — CAPTIVATING MOMENTS GALLERY
  ============================================================ */
  .disc-gallery { background: var(--deep2); padding: 90px 0 70px; }
  .hm-gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  .disc-gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
    margin-top: 50px;
    border-radius: 18px;
    overflow: hidden;
  }

  /* Hero large image */
  .disc-gal-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
  }
  .disc-gal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .disc-gal-hero:hover img { transform: scale(1.05); }
  .disc-gal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px 24px;
    background: linear-gradient(to top, rgba(10,20,35,0.92) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .disc-gal-caption i {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .disc-gal-caption span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
  }
  .disc-gal-caption p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    margin: 0;
  }

  /* Side 2x2 grid */
  .disc-gal-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .disc-gal-item {
    position: relative;
    height: 254px;
    overflow: hidden;
  }
  .disc-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .disc-gal-item:hover img { transform: scale(1.08); }
  .disc-gal-caption-sm {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(10,20,35,0.88) 0%, transparent 100%);
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .disc-gal-caption-sm i { color: var(--gold); font-size: 11px; }

  /* Stats ribbon below gallery */
  .disc-stats-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 16px;
    padding: 28px 40px;
    flex-wrap: wrap;
  }
  .disc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 120px;
    padding: 8px 20px;
  }
  .disc-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .disc-stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }
  .disc-stat-div {
    width: 1px;
    height: 50px;
    background: rgba(212,175,55,0.2);
  }

  /* ============================================================
     DISCOVERY TOUR — COMPLIMENTARY BENEFITS
  ============================================================ */
  .disc-benefits-section {
    background: var(--deep);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .disc-benefits-section::before {
    content: 'BENEFITS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 160px;
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.1em;
  }
  .disc-benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  .disc-benefits-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
    max-width: 580px;
    margin: 16px auto 0;
    text-align: center;
  }
  .disc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
  }
  .disc-benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
  }
  .disc-benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .disc-benefit-card:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  }
  .disc-benefit-card:hover::after { opacity: 1; }

  .disc-benefit-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212,175,55,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .disc-benefit-icon-wrap i {
    font-size: 20px;
    color: var(--gold);
  }
  .disc-benefit-content { flex: 1; }
  .disc-benefit-content h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
  }
  .disc-benefit-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin: 0;
  }
  .disc-benefit-tag {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--gold), #b8902a);
    color: var(--deep2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 20px;
  }

  /* ============================================================
     DISCOVERY TOUR — ROUTE MAP SECTION
  ============================================================ */
  .disc-map-section {
    background: var(--deep2);
    padding: 80px 0 90px;
  }
  .disc-map-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .disc-map-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 14px;
    line-height: 1.8;
    max-width: 600px;
    margin: 14px auto 0;
    text-align: center;
  }
  .disc-map-route-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 36px 0 24px;
  }
  .disc-route-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
  }
  .disc-map-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    position: relative;
  }
  .disc-map-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.1);
    pointer-events: none;
    z-index: 1;
  }
  .disc-map-frame iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
  }
  .tour-summary-table-wrapper {
    overflow: hidden;
}

  /* ============================================================
     DISCOVERY SECTIONS — RESPONSIVE
  ============================================================ */
  @media (max-width: 1024px) {
    .disc-gallery-grid { grid-template-columns: 1fr 1fr; }
    .disc-gal-hero { height: 420px; }
    .disc-gal-item { height: 204px; }
    .disc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .disc-gallery-grid { grid-template-columns: 1fr; }
    .disc-gal-hero { height: 320px; }
    .disc-gal-side { grid-template-columns: 1fr 1fr; }
    .disc-gal-item { height: 180px; }
    .disc-stats-ribbon { gap: 0; padding: 20px 16px; }
    .disc-stat { min-width: 80px; padding: 8px 12px; }
    .disc-stat-num { font-size: 34px; }
    .disc-stat-div { height: 36px; }
    .disc-benefits-grid { grid-template-columns: 1fr; }
    .disc-benefit-card { flex-direction: row; align-items: flex-start; flex-wrap: wrap; }
    .disc-benefit-tag { margin-left: auto; }
    .disc-map-route-labels { gap: 6px; }
    .disc-route-chip { font-size: 10px; padding: 5px 10px; }
    .disc-map-frame iframe { height: 380px; }
  }
  @media (max-width: 480px) {
    .disc-gal-side { grid-template-columns: 1fr; }
    .disc-gal-item { height: 200px; }
    .disc-stats-ribbon { flex-direction: column; gap: 12px; }
    .disc-stat-div { width: 60px; height: 1px; }
    .disc-map-frame iframe { height: 300px; }
    .disc-benefits-section::before { font-size: 80px; }
  }

