@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   Udaipur Tour Package – Main Stylesheet
   Brand: #0F3D2E | #C8A24C | #F7F9F8
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:        #0F3D2E;
    --green2:       #0a2e21;
    --gold:         #C8A24C;
    --gold2:        #b08c39;
    --bg:           #F7F9F8;
    --white:        #FFFFFF;
    --dark:         #111111;
    --muted:        #6B7280;
    --card-shadow:  0 4px 24px rgba(15,61,46,.08);
    --card-shadow-hover: 0 12px 40px rgba(15,61,46,.16);
    --radius-card:  24px;
    --radius-btn:   12px;
    --nav-height:   72px;
    --max-width:    1200px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-btn);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,61,46,.25); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 9px 22px; font-size: 0.82rem; border-radius: 50px; background: #111 !important; color: #fff !important; border-color: #111 !important; }
.btn-sm:hover { background: #333 !important; border-color: #333 !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.btn-sm.btn-wa { border-color: transparent !important; }
.btn-pill { border-radius: 50px; }
button.btn { border-style: solid; }

/* Hero-specific buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all .25s ease;
    line-height: 1;
}
.btn-hero-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,162,76,.35); }

.btn-hero-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    background: #fff;
    color: var(--dark);
    border: 2px solid #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all .25s ease;
    line-height: 1;
}
.btn-hero-white:hover { background: rgba(255,255,255,.88); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,255,255,.2); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15,61,46,.08);
    transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(15,61,46,.12); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 16px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-img {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: rgba(15,61,46,.07);
}
.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    margin-left: 6px;
}
.nav-cta:hover { background: var(--green2) !important; transform: translateY(-1px); }

/* Mobile right group (hidden on desktop) */
.nav-mobile-right { display: none; align-items: center; gap: 10px; }

/* Mobile Book Now (next to hamburger) */
.nav-mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background .2s;
    text-decoration: none;
    line-height: 1;
}
.nav-mobile-book:hover { background: var(--green2); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .2s;
    flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(15,61,46,.07); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WhatsApp floating */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: transform .3s, background .3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); background: #128C7E; }

/* ============================================================
   HERO
============================================================ */
.hero {
    background: var(--green);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 100px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200,162,76,.15);
    border: 1px solid rgba(200,162,76,.4);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.text-gold { color: var(--gold); }
.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,.78);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 4px;
}
.stat-item { display: flex; flex-direction: column; align-items: flex-start; }
.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
    transition: color .2s;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 400; letter-spacing: 0.2px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; pointer-events: none; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* Mobile image grid — hidden on desktop, shown on mobile */
.hero-mobile-imgs { display: none; }

/* Floating cards (desktop) */
.hero-visual { position: relative; height: 520px; }
.floating-cards { position: relative; width: 100%; height: 100%; }
.float-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.float-card img { width: 100%; height: 100%; object-fit: cover; }
.float-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}
.float-card--main  { width: 300px; height: 380px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-2deg); animation: floatMain 6s ease-in-out infinite; }
.float-card--top   { width: 200px; height: 160px; top: 20px; right: 0; animation: floatTop 5s ease-in-out infinite; }
.float-card--bottom{ width: 190px; height: 150px; bottom: 20px; left: 20px; animation: floatBottom 7s ease-in-out infinite; }
.float-badge {
    position: absolute;
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.78rem; font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    animation: pulse 3s ease-in-out infinite;
}
.float-badge--rating  { background: #fff; color: var(--dark); bottom: 120px; right: 20px; }
.float-badge--verified{ background: var(--gold); color: #fff; top: 160px; left: 10px; }

@keyframes floatMain   { 0%,100%{transform:translate(-50%,-50%) rotate(-2deg) translateY(0)}   50%{transform:translate(-50%,-50%) rotate(-2deg) translateY(-12px)} }
@keyframes floatTop    { 0%,100%{transform:translateY(0) rotate(3deg)}  50%{transform:translateY(-8px) rotate(3deg)} }
@keyframes floatBottom { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(8px) rotate(-4deg)} }
@keyframes pulse       { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.hero-content { animation: fadeInUp .8s ease both; }
.hero-visual  { animation: fadeInUp 1s ease .2s both; }

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 96px 0; }
.bg-soft { background: var(--bg); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.section-sub { font-size: 0.98rem; color: var(--muted); line-height: 1.8; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   ICONIC PLACES
============================================================ */
.iconic-places { background: #fff; }
.iconic-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.iconic-item { text-align: center; width: 160px; }
.iconic-circle {
    width: 160px; height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
}
.iconic-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.iconic-item:hover .iconic-circle { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.iconic-item:hover .iconic-circle img { transform: scale(1.08); }
.iconic-item h3 { font-size: 0.95rem; font-weight: 600; color: var(--dark); }

/* ============================================================
   PACKAGE CARDS — Tall photo card with frosted glass panel
============================================================ */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card wrapper */
.pcard {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    height: 480px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
    transition: transform .4s cubic-bezier(.22,.84,.44,1), box-shadow .4s;
}
.pcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(0,0,0,.32);
}

/* Full-bleed photo */
.pcard__photo {
    position: absolute;
    inset: 0;
}
.pcard__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.22,.84,.44,1);
}
.pcard:hover .pcard__photo img { transform: scale(1.08); }

/* Gradient scrim — pure black, no green tint */
.pcard__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.06) 40%,
        rgba(0,0,0,.28) 65%,
        rgba(0,0,0,.55) 100%
    );
}

