/* ============================================================
   style.css — Global shared styles (all pages)
   Covers: variables · reset · layout · navbar · buttons ·
           hero · services · locations · packages (flip) ·
           popular cards · spiritual · testimonials · cta ·
           footer · desktop & mobile breakpoints
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
    --primary-gold : #d4af37;
    --light-saffron: #f8f2e7;
    --text-dark    : #222;
    --text-light   : #666;
    --white        : #ffffff;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
* {
    margin     : 0;
    padding    : 0;
    box-sizing : border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family : 'Poppins', sans-serif;
    line-height : 1.6;
    color       : var(--text-dark);
    background  : linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
                  url('../images/hero.webp') center / cover fixed no-repeat;
}

h1, h2, h3 { font-weight: 600; }

h1 { font-size: 42px; }

h2 {
    font-size     : 30px;
    text-align    : center;
    margin-bottom : 30px;
    position      : relative;
}

h2::after {
    content    : "";
    width      : 50px;
    height     : 2px;
    background : var(--primary-gold);
    display    : block;
    margin     : 10px auto 0;
}

a { text-decoration: none; }


/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
    max-width : 1200px;
    margin    : auto;
    padding   : 0 30px;
}

section { padding: 80px 0; }


/* ============================================================
   4. TOP BAR
   ============================================================ */
.top-bar {
    background     : rgba(255,255,255,0.6);
    font-size      : 13px;
    padding        : 6px 0;
    backdrop-filter: blur(4px);
    border-bottom  : 1px solid rgba(0,0,0,0.05);
}

.top-bar .container {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
}

.top-left span { margin-right: 15px; }


/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
    position       : sticky;
    top            : 0;
    z-index        : 1000;
    background     : rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow     : 0 2px 16px rgba(212,175,55,0.13);
    border-bottom  : 1px solid rgba(212,175,55,0.08);
}

.navbar .container {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    height         : 63px;
}

/* ── LOGO ── */
.logo-link {
    text-decoration: none;
    display        : flex;
    align-items    : center;
    gap            : 0px;
}

.logo-img {
    width     : 90px;
    height    : 90px;
    object-fit: contain;
    flex-shrink: 0;
    display   : block;
}

.logo-text-block {
    display       : flex;
    flex-direction: column;
    justify-content: center;
    gap           : 0px;
}

.logo-name {
    font-size    : 20px;
    font-weight  : 700;
    color        : var(--text-dark);
    line-height  : 1;
    margin       : 0;
    letter-spacing: 0.2px;
}

/* "Powered by Padmavathi Tours and Travels" — small subtitle, no pill */
.logo-sub {
    font-size  : 10px;
    color      : var(--primary-gold);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

/* Remove old h2 inside logo */
.logo h2 { display: none; }

/* Footer logo row */
.footer-logo-row {
    display    : flex;
    align-items: center;
    gap        : 3px;
    margin: 0;
    line-height: 1.1;
}

.footer-logo-img {
    width     : 60px;
    height    : 60px;
    object-fit: contain;
    flex-shrink: 0;
    object-fit: contain;
    transform: translateY(2px);
}

.footer-logo-row h3 { margin-bottom: 0; }

/* Mobile logo */
@media (max-width: 768px) {
    .logo-img  { width: 80px; height: 70px; }
    .logo-name { font-size: 17px; }
    .logo-sub  { font-size: 9px; }
}

.footer-logo-img {
        width  : 80px;
        height : 80px;
    }

/* Hamburger — hidden on desktop */
.menu-toggle {
    display      : none;
    font-size    : 24px;
    cursor       : pointer;
    padding      : 4px 8px;
    border-radius: 6px;
    color        : var(--text-dark);
    line-height  : 1;
    transition   : background 0.2s;
}

.menu-toggle:hover { background: rgba(212,175,55,0.1); }

/* Nav list */
.nav-menu ul {
    display    : flex;
    gap        : 4px;
    list-style : none;
    align-items: center;
}

/* Each top-level <li> is a positioning context */
.nav-menu > ul > li { position: relative; }

/* Top-level links & triggers */
.nav-menu > ul > li > a,
.nav-menu > ul > li > .nav-trigger {
    display       : flex;
    align-items   : center;
    gap           : 4px;
    font-size     : 14px;
    color         : var(--text-dark);
    font-weight   : 500;
    padding       : 8px 14px;
    border-radius : 8px;
    transition    : background 0.2s, color 0.2s;
    cursor        : pointer;
    white-space   : nowrap;
    background    : none;
    border        : none;
    font-family   : inherit;
    line-height   : 1;
    text-decoration: none;
}

.nav-menu > ul > li > a:hover,
.nav-menu > ul > li > .nav-trigger:hover,
.nav-menu > ul > li.open > .nav-trigger,
.nav-menu > ul > li.open > a {
    background: rgba(212,175,55,0.1);
    color     : var(--primary-gold);
}

.nav-menu > ul > li > a.active { color: var(--primary-gold); }

/* Remove underline pseudo-element on nav links */
.nav-menu a::after { display: none; }

/* Dropdown caret */
.nav-caret {
    font-size  : 10px;
    transition : transform 0.25s ease;
    opacity    : 0.55;
    display    : inline-block;
    margin-left: 1px;
}

.nav-menu > ul > li.open .nav-caret {
    transform: rotate(180deg);
    opacity  : 1;
}

/* Dropdown panel — desktop */
.nav-dropdown {
    position  : absolute;
    top       : calc(100% + 8px);
    left      : 0;
    min-width : 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.11), 0 2px 8px rgba(212,175,55,0.1);
    border    : 1px solid rgba(212,175,55,0.12);
    padding   : 8px;
    opacity   : 0;
    visibility: hidden;
    transform : translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index   : 200;
}

.nav-menu > ul > li.open .nav-dropdown {
    opacity   : 1;
    visibility: visible;
    transform : translateY(0);
}

/* Dropdown items */
.nav-dropdown a {
    display      : flex;
    align-items  : center;
    gap          : 10px;
    padding      : 9px 12px;
    border-radius: 9px;
    font-size    : 13.5px;
    font-weight  : 500;
    color        : var(--text-dark);
    transition   : background 0.18s, color 0.18s;
    text-decoration: none;
}

.nav-dropdown a:hover {
    background: rgba(212,175,55,0.09);
    color     : var(--primary-gold);
}

.nav-dropdown-icon {
    width        : 34px;
    height       : 34px;
    border-radius: 9px;
    background   : rgba(212,175,55,0.1);
    display      : flex;
    align-items  : center;
    justify-content: center;
    font-size    : 16px;
    flex-shrink  : 0;
    transition   : background 0.2s;
}

.nav-dropdown a:hover .nav-dropdown-icon { background: rgba(212,175,55,0.2); }

.nav-dropdown-text strong {
    display      : block;
    font-size    : 13px;
    font-weight  : 600;
    color        : var(--text-dark);
    margin-bottom: 1px;
    transition   : color 0.18s;
}

.nav-dropdown-text span {
    display    : block;
    font-size  : 11px;
    color      : var(--text-light);
    font-weight: 400;
}

.nav-dropdown a:hover .nav-dropdown-text strong { color: var(--primary-gold); }

.nav-dropdown-divider {
    height    : 1px;
    background: rgba(0,0,0,0.06);
    margin    : 6px 4px;
}

/* Book Now CTA pill */
.nav-book-btn {
    display        : inline-flex;
    align-items    : center;
    padding        : 9px 20px;
    border-radius  : 8px;
    font-size      : 13.5px;
    font-weight    : 600;
    background     : linear-gradient(135deg, #d4af37, #f2d57c);
    color          : #1a1200 !important;
    transition     : 0.25s;
    box-shadow     : 0 4px 14px rgba(212,175,55,0.3);
    margin-left    : 8px;
    text-decoration: none;
    letter-spacing : 0.2px;
}

.nav-book-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 22px rgba(212,175,55,0.45);
}

.nav-book-btn::after,
.nav-trigger::after { display: none !important; }

/* Badge inside logo / hero */
.hero-badge {
    display      : inline-block;
    background   : rgba(212,175,55,0.12);
    color        : var(--primary-gold);
    padding      : 6px 14px;
    border-radius: 20px;
    font-size    : 13px;
    margin-bottom: 15px;
}

.nav-badge {
    font-size    : 10px;
    padding      : 3px 9px;
    margin-bottom: 0;
    margin-top   : 2px;
    display      : block;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
    display      : inline-block;
    padding      : 12px 22px;
    border-radius: 8px;
    font-weight  : 500;
    transition   : 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f2d57c);
    color     : #fff;
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}

.btn-primary:hover {
    transform : translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.45);
}

.btn-outline {
    border: 1px solid var(--primary-gold);
    color : var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color     : #fff;
}


/* ============================================================
   7. HERO
   ============================================================ */
.hero { padding: 80px 0; }

.hero-container {
    display    : flex;
    align-items: center;
    gap        : 60px;
}

.hero-left {
    flex     : 1;
    max-width: 520px;
}

.hero-left h1 {
    font-size     : 44px;
    line-height   : 1.25;
    margin-bottom : 8px;
    letter-spacing: -0.5px;
}

.hero-dynamic-title {
    display: flex;
    align-items: flex-start;
    min-height: 1.35em;
    max-width: 680px;
    letter-spacing: 0;
}