/* Top row: bold index number + tag — REMOVED */
.pcard__top  { display: none; }
.pcard__index{ display: none; }
.pcard__tag  { display: none; }

/* Bottom white pill panel */
.pcard__info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    padding: 16px 16px 16px 18px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pcard:hover .pcard__info {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,.22);
}

/* Duration */
.pcard__dur {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Title */
.pcard__title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    letter-spacing: -0.2px;
    margin: 0;
}

/* Description */
.pcard__desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* Footer: price left + button right */
.pcard__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(15,61,46,.07);
    margin-top: 2px;
}
.pcard__price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.pcard__from {
    font-size: 0.65rem;
    color: var(--muted);
}
.pcard__amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -0.4px;
}
.pcard__per {
    font-size: 0.65rem;
    color: var(--muted);
}

/* View Details black pill button */
.pcard__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #111;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .25s, transform .25s;
}
.pcard:hover .pcard__btn {
    background: var(--green);
    transform: translateX(2px);
}

/* ── Keep old pkg-card for packages.php listing page ── */
.pkg-card {
    background: var(--white); border-radius: var(--radius-card); overflow: hidden;
    box-shadow: var(--card-shadow); transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.pkg-card-img { position: relative; height: 220px; overflow: hidden; flex-shrink: 0; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg-card:hover .pkg-card-img img { transform: scale(1.07); }
.pkg-card-badge { position: absolute; top: 14px; left: 14px; background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; }
.pkg-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pkg-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.pkg-card-body p { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; line-height: 1.7; flex: 1; }
.pkg-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pkg-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.7rem; color: var(--muted); }
.price-num { font-size: 1.25rem; font-weight: 700; color: var(--green); }
.price-per { font-size: 0.7rem; color: var(--muted); }
.pkg-inclusions-mini { font-size: 0.78rem; color: var(--green); display: flex; align-items: center; gap: 5px; margin-bottom: 14px; }

/* ============================================================
   GRIDS
============================================================ */
.cards-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid--4  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ============================================================
   VEHICLE CARDS
============================================================ */
.vehicle-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }

.vehicle-card-img {
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}
.vehicle-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }

.vehicle-card-body { padding: 20px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.vehicle-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.vehicle-meta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.vehicle-meta span {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.78rem; color: var(--muted);
    background: var(--bg); padding: 4px 10px; border-radius: 50px;
}
.vehicle-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(15,61,46,.07); }
.vehicle-price { display: flex; align-items: baseline; gap: 3px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.why-icon {
    width: 60px; height: 60px;
    background: rgba(15,61,46,.08);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--green);
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.88rem; color: var(--muted); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--green); color: #fff;
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-box {
    background: var(--green);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.cta-content { padding: 60px 52px; }
.cta-content .section-tag { margin-bottom: 12px; }
.cta-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-content p { color: rgba(255,255,255,.75); margin-bottom: 32px; font-size: 0.98rem; line-height: 1.8; }
.cta-visual { position: relative; overflow: hidden; min-height: 320px; }
.cta-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero { background: var(--green); padding: 130px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
    content:''; position:absolute; inset:0; pointer-events:none;
    background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; color: #fff; margin-top: 10px; }
.page-hero-content p { color: rgba(255,255,255,.75); margin-top: 10px; font-size: 1rem; }
.page-hero--short { padding: 110px 0 40px; }

/* ============================================================
   FILTERS
============================================================ */
.filters-bar { background: var(--white); border-radius: 16px; padding: 22px 24px; box-shadow: var(--card-shadow); margin-bottom: 40px; }
.filters-form { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 150px; flex: 1; }
.filter-group label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select,
.filter-group input {
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--dark);
    background: var(--bg);
    outline: none;
    transition: border-color .2s;
    width: 100%;
}
.filter-group select:focus,
.filter-group input:focus { border-color: var(--green); }

/* ============================================================
   VEHICLE DETAIL CARDS (vehicles page)
============================================================ */
.vehicles-list { display: flex; flex-direction: column; gap: 28px; }
.vehicle-detail-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: 380px 1fr;
    transition: box-shadow .3s;
}
.vehicle-detail-card:hover { box-shadow: var(--card-shadow-hover); }
.vehicle-detail-img { overflow: hidden; }
.vehicle-detail-img img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; transition: transform .5s; }
.vehicle-detail-card:hover .vehicle-detail-img img { transform: scale(1.04); }
.vehicle-detail-info { padding: 32px; }
.vehicle-detail-info h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.vehicle-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.feature-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(15,61,46,.06); color: var(--green);
    font-size: 0.76rem; font-weight: 600;
    padding: 6px 12px; border-radius: 50px;
}
.vehicle-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.vehicle-price-big .price-num { font-size: 1.6rem; font-weight: 700; color: var(--green); }
.vehicle-price-big .price-per { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
/* ============================================================
   PACKAGE DETAIL — Modern Editorial Design
============================================================ */

/* ── Hero Banner ── */
.pd-banner {
    position: relative;
    height: 70vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    margin-bottom: -80px;
}
.pd-banner__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.05) 0%,
        rgba(0,0,0,.1)  30%,
        rgba(0,0,0,.55) 65%,
        rgba(0,0,0,.82) 100%
    );
}
.pd-banner__inner {
    position: relative; z-index: 2;
    padding-bottom: 100px;
    width: 100%;
}
.pd-back {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.75); font-size: 0.8rem; font-weight: 500;
    text-decoration: none; margin-bottom: 28px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    padding: 7px 14px; border-radius: 50px;
    transition: all .25s;
}
.pd-back:hover { background: rgba(255,255,255,.22); color: #fff; }
.pd-banner__content { max-width: 760px; }
.pd-banner__dur-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold); color: #fff;
    font-size: 0.7rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.7px;
    margin-bottom: 16px;
}
.pd-banner__title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 20px; letter-spacing: -1px;
}
.pd-banner__chips {
    display: flex; flex-wrap: wrap; gap: 10px;
}
.pd-banner__chips span {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    font-size: 0.76rem; font-weight: 500;
    padding: 7px 14px; border-radius: 50px;
}

/* ── Page body ── */
.pd-body {
    background: #F4F6F5;
    padding: 0 0 80px;
}