.hero-left .hero-dynamic-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-dynamic-title span {
    display: inline-block;
    max-width: 100%;
    background: linear-gradient(95deg, #111 0%, #111 52%, var(--primary-gold) 70%, #8b6500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0;
    overflow: hidden;
    overflow-wrap: normal;
    text-shadow: 0 10px 28px rgba(212,175,55,0.12);
    white-space: nowrap;
}

.hero-highlight {
    font-size    : 22px;
    color        : var(--primary-gold);
    margin-bottom: 14px;
}

.hero-subtext {
    font-size    : 15px;
    color        : var(--text-light);
    margin-bottom: 20px;
    line-height  : 1.6;
}

/* Price highlight block */
.hero-price-highlight {
    display       : flex;
    flex-direction: column;
    gap           : 10px;
    margin        : 10px 0 18px;
}

.hero-price-row-1 {
    display    : flex;
    align-items: center;
    gap        : 10px;
    flex-wrap  : wrap;
}

.hero-price-row-2 {
    display    : flex;
    align-items: center;
    gap        : 10px;
    flex-wrap  : wrap;
}

.hero-price-from {
    font-size  : 1rem;
    color      : #888;
    font-weight: 400;
}

.hero-price-amount {
    font-size  : 2.8rem;
    font-weight: 700;
    color      : var(--primary-gold);
    line-height: 1;
}

.hero-price-only {
    font-size  : 1.1rem;
    font-weight: 600;
    color      : #c0392b;
    margin-left: 4px;
}

/* Discount badge — shown next to price */
.hero-discount-badge {
    display      : inline-block;
    background   : linear-gradient(135deg, #e74c3c, #c0392b);
    color        : #fff;
    font-size    : 0.78rem;
    font-weight  : 700;
    padding      : 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    box-shadow   : 0 3px 10px rgba(192,57,43,0.35);
    white-space  : nowrap;
    vertical-align: middle;
}

/* Phone pill — highlighted */
.hero-phone-pill {
    display      : inline-flex;
    align-items  : center;
    gap          : 6px;
    background   : linear-gradient(135deg, #d4af37, #f2d57c);
    color        : #1a1200;
    font-size    : 1rem;
    font-weight  : 700;
    padding      : 8px 18px;
    border-radius: 30px;
    box-shadow   : 0 4px 14px rgba(212,175,55,0.4);
    letter-spacing: 0.3px;
    text-decoration: none;
}

.hero-phone-pill:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 22px rgba(212,175,55,0.5);
}

.hero-book-now-pill {
    display      : inline-flex;
    align-items  : center;
    background   : linear-gradient(135deg, #e74c3c, #c0392b);
    color        : #fff;
    font-size    : 0.95rem;
    font-weight  : 700;
    padding      : 8px 20px;
    border-radius: 30px;
    box-shadow   : 0 4px 14px rgba(192,57,43,0.35);
    text-decoration: none;
    transition   : 0.25s;
}

.hero-book-now-pill:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 22px rgba(192,57,43,0.45);
}

/* Perks list */
.hero-perks {
    display      : flex;
    flex-direction: column;
    gap          : 8px;
    margin       : 0 0 22px;
    background   : rgba(212,175,55,0.06);
    border-left  : 3px solid var(--primary-gold);
    padding      : 14px 16px;
    border-radius: 0 8px 8px 0;
}

.hero-perk-item {
    display    : flex;
    align-items: center;
    gap        : 10px;
    font-size  : 0.92rem;
    color      : #444;
    font-weight: 400;
}

.perk-icon {
    font-size  : 1rem;
    flex-shrink: 0;
    width      : 20px;
    text-align : center;
}

.hero-perk-highlight {
    font-weight  : 600;
    color        : #1a1a1a;
    margin-top   : 4px;
    padding-top  : 8px;
    border-top   : 1px dashed rgba(212,175,55,0.38);
}

/* Hero buttons */
.hero-buttons {
    display    : flex;
    align-items: stretch;
    gap        : 12px;
    margin-bottom: 18px;
    flex-wrap  : wrap;
}

.hero-buttons .btn {
    padding      : 12px 22px;
    font-size    : 14px;
    border-radius: 30px;
    line-height  : 1;
    display      : inline-flex;
    align-items  : center;
}

/* WhatsApp pill inside hero-buttons — exact same height as btn */
.hero-buttons .booking-wa-pill {
    padding      : 12px 18px;
    font-size    : 14px;
    border-radius: 30px;
    line-height  : 1;
}

.hero-trust {
    font-size    : 13px;
    color        : var(--text-light);
    margin-bottom: 10px;
}

.hero-call {
    font-size  : 14px;
    font-weight: 500;
    color      : var(--primary-gold);
}

/* Hero right — carousel */
.hero-right {
    flex    : 1;
    position: relative;
}

.carousel {
    width        : 100%;
    height       : 440px;
    border-radius: 20px;
    overflow     : hidden;
    position     : relative;
    box-shadow   : 0 30px 60px rgba(0,0,0,0.15), 0 10px 20px rgba(212,175,55,0.15);
}

.carousel img {
    position  : absolute;
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    opacity   : 0;
    transition: opacity 0.8s ease;
}

.carousel img.active { opacity: 1; }

.carousel::after {
    content   : "";
    position  : absolute;
    inset     : 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0.05), transparent);
}

.hero-price {
    position      : absolute;
    bottom        : 18px;
    left          : 18px;
    background    : rgba(0,0,0,0.75);
    color         : #fff;
    padding       : 8px 14px;
    border-radius : 8px;
    font-size     : 14px;
    backdrop-filter: blur(6px);
    z-index       : 2;
}


/* ============================================================
   8. SERVICES
   ============================================================ */
.services-title {
    font-size     : 34px;
    font-weight   : 600;
    text-align    : center;
    margin-bottom : 10px;
    letter-spacing: 0.5px;
}

.services-title::after { display: none; }

.section-header { margin-bottom: 10px; }

.section-subtext {
    text-align   : center;
    color        : var(--text-light);
    margin-bottom: 40px;
    font-size    : 15px;
}

.service-cards {
    display              : grid;
    grid-template-columns: repeat(4, 1fr);
    gap                  : 30px;
}

.service-card {
    position     : relative;
    padding      : 35px 25px;
    border-radius: 18px;
    background   : rgba(255,255,255,0.5);
    backdrop-filter: blur(14px);
    border       : 1px solid rgba(255,255,255,0.2);
    transition   : all 0.4s ease;
}

.service-top-line {
    width        : 35px;
    height       : 3px;
    background   : var(--primary-gold);
    margin-bottom: 18px;
    transition   : 0.4s;
}

.service-card h3 {
    font-size    : 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size : 14px;
    color     : var(--text-light);
    line-height: 1.6;
}

.service-card:hover {
    transform : translateY(-10px);
    background: rgba(255,255,255,0.7);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 0 15px rgba(212,175,55,0.15);
}

.service-card:hover .service-top-line { width: 70px; }


/* ============================================================
   9. LOCATIONS
   ============================================================ */
.locations-title {
    font-size    : 34px;
    text-align   : center;
    margin-bottom: 8px;
}

.locations-title::after { display: none; }

.locations-subtext {
    text-align   : center;
    font-size    : 15px;
    color        : var(--text-light);
    margin-bottom: 40px;
}

.location-cards {
    display        : flex;
    justify-content: center;
}

.location-card {
    width        : 220px;
    text-align   : center;
    padding      : 30px 20px;
    border-radius: 18px;
    background   : rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    border       : 1px solid rgba(255,255,255,0.25);
    transition   : 0.4s ease;
}

.location-icon {
    width        : 80px;
    height       : 80px;
    margin       : 0 auto 15px;
    display      : flex;
    align-items  : center;
    justify-content: center;
    border-radius: 50%;
    background   : rgba(255,255,255,0.7);
    box-shadow   : 0 8px 20px rgba(0,0,0,0.08);
}

.location-icon img { width: 40px; }

.location-card h3 {
    font-size  : 18px;
    font-weight: 500;
}

.location-card:hover {
    transform : translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 0 20px rgba(212,175,55,0.2);
}


/* ============================================================
   10. PACKAGES — FLIP CARDS (index hero packages)
   ============================================================ */
.packages-title {
    font-size    : 34px;
    text-align   : center;
    margin-bottom: 40px;
}

.packages-title::after { display: none; }

/* ── POPULAR PACKAGES — Desktop: 3-col grid, Mobile: swipe carousel ── */
.package-cards-carousel {
    position: relative;
    width   : 100%;
    padding : 8px 0 16px;
}

/* DESKTOP: true 3-column grid, full width, no carousel */
.package-cards {
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap                  : 28px;
}

/* Dots + arrows — desktop hidden, shown only on mobile */
.pkg-carousel-dots { display: none; }
.pkg-carousel-btn  { display: none; }

.pkg-dot {
    width        : 8px;
    height       : 8px;
    border-radius: 50%;
    background   : rgba(212,175,55,0.3);
    border       : none;
    cursor       : pointer;
    transition   : 0.3s;
    padding      : 0;
}

.pkg-dot.active {
    background   : var(--primary-gold);
    width        : 24px;
    border-radius: 4px;
}

/* Flip card wrapper */
.package-card {
    flex       : 1;
    height     : 320px;
    perspective: 1400px;
}

.package-inner {
    position       : relative;
    width          : 100%;
    height         : 100%;
    transition     : transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.package-card:hover .package-inner { transform: rotateY(180deg); }
.package-card:hover                 { transform: translateY(-8px); }

.package-front,
.package-back {
    position         : absolute;
    width            : 100%;
    height           : 100%;
    border-radius    : 18px;
    overflow         : hidden;
    backface-visibility: hidden;
    transform-style  : preserve-3d;
}

.package-image {
    position     : relative;
    width        : 100%;
    aspect-ratio : 16 / 10;
    overflow     : hidden;
    border-radius: 12px 12px 0 0;
}

.package-image img {
    width           : 100%;
    height          : 100%;
    object-fit      : cover;
    object-position : top center;
    display         : block;
}

.popular-tag {
    position     : absolute;
    top          : 10px;
    left         : 10px;
    background   : rgba(0,0,0,0.7);
    color        : #fff;
    padding      : 5px 10px;
    font-size    : 12px;
    border-radius: 6px;
}

.price-badge {
    position     : absolute;
    bottom       : 10px;
    right        : 10px;
    background   : #fff;
    padding      : 8px 10px;
    border-radius: 10px;
    box-shadow   : 0 8px 20px rgba(0,0,0,0.15);
    text-align   : right;
}

.price-row { margin: 8px 0; }

.old-price {
    display        : block;
    font-size      : 12px;
    text-decoration: line-through;
    color          : #999;
}

.new-price {
    font-size  : 11px;
    font-weight: 600;
    color      : var(--primary-gold);
}

.package-front h3 {
    padding   : 12px;
    font-size : 16px;
    text-align: center;
}

.package-back {
    background     : rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    transform      : rotateY(180deg);
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    padding        : 20px;
    text-align     : center;
}

.package-back p {
    font-size    : 14px;
    margin-bottom: 10px;
    color        : var(--text-light);
}

.extra-note {
    font-size    : 10px;
    color        : #888;
    margin-bottom: 15px;
}


/* ============================================================
   11. POPULAR PACKAGE CARDS (index.html — no flip)
   ============================================================ */
.pop-pkg-card {
    display        : block;
    width          : 100%;
    border-radius  : 20px;
    overflow       : hidden;
    background     : rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    border         : 1px solid rgba(212,175,55,0.12);
    transition     : transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color          : var(--text-dark);
}

.pop-pkg-card:hover {
    transform  : translateY(-8px);
    box-shadow : 0 22px 50px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(212,175,55,0.25);
    border-color: rgba(212,175,55,0.3);
}

/* is-active used only on mobile carousel */
.pop-pkg-card.is-active { pointer-events: auto; }

.pop-pkg-img {
    position    : relative;
    aspect-ratio: 16 / 9;
    overflow    : hidden;
}

.pop-pkg-img img {
    width          : 100%;
    height         : 100%;
    object-fit     : cover;
    object-position: center center;
    transition     : 0.4s;
}

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

.pop-pkg-tag {
    position     : absolute;
    top          : 12px;
    left         : 12px;
    padding      : 4px 12px;
    border-radius: 20px;
    font-size    : 11px;
    font-weight  : 600;
    background   : rgba(212,175,55,0.9);
    color        : #000;
    backdrop-filter: blur(4px);
}

.pop-pkg-tag.tag-popular { background: var(--primary-gold); color: #fff; }
.pop-pkg-tag.tag-premium { background: linear-gradient(135deg, #b8860b, #d4af37); color: #fff; }

.pop-pkg-price-wrapper {
    position      : absolute;
    bottom        : 12px;
    right         : 12px;
    background    : rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    border-radius : 20px;
    padding       : 5px 12px;
    display       : flex;
    flex-direction: column;
    align-items   : flex-end;
    gap           : 1px;
}

.pop-pkg-price-strike {
    font-size      : 11px;
    color          : #bbb;
    text-decoration: line-through;
    line-height    : 1;
}

.pop-pkg-price {
    font-size  : 14px;
    font-weight: 700;
    color      : #f5e07a;
    line-height: 1;
}

.pop-pkg-body { padding: 18px 20px 20px; }

.pop-pkg-body h3 {
    font-size    : 17px;
    font-weight  : 600;
    margin-bottom: 5px;
    color        : var(--text-dark);
}

.pop-pkg-body > p {
    font-size    : 13px;
    color        : var(--text-light);
    margin-bottom: 12px;
    line-height  : 1.4;
}

.pop-pkg-highlights {
    list-style   : none;
    margin-bottom: 14px;
    display      : flex;
    flex-direction: column;
    gap          : 5px;
}

.pop-pkg-highlights li {
    font-size  : 13px;
    color      : var(--text-dark);
    padding-left: 16px;
    position   : relative;
}

.pop-pkg-highlights li::before {
    content  : "✓";
    position : absolute;
    left     : 0;
    color    : var(--primary-gold);
    font-size: 12px;
    font-weight: 700;
}

.pop-pkg-cta {
    display        : inline-block;
    font-size      : 13px;
    font-weight    : 600;
    color          : var(--primary-gold);
    border-bottom  : 1px solid rgba(212,175,55,0.4);
    padding-bottom : 1px;
    transition     : 0.2s;
}

.pop-pkg-card:hover .pop-pkg-cta {
    border-color  : var(--primary-gold);
    letter-spacing: 0.3px;
}


/* ============================================================
   12. SPIRITUAL JOURNEY
   ============================================================ */
.spiritual-title {
    font-size    : 34px;
    text-align   : center;
}

.spiritual-title::after { display: none; }

.spiritual-subtext {
    text-align   : center;
    color        : var(--text-light);
    margin-bottom: 40px;
}

.spiritual-wrapper {
    height  : 360px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image        : linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.spiritual-track {
    display       : flex;
    flex-direction: column;
    gap           : 20px;
    animation     : scrollUp 40s linear infinite;
}

.spiritual-item {
    display      : flex;
    flex-direction: row;
    align-items  : center;
    gap          : 1px;
    padding      : 15px;
    border-radius: 10px;
    background   : rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
    border       : 1px solid rgba(255,255,255,0.3);
}

.spiritual-image {
    order     : 1;
    flex      : 0 0 auto;
}

.spiritual-image img {
    width        : 300px;
    height       : 200px;
    object-fit   : cover;
    border-radius: 10px;
    box-shadow   : 0 8px 20px rgba(0,0,0,0.1);
}

.spiritual-content {
    order: 2;
    flex : 1;
}

.spiritual-content h3 {
    font-size    : 18px;
    margin-bottom: 6px;
}

.spiritual-content p {
    font-size : 13.5px;
    color     : var(--text-light);
    line-height: 1.5;
    max-width  : 90%;
}

@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}


/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonial-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image        : linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display  : flex;
    gap      : 20px;
    animation: scrollLeft 25s linear infinite;
}

.testimonial-card {
    min-width     : 280px;
    max-width     : 300px;
    padding       : 20px;
    border-radius : 14px;
    background    : rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    border        : 1px solid rgba(255,255,255,0.4);
    transition    : 0.3s;
}

.testimonial-card:hover {
    transform : translateY(-6px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size    : 14px;
    color        : var(--text-dark);
    margin-bottom: 12px;
    line-height  : 1.5;
}

.testimonial-card h4 {
    font-size    : 15px;
    margin-bottom: 3px;
}

.testimonial-card span {
    font-size: 12px;
    color    : var(--primary-gold);
}

@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================================
   14. TRIPS (shared — also used in style.css for index)
   ============================================================ */
.trips-title {
    font-size : 34px;
    text-align: center;
}

.trips-title::after { display: none; }

.trips-subtext {
    text-align   : center;
    color        : var(--text-light);
    margin-bottom: 40px;
}


/* ============================================================
   15. CTA
   ============================================================ */
.cta {
    padding   : 80px 0;
    text-align: center;
}

.cta-box {
    text-align     : center;
    padding        : 50px 30px;
    border-radius  : 20px;
    background     : linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,249,230,0.8));
    backdrop-filter: blur(12px);
    border         : 1.5px solid rgba(212,175,55,0.25);
    box-shadow     : 0 16px 50px rgba(212,175,55,0.12), 0 4px 16px rgba(0,0,0,0.06);
    transition     : 0.3s;
    max-width      : 680px;
    margin         : 0 auto;
}

.cta-box:hover {
    transform : translateY(-4px);
    box-shadow: 0 22px 60px rgba(212,175,55,0.18), 0 6px 20px rgba(0,0,0,0.08);
}

/* Offer badge above heading */
.cta-badge {
    display      : inline-block;
    background   : linear-gradient(135deg, #e74c3c, #c0392b);
    color        : #fff;
    font-size    : 0.82rem;
    font-weight  : 700;
    padding      : 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    box-shadow   : 0 4px 12px rgba(192,57,43,0.3);
    margin-bottom: 14px;
}

.cta-box h2 {
    font-size    : 32px;
    margin-bottom: 10px;
}

.cta-subtext {
    font-size    : 15px;
    color        : var(--text-light);
    margin-bottom: 20px;
    line-height  : 1.6;
    max-width    : 520px;
    margin-left  : auto;
    margin-right : auto;
}

/* Price strip inside CTA */
.cta-price-strip {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 12px;
    margin-bottom  : 24px;
    flex-wrap      : wrap;
}

.cta-old {
    font-size      : 1.1rem;
    text-decoration: line-through;
    color          : #999;
}

.cta-new {
    font-size  : 2rem;
    font-weight: 800;
    color      : var(--primary-gold);
    line-height: 1;
}

.cta-save {
    background   : rgba(212,175,55,0.12);
    color        : #9a7210;
    font-size    : 0.8rem;
    font-weight  : 600;
    padding      : 4px 12px;
    border-radius: 20px;
    border       : 1px solid rgba(212,175,55,0.3);
}

.cta-buttons {
    display        : flex;
    justify-content: center;
    gap            : 15px;
    flex-wrap      : wrap;
    margin-bottom  : 16px;
}

.cta-phone-line {
    font-size: 13px;
    color    : var(--text-light);
    margin-top: 8px;
}

.cta-phone-line a {
    color      : var(--primary-gold);
    font-weight: 600;
}


/* ============================================================
   15b. LOCATION CARD RICH (index.html — Our Service Area)
   ============================================================ */
.location-card-rich {
    max-width      : 480px;
    margin         : 0 auto;
    border-radius  : 22px;
    overflow       : hidden;
    background     : rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    border         : 1.5px solid rgba(212,175,55,0.2);
    box-shadow     : 0 16px 48px rgba(0,0,0,0.08), 0 0 24px rgba(212,175,55,0.1);
    transition     : 0.35s ease;
}

.location-card-rich:hover {
    transform : translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12), 0 0 30px rgba(212,175,55,0.2);
}

.location-card-img-wrap {
    position: relative;
    height  : 220px;
    overflow: hidden;
}

.location-card-img-wrap img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    object-position: top center;
    display   : block;
    transition: 0.4s;
}

.location-card-rich:hover .location-card-img-wrap img { transform: scale(1.04); }

.location-offer-badge {
    position     : absolute;
    top          : 14px;
    right        : 14px;
    background   : linear-gradient(135deg, #e74c3c, #c0392b);
    color        : #fff;
    font-size    : 0.8rem;
    font-weight  : 700;
    padding      : 5px 14px;
    border-radius: 20px;
    box-shadow   : 0 4px 12px rgba(192,57,43,0.4);
    letter-spacing: 0.3px;
}

.location-card-body {
    padding   : 22px 24px 26px;
    text-align: center;
}

.location-card-icon {
    font-size    : 2rem;
    margin-bottom: 6px;
}

.location-card-body h3 {
    font-size    : 24px;
    font-weight  : 700;
    margin-bottom: 4px;
}

.location-card-sub {
    font-size    : 13px;
    color        : var(--primary-gold);
    font-weight  : 600;
    margin-bottom: 10px;
}

.location-card-desc {
    font-size    : 13.5px;
    color        : var(--text-light);
    line-height  : 1.6;
    margin-bottom: 16px;
}

.location-card-price {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 10px;
    margin-bottom  : 18px;
}

.location-old-price {
    font-size      : 1.1rem;
    text-decoration: line-through;
    color          : #aaa;
}

.location-new-price {
    font-size  : 1.8rem;
    font-weight: 800;
    color      : var(--primary-gold);
    line-height: 1;
}

.location-book-btn {
    display      : inline-block;
    padding      : 12px 28px;
    font-size    : 15px;
    font-weight  : 600;
    border-radius: 30px;
    box-shadow   : 0 6px 20px rgba(212,175,55,0.4);
}

.location-book-btn:hover {
    transform : translateY(-3px);
    box-shadow: 0 10px 28px rgba(212,175,55,0.5);
}


/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
    background : #0f0f0f;
    color      : #fff;
    padding-top: 60px;
}

.footer .container {
    display        : flex;
    justify-content: space-between;
    gap            : 20px;
}

.footer-grid {
    display              : grid;
    grid-template-columns: repeat(4, 1fr);
    gap                  : 30px;
}

.footer-col h3 {
    font-size    : 20px;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size    : 16px;
    margin-bottom: 12px;
    color        : var(--primary-gold);
}

.footer-desc {
    font-size  : 13px;
    color      : #bbb;
    line-height: 1.6;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
    margin-bottom: 8px;
    font-size    : 13px;
    color        : #ccc;
}

.footer-col ul li a {
    color     : #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: var(--primary-gold); }

.footer-col p {
    font-size    : 13px;
    color        : #ccc;
    margin-bottom: 6px;
}

.footer a { color: #ccc; }

.footer-bottom {
    text-align  : center;
    padding     : 12px 0 6px;
    margin-top  : 20px;
    border-top  : 1px solid rgba(255,255,255,0.1);
    font-size   : 0.82rem;
    color       : #aaa;
}

.footer-bottom strong { color: var(--primary-gold); }

.footer-domain a { color: var(--primary-gold); text-decoration: none; }
.footer-domain a:hover { text-decoration: underline; }

/* WhatsApp float button */
.whatsapp-float {
    position       : fixed;
    bottom         : 24px;
    right          : 24px;
    width          : 58px;
    height         : 58px;
    border-radius  : 50%;
    overflow       : hidden;
    text-decoration: none;
    box-shadow     : 0 6px 24px rgba(37,211,102,0.5);
    transition     : transform 0.3s, box-shadow 0.3s;
    z-index        : 9999;
    animation      : waPulse 2.5s ease-in-out infinite;
    display        : block;
}

.whatsapp-float img {
    width      : 100%;
    height     : 100%;
    object-fit : cover;
    object-position: center;
    display    : block;
    border-radius: 50%;
}

.whatsapp-float:hover {
    transform : scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,0.65);
    animation : none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 6px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width : 50px;
        height: 50px;
        bottom: 18px;
        right : 16px;
    }
}

/* WhatsApp logo inside outline buttons */
.btn-whatsapp {
    display    : inline-flex;
    align-items: center;
    gap        : 8px;
}

.wa-btn-icon {
    width          : 22px;
    height         : 22px;
    object-fit     : cover;
    object-position: center;
    border-radius  : 50%;
    flex-shrink    : 0;
    display        : block;
}

/* ── Phone + WhatsApp pill row (shared across all pages) ── */
.booking-contact-row {
    display  : flex;
    gap      : 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.booking-phone-pill {
    display      : inline-flex;
    align-items  : center;
    gap          : 6px;
    background   : linear-gradient(135deg, #d4af37, #f2d57c);
    color        : #1a1200;
    font-size    : 0.92rem;
    font-weight  : 700;
    padding      : 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow   : 0 4px 14px rgba(212,175,55,0.4);
    transition   : 0.25s;
}

.booking-phone-pill:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 22px rgba(212,175,55,0.5);
}

.booking-wa-pill {
    display      : inline-flex;
    align-items  : center;
    gap          : 8px;
    background   : #25d366;
    color        : #fff;
    font-size    : 0.92rem;
    font-weight  : 700;
    padding      : 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow   : 0 4px 14px rgba(37,211,102,0.4);
    transition   : 0.25s;
}

.booking-wa-pill:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 22px rgba(37,211,102,0.5);
}

.booking-wa-pill .wa-btn-icon {
    width          : 22px;
    height         : 22px;
    object-fit     : cover;
    object-position: center;
    border-radius  : 50%;
    flex-shrink    : 0;
}

@media (max-width: 768px) {
    .booking-contact-row {
        justify-content: center;
        gap            : 10px;
    }
    .booking-phone-pill,
    .booking-wa-pill {
        font-size: 0.82rem;
        padding  : 9px 14px;
    }
}


/* ============================================================
   17. DESKTOP MEDIA QUERIES (> 768 px, fine-tuning)
   ============================================================ */
@media (min-width: 1024px) {
    .container { padding: 0 40px; }
}


/* ============================================================
   18. MOBILE MEDIA QUERIES (≤ 768 px)
   ============================================================ */
@media (max-width: 768px) {

    /* -- Base typography -- */
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }

    section { padding: 50px 0; }

    .container { padding: 0 16px; }

    /* -- Navbar -- */
    .menu-toggle { display: block; }

    .nav-menu {
        position  : absolute;
        top       : 62px;
        left      : 0;
        right     : 0;
        background: #fff;
        border-bottom: 1px solid rgba(212,175,55,0.12);
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        display   : none;
        z-index   : 999;
    }

    .nav-menu.active { display: block; }

    .nav-menu ul {
        flex-direction: column;
        gap           : 0;
        padding       : 10px 16px 14px;
        align-items   : stretch;
    }

    .nav-menu > ul > li { border-bottom: 1px solid rgba(0,0,0,0.05); }
    .nav-menu > ul > li:last-child { border-bottom: none; }

    .nav-menu > ul > li > a,
    .nav-menu > ul > li > .nav-trigger {
        width        : 100%;
        justify-content: space-between;
        padding      : 13px 8px;
        border-radius: 0;
        font-size    : 15px;
    }

    /* Mobile dropdown — static slide-down */
    .nav-dropdown {
        position  : static;
        opacity   : 1;
        visibility: visible;
        transform : none;
        box-shadow: none;
        border    : none;
        border-radius: 0;
        background: rgba(212,175,55,0.04);
        border-left: 3px solid rgba(212,175,55,0.3);
        margin    : 0 0 8px 8px;
        padding   : 4px 0;
        display   : none;
        transition: none;
    }

    .nav-menu > ul > li.open .nav-dropdown { display: block; }

    .nav-dropdown a {
        padding      : 10px 14px;
        border-radius: 0;
        font-size    : 14px;
    }

    .nav-book-btn {
        display    : block;
        text-align : center;
        margin     : 10px 8px 4px;
        padding    : 12px;
        font-size  : 15px;
    }

    /* -- Hero -- */
    .hero { padding: 20px 0 30px; }

    .hero-container {
        flex-direction: column-reverse;
        align-items   : flex-start;
        text-align    : left;
        gap           : 18px;
    }

    .hero-left,
    .hero-right { width: 100%; }

    .hero-left h1 {
        font-size  : 24px;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .hero-dynamic-title {
        min-height: 1.35em;
        max-width: 100%;
    }

    .hero-left .hero-dynamic-title {
        font-size: 17px;
        line-height: 1.22;
    }

    /* Price rows — stack cleanly on mobile */
    .hero-price-highlight { gap: 8px; margin: 8px 0 14px; }

    .hero-price-row-1 { gap: 8px; }
    .hero-price-row-2 { gap: 8px; }

    .hero-price-amount { font-size: 2rem; }
    .hero-price-from   { font-size: 0.85rem; }
    .hero-discount-badge { font-size: 0.72rem; padding: 3px 8px; }

    .hero-phone-pill   { font-size: 0.85rem; padding: 8px 14px; }
    .hero-book-now-pill { font-size: 0.85rem; padding: 8px 14px; }

    /* Perks */
    .hero-perks {
        padding: 10px 12px;
        margin : 0 0 16px;
    }
    .hero-perk-item { font-size: 0.82rem; }

    /* Buttons row */
    .hero-buttons {
        gap          : 10px;
        margin-bottom: 14px;
    }

    .hero-buttons .btn,
    .hero-buttons .booking-wa-pill {
        padding  : 10px 16px;
        font-size: 13px;
    }

    .hero-trust { font-size: 11px; }

    .hero-price { font-size: 11px; padding: 5px 10px; }

    /* Carousel — keep desktop fade, only resize height */
    .carousel {
        width        : 100%;
        height       : 220px;
        border-radius: 14px;
    }
    /* NEVER override .carousel img on mobile — fade logic must stay intact */

    /* Hero price / perks left-aligned on mobile */
    .hero-price-highlight { justify-content: flex-start; }
    .hero-perks           { text-align: left; }

    /* -- Services -- */
    .services-title { font-size: 26px; }

    .service-cards {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .service-card     { padding: 22px 16px; }
    .service-card h3  { font-size: 16px; }
    .service-card p   { font-size: 13px; }

    /* -- Locations -- */
    .location-card   { width: 45%; padding: 20px; }
    .location-icon   { width: 60px; height: 60px; }
    .location-icon img { width: 30px; }

    /* -- Packages (flip cards) — 2-column grid on mobile -- */
    .package-cards {
        display              : grid;
        grid-template-columns: repeat(2, 1fr);
        gap                  : 14px;
    }

    .package-card {
        border-radius  : 14px;
        overflow       : hidden;
        background     : rgba(255,255,255,0.9);
        backdrop-filter: blur(8px);
        box-shadow     : 0 10px 25px rgba(0,0,0,0.08);
        height         : auto;
    }

    .package-inner { transform: none !important; }

    .package-front,
    .package-back {
        position : relative;
        transform: none;
        height   : auto;
    }

    .package-front img {
        width     : 100%;
        height    : 120px;
        object-fit: cover;
    }

    .package-front h3 {
        font-size   : 14px;
        padding     : 10px 10px 6px;
        text-align  : left;
        line-height : 1.3;
    }

    .price-badge {
        position   : static;
        padding    : 0 10px 8px;
        display    : flex;
        gap        : 8px;
        align-items: center;
        background : transparent;
        box-shadow : none;
    }

    .new-price   { font-size: 13px; font-weight: 600; }
    .old-price   { font-size: 10px; }

    .package-back { padding: 10px; }
    .package-back p { font-size: 11px; margin-bottom: 6px; line-height: 1.4; }
    .package-back ul{ font-size: 11px; padding-left: 16px; margin-bottom: 8px; }
    .package-back .btn { width: 100%; padding: 8px; font-size: 12px; border-radius: 8px; }

    .extra-note { font-size: 10px; margin-bottom: 8px; }

    /* -- Popular package cards (index.html — swipe carousel on mobile) -- */
    .package-cards-carousel {
        overflow: hidden;
        padding : 4px 0 20px;
    }

    .package-cards {
        display        : flex;
        grid-template-columns: none;
        gap            : 16px;
        overflow-x     : auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding        : 4px 20px 8px;
    }

    .package-cards::-webkit-scrollbar { display: none; }

    .pop-pkg-card {
        flex           : 0 0 82vw;
        max-width      : 320px;
        width          : 82vw;
        scroll-snap-align: center;
        border-radius  : 18px;
        opacity        : 1;
        scale          : 1;
        transform      : none;
    }

    .pop-pkg-card:hover { transform: none; }

    /* Dots indicator on mobile */
    .pkg-carousel-dots {
        display        : flex;
        justify-content: center;
        gap            : 8px;
        margin-top     : 14px;
    }

    .pkg-carousel-btn { display: none; }

    .pop-pkg-img     { aspect-ratio: 16 / 9; }
    .pop-pkg-body    { padding: 12px 14px 14px; }
    .pop-pkg-body h3 { font-size: 15px; line-height: 1.3; }
    .pop-pkg-body > p{ font-size: 12px; }
    .pop-pkg-highlights li { font-size: 12px; margin-bottom: 3px; }

    /* -- Spiritual -- */
    .spiritual-wrapper { height: 260px; }

    .spiritual-item {
        gap    : 12px;
        padding: 12px;
    }

    .spiritual-image img {
        width : 160px;
        height: 100px;
    }

    .spiritual-content    { flex: 2; }
    .spiritual-content h3 { font-size: 15px; }
    .spiritual-content p  { font-size: 12px; line-height: 1.4; }

    /* -- Testimonials -- */
    .testimonial-card {
        min-width: 220px;
        padding  : 16px;
    }

    .testimonial-track {
        gap      : 14px;
        animation: scrollLeft 20s linear infinite;
    }

    .testimonial-card p { font-size: 13px; }

    /* -- CTA -- */
    .cta { padding: 50px 0; }

    .cta-box {
        padding      : 28px 18px;
        border-radius: 14px;
        max-width    : 420px;
        margin       : auto;
    }

    .cta-box h2   { font-size: 22px; line-height: 1.3; margin-bottom: 8px; }
    .cta-subtext  { font-size: 13px; line-height: 1.5; margin-bottom: 20px; }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap           : 10px;
    }

    .cta-buttons a {
        width        : auto;
        padding      : 10px 18px;
        font-size    : 13px;
        border-radius: 6px;
    }

    /* -- Footer -- */
    .footer { padding-top: 40px; }

    .footer .container {
        flex-direction: column;
        text-align    : center;
        gap           : 20px;
    }

    .footer-col h3   { font-size: 18px; }
    .footer-col h4   { font-size: 14px; }
    .footer-desc     { font-size: 12px; }
    .footer-col ul li,
    .footer-col p    { font-size: 12px; }

    .footer-bottom   { margin-top: 25px; }

    /* -- Hero price pills on mobile -- */
    .hero-price-amount { font-size: 2rem; }
    .hero-discount-badge { font-size: 0.72rem; padding: 3px 8px; }
    .hero-phone-pill  { font-size: 0.9rem; padding: 8px 14px; }
    .hero-book-now-pill { font-size: 0.85rem; padding: 8px 16px; }

    /* -- Location card rich on mobile -- */
    .location-card-img-wrap { height: 170px; }
    .location-card-body     { padding: 16px 16px 20px; }
    .location-card-body h3  { font-size: 20px; }
    .location-card-desc     { font-size: 12.5px; }
    .location-new-price     { font-size: 1.5rem; }
    .location-book-btn      { padding: 10px 22px; font-size: 14px; }

    /* -- CTA box on mobile -- */
    .cta-box        { padding: 30px 18px; border-radius: 14px; }
    .cta-box h2     { font-size: 22px; line-height: 1.3; }
    .cta-subtext    { font-size: 13px; }
    .cta-new        { font-size: 1.6rem; }
    .cta-buttons    { flex-direction: row; justify-content: center; gap: 10px; }
    .cta-buttons a  { padding: 10px 16px; font-size: 13px; }
    .cta-phone-line { font-size: 12px; }
}

.packages .container {
    max-width: 1340px;
}

.package-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.pop-pkg-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 22px;
    box-shadow: 0 14px 42px rgba(31,26,12,0.08);
}

.pop-pkg-img {
    aspect-ratio: 16 / 10;
}

.pop-pkg-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 22px 22px;
}

.pop-pkg-body h3 {
    font-size: 18px;
    line-height: 1.32;
}

.pop-pkg-highlights {
    flex: 1;
}

.pop-pkg-cta {
    width: fit-content;
    margin-top: auto;
}

@media (min-width: 1200px) {
    .packages .container {
        padding-left: 42px;
        padding-right: 42px;
    }
}

@media (max-width: 768px) {
    .package-cards-carousel {
        margin-left: -16px;
        margin-right: -16px;
        overflow: hidden;
    }

    .package-cards {
        gap: 14px;
        padding: 4px 16px 8px;
        scroll-padding-inline: 16px;
    }

    .pop-pkg-card {
        flex: 0 0 calc(100vw - 52px);
        width: calc(100vw - 52px);
        max-width: 360px;
        border-radius: 20px;
    }

    .pop-pkg-img {
        aspect-ratio: 16 / 10;
    }

    .pop-pkg-body {
        padding: 14px 15px 16px;
    }
}