/* ── Floating stats bar (above content) ── */
.pd-stats-bar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 24px 32px;
    margin-bottom: 36px;
    position: relative;
    z-index: 10;
}
.pd-stat {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    text-align: center;
}
.pd-stat__val {
    font-size: 1.1rem; font-weight: 800; color: var(--dark);
    letter-spacing: -0.3px;
}
.pd-stat__label {
    font-size: 0.68rem; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pd-stat-sep {
    width: 1px; height: 36px;
    background: rgba(0,0,0,.08);
}

/* ── Two-col grid ── */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* ── Content blocks ── */
.pd-main { display: flex; flex-direction: column; gap: 20px; }

.pd-block {
    background: #fff;
    border-radius: 24px;
    padding: 36px 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.pd-block__title {
    font-size: 1.15rem; font-weight: 800;
    color: var(--dark);
    margin-bottom: 22px;
    display: flex; align-items: center; gap: 12px;
    letter-spacing: -0.3px;
}
.pd-block__title-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(15,61,46,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--green); flex-shrink: 0;
}

.pd-overview {
    font-size: 0.95rem; line-height: 1.95;
    color: #4B5563;
}

/* ── Itinerary ── */
.pd-itinerary { display: flex; flex-direction: column; }

.pd-day {
    display: flex; gap: 20px;
    padding-bottom: 28px;
    position: relative;
}
.pd-day:last-child { padding-bottom: 0; }

.pd-day__left {
    display: flex; flex-direction: column; align-items: center;
    flex-shrink: 0;
}
.pd-day__num {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.72rem;
    letter-spacing: 0.3px; flex-shrink: 0;
}
.pd-day__connector {
    width: 2px; flex: 1;
    background: linear-gradient(to bottom, rgba(15,61,46,.2), rgba(15,61,46,.04));
    border-radius: 2px;
    margin-top: 6px;
}
.pd-day:last-child .pd-day__connector { display: none; }

.pd-day__body {
    background: #F9FAF9;
    border: 1px solid rgba(15,61,46,.07);
    border-radius: 16px;
    padding: 18px 20px;
    flex: 1;
    transition: border-color .2s, box-shadow .2s;
}
.pd-day__body:hover {
    border-color: rgba(15,61,46,.18);
    box-shadow: 0 4px 16px rgba(15,61,46,.06);
}
.pd-day__body h3 {
    font-size: 0.92rem; font-weight: 700;
    color: var(--dark); margin-bottom: 6px;
}
.pd-day__body p {
    font-size: 0.83rem; color: var(--muted); line-height: 1.75;
}

/* ── Inclusions / Exclusions ── */
.pd-ie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.pd-ie-card { border-radius: 18px; padding: 24px 26px; }
.pd-ie-card--inc {
    background: linear-gradient(135deg, rgba(15,61,46,.04) 0%, rgba(15,61,46,.02) 100%);
    border: 1.5px solid rgba(15,61,46,.1);
}
.pd-ie-card--exc {
    background: linear-gradient(135deg, rgba(239,68,68,.04) 0%, rgba(239,68,68,.01) 100%);
    border: 1.5px solid rgba(239,68,68,.1);
}
.pd-ie-card__head {
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 0.88rem;
    color: var(--dark); margin-bottom: 18px;
}
.pd-ie-icon {
    width: 30px; height: 30px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pd-ie-icon--inc { background: var(--green); color: #fff; }
.pd-ie-icon--exc { background: #ef4444; color: #fff; }
.pd-ie-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pd-ie-card ul li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.82rem; color: var(--muted); line-height: 1.5;
}
.pd-ie-card ul li svg { flex-shrink: 0; margin-top: 2px; }

/* ── Sidebar ── */
.pd-sidebar { position: sticky; top: 96px; }

.pd-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(15,61,46,.1);
    overflow: hidden;
}

/* Price header */
.pd-card__price-block {
    background: linear-gradient(135deg, var(--green) 0%, #0a2d21 100%);
    padding: 28px 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pd-card__price-block::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.pd-card__price-block::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    background: rgba(200,162,76,.15);
    border-radius: 50%;
}
.pd-card__from {
    font-size: 0.68rem; color: rgba(255,255,255,.5);
    text-transform: uppercase; letter-spacing: 0.8px;
    display: block; margin-bottom: 6px;
}
.pd-card__amount {
    font-size: 2.6rem; font-weight: 800;
    color: #fff; line-height: 1;
    letter-spacing: -1.5px;
    position: relative; z-index: 1;
}
.pd-card__per {
    font-size: 0.72rem; color: rgba(255,255,255,.45);
    margin-top: 6px; display: block;
    position: relative; z-index: 1;
}

/* Inner padding wrapper */
.pd-card__inner { padding: 24px 24px 20px; }

/* WhatsApp button */
.pd-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #22c55e; color: #fff;
    font-size: 0.92rem; font-weight: 700;
    padding: 15px 20px; border-radius: 14px;
    text-decoration: none;
    transition: background .25s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(34,197,94,.3);
    margin-bottom: 16px;
}
.pd-wa-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34,197,94,.35);
}

/* WhatsApp btn on vehicle cards */
.btn-wa {
    background: #22c55e !important; color: #fff !important;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 2px 8px rgba(34,197,94,.25);
    border: none !important;
}
.btn-wa:hover { background: #16a34a !important; }

/* Divider */
.pd-divider {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.72rem; color: var(--muted);
    margin-bottom: 16px;
}
.pd-divider::before, .pd-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(0,0,0,.08);
}

/* Alerts */
.pd-alert {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 500;
    padding: 10px 14px; border-radius: 10px;
    margin-bottom: 12px;
}
.pd-alert--ok  { background: #dcfce7; color: #166534; }
.pd-alert--err { background: #fee2e2; color: #991b1b; }

/* Inquiry form */
.pd-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.pd-form input,
.pd-form textarea {
    width: 100%; padding: 12px 14px;
    border-radius: 12px; border: 1.5px solid #E5E7EB;
    background: #F9FAFB;
    font-family: inherit; font-size: 0.84rem;
    outline: none; transition: border-color .2s, background .2s;
    color: var(--dark);
}
.pd-form input::placeholder,
.pd-form textarea::placeholder { color: #9CA3AF; }
.pd-form input:focus,
.pd-form textarea:focus { border-color: var(--green); background: #fff; }
.pd-form textarea { resize: vertical; }
.pd-form__submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--dark); color: #fff;
    font-size: 0.86rem; font-weight: 700;
    padding: 13px; border-radius: 12px;
    border: none; cursor: pointer;
    transition: background .25s, transform .2s;
    font-family: inherit;
}
.pd-form__submit:hover { background: var(--green); transform: translateY(-1px); }

/* Trust strip */
.pd-trust {
    display: flex; flex-direction: column; gap: 9px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.pd-trust__item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.76rem; color: var(--muted);
    font-weight: 500;
}

/* Legacy compat */
.btn-full { width: 100%; justify-content: center; padding: 16px; }


/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 56px; }
.footer-logo { font-size: 1.2rem; font-weight: 700; color: #fff; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    transition: all .2s;
}
.footer-socials a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-list li svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer-contact-list li span { font-size: 0.83rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.3); text-align: center; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
    .hero-inner { gap: 36px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .pkg-grid { grid-template-columns: repeat(2, 1fr); }
    .pcard { height: 400px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cta-box { grid-template-columns: 1fr; }
    .cta-visual { min-height: 260px; }
    .vehicle-detail-card { grid-template-columns: 1fr; }
    .pd-grid { grid-template-columns: 1fr; }
    .pd-sidebar { position: static; }
    .pd-ie-grid { grid-template-columns: 1fr; }
    .pd-stats-bar { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .pd-stat-sep { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
    :root { --nav-height: 68px; }

    .container { padding: 0 16px; }
    .section { padding: 60px 0; }

    /* Navbar mobile */
    .nav-inner { height: var(--nav-height); }
    .nav-mobile-right { display: flex; }
    .nav-toggle { display: flex; }

    /* Desktop Book Now hidden on mobile (shown beside hamburger instead) */
    .nav-cta-item { display: none; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 12px 40px rgba(0,0,0,.12);
        border-top: 1px solid rgba(15,61,46,.08);
        z-index: 999;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }
    .nav-links.open { display: flex; }

    /* Remove all hover/active bg effects on mobile items */
    .nav-sep a {
        display: block;
        padding: 17px 24px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark);
        background: none !important;
        border-radius: 0 !important;
        transition: color .15s;
    }
    .nav-sep a:hover  { color: var(--green); background: none !important; }
    .nav-sep a.active { color: var(--green); font-weight: 600; background: none !important; }

    /* Separator lines between items */
    .nav-sep { border-bottom: 1px solid rgba(15,61,46,.08); }
    .nav-sep--last { border-bottom: none; }

    /* Logo sizes on mobile */
    .logo-img { height: 46px; max-width: 160px; }
    .logo-text { font-size: 1.1rem; }

    /* Hero */
    .hero { min-height: 100svh; padding-top: var(--nav-height); }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 0 60px;
        gap: 0;
        min-height: calc(100svh - var(--nav-height));
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-visual { display: none; }
    .hero-badge { font-size: 0.72rem; padding: 6px 16px; margin-bottom: 18px; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 16px; letter-spacing: -0.5px; }
    .hero-sub { margin: 0 auto 26px; font-size: 1rem; max-width: 100%; line-height: 1.7; }

    .hero-actions {
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        margin-bottom: 26px;
    }
    .btn-hero-primary,
    .btn-hero-white {
        padding: 14px 26px;
        font-size: 0.92rem;
        flex: 0 1 auto;
    }

    /* Mobile image grid */
    .hero-mobile-imgs {
        display: flex;
        gap: 10px;
        margin: 0 0 28px 0;
        width: 100%;
        height: 230px;
        padding: 0 16px;
        overflow: visible;
    }
    .hero-mob-img--tall {
        flex: 1.1;
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .hero-mob-img--tall img { width: 100%; height: 100%; object-fit: cover; }
    .hero-mob-col { flex: 1; display: flex; flex-direction: column; gap: 10px; }
    .hero-mob-img {
        flex: 1;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .hero-mob-img img { width: 100%; height: 100%; object-fit: cover; }
    .hero-mob-label {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 7px 10px;
        background: linear-gradient(transparent, rgba(0,0,0,.65));
        color: #fff; font-size: 0.7rem; font-weight: 600;
        border-radius: 0 0 16px 16px;
    }

    /* Stats — bigger on mobile */
    .hero-stats { justify-content: center; gap: 20px; margin-top: 4px; }
    .stat-item { align-items: center; }
    .stat-num { font-size: 1.9rem; font-weight: 800; }
    .stat-label { font-size: 0.78rem; text-align: center; }
    .stat-divider { height: 48px; }

    /* Sections */
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

    /* View All / section CTA — auto width, not full width */
    .section-cta .btn-pill { width: auto; display: inline-flex; padding: 14px 36px; }

    /* Iconic places */
    .iconic-grid { gap: 20px; }
    .iconic-item { width: 130px; }
    .iconic-circle { width: 130px; height: 130px; }
    .iconic-item h3 { font-size: 0.88rem; }

    /* Cards */
    .cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .cards-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pkg-grid { grid-template-columns: 1fr; gap: 16px; }
    .pcard { height: 360px; border-radius: 22px; }
    .pcard__index { font-size: 2.2rem; }
    .pcard__title { font-size: 1rem; }
    .pcard__price strong { font-size: 1.25rem; }
    .pkg-card-img { height: 200px; }

    /* Why grid */
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card { padding: 24px 18px; }
    .why-icon { width: 52px; height: 52px; }
    .why-card h3 { font-size: 0.92rem; }
    .why-card p { font-size: 0.8rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

    /* CTA */
    .cta-content { padding: 36px 24px; }
    .cta-content h2 { font-size: 1.6rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
    .footer { padding: 48px 0 0; }

    /* Detail pages */
    .detail-grid-row { grid-template-columns: 1fr; }
    .pd-body { padding: 0 0 48px; }
    .pd-banner { height: 52vh; min-height: 300px; }
    .pd-banner__title { font-size: 1.7rem; }
    .pd-banner__inner { padding-bottom: 90px; }
    .pd-block { padding: 22px 20px; }
    .pd-ie-grid { grid-template-columns: 1fr; }
    .pd-stats-bar { padding: 18px 16px; gap: 12px; border-radius: 16px; }
    .pd-card__inner { padding: 18px 18px 16px; }
    .pd-card__price-block { padding: 22px 18px 18px; }
    .banner-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }

    /* Vehicle detail */
    .vehicle-detail-card { grid-template-columns: 1fr; }
    .vehicle-detail-info { padding: 24px 20px; }

    /* Filters */
    .filters-form { flex-direction: column; }
    .filter-group { min-width: 100%; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    /* Navbar */
    .logo-img { height: 40px; max-width: 140px; }
    .logo-text { font-size: 1rem; }
    .nav-mobile-book { font-size: 0.75rem; padding: 8px 13px; }

    /* Hero */
    .hero-inner { padding: 28px 0 48px; }
    .hero-title { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }
    .hero-sub { font-size: 0.95rem; }
    .btn-hero-primary,
    .btn-hero-white { padding: 13px 22px; font-size: 0.86rem; }
    .hero-mobile-imgs { height: 190px; }
    .hero-stats { gap: 14px; }
    .stat-num { font-size: 1.45rem; }
    .stat-label { font-size: 0.7rem; }

    /* Cards grid → 1 col */
    .cards-grid--4 { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    /* Iconic places smaller */
    .iconic-item { width: 110px; }
    .iconic-circle { width: 110px; height: 110px; }

    /* Package/vehicle cards */
    .pkg-card-img { height: 180px; }
    .vehicle-card-img { height: 160px; }

    /* Buttons — View All stays auto-width */
    .btn-lg { padding: 13px 22px; font-size: 0.86rem; }
    .section-cta .btn-pill { width: auto; padding: 13px 32px; font-size: 0.88rem; }

    /* Inquiry form */
    .inquiry-form-card-new { padding: 24px 18px; }
    .sidebar-price-row .price-val { font-size: 1.9rem; }
}

/* ============================================================
   UTILITY
============================================================ */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.mt-0 { margin-top: 0 !important; }

/* Alert styles */
.alert-success { background:#d1fae5; color:#065f46; padding:13px 16px; border-radius:12px; margin-bottom:16px; font-size:0.88rem; font-weight:500; border-left:4px solid #10b981; }
.alert-error   { background:#fee2e2; color:#991b1b; padding:13px 16px; border-radius:12px; margin-bottom:16px; font-size:0.88rem; font-weight:500; border-left:4px solid #ef4444; }