/* === Panama Trip 2026 — Styles === */
:root {
    --jungle: #1a4d2e;
    --jungle-light: #2d6a4f;
    --ocean: #0077b6;
    --ocean-deep: #023e8a;
    --sand: #fdf6ec;
    --sand-dark: #f5e6cc;
    --coral: #e76f51;
    --coral-light: #f4a261;
    --gold: #e9c46a;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f9fafb;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--dark); line-height: 1.65; background: var(--white); }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: var(--jungle); text-decoration: none; }
a:hover { color: var(--jungle-light); }
ul { list-style: none; }

/* === Sections === */
.section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 2.6rem; text-align: center; margin-bottom: 12px; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 48px; font-size: 1.05rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-sub.left { text-align: left; margin-left: 0; }

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,77,46,0.7) 0%, rgba(0,119,182,0.5) 50%, rgba(231,111,81,0.3) 100%);
}
.hero-content { position: relative; text-align: center; color: white; padding: 24px; }
.hero-tag { font-size: 1rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; opacity: 0.9; }
.hero h1 { font-size: 6rem; font-weight: 700; margin-bottom: 16px; text-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.4rem; font-weight: 300; margin-bottom: 40px; opacity: 0.9; letter-spacing: 1px; }
.hero-btn {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.hero-btn:hover { background: rgba(255,255,255,0.25); color: white; transform: translateY(-2px); }

/* === Nav === */
.sticky-nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; }
.nav-links { display: flex; gap: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--gray); white-space: nowrap; transition: var(--transition); }
.nav-links a:hover { color: var(--jungle); }

/* === Timeline === */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--jungle), var(--coral)); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-marker {
    position: absolute;
    left: -40px;
    top: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--jungle);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--jungle);
    z-index: 2;
}
.tl-marker.accent { background: var(--coral); box-shadow: 0 0 0 2px var(--coral); }
.tl-date { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 8px; }
.tl-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.tl-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.tl-card.featured { border-left: 4px solid var(--coral); background: linear-gradient(135deg, #fff 0%, #fff9f5 100%); }
.tl-badge {
    display: inline-block;
    background: var(--jungle);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tl-badge.hot { background: var(--coral); }
.tl-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tl-card > p { color: var(--gray); font-size: 0.95rem; }
.tl-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tl-highlights span {
    background: var(--sand);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--jungle);
}

/* === Image Sections (Flight, Drive) === */
.img-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.img-content { position: relative; color: white; max-width: 800px; margin: 0 auto; text-align: center; padding: 40px 24px; }
.img-content h2 { font-size: 2.4rem; margin-bottom: 12px; }
.img-content > p { opacity: 0.85; margin-bottom: 32px; font-size: 1.05rem; }

/* United Airlines Branding */
.united-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.united-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #002244 0%, #003366 40%, #004488 70%, #002244 100%);
}
.united-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(0,100,200,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(0,50,100,0.1) 0%, transparent 50%);
}
.united-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
.united-plane {
    margin-bottom: 16px;
    position: relative;
}
.plane-icon {
    filter: drop-shadow(0 2px 12px rgba(255,255,255,0.3));
    animation: planeFloat 3s ease-in-out infinite;
}
@keyframes planeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.united-tagline {
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-top: 6px;
}
.united-section .img-content { position: relative; z-index: 1; }
.united-section h2 { font-size: 2.4rem; margin-bottom: 8px; }

/* Flight */
.flight-conf { font-size: 1.1rem; margin-bottom: 36px; opacity: 0.9; }
.flight-legs { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.leg { background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 20px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); }
.leg-airports { display: flex; align-items: center; justify-content: center; gap: 16px; }
.leg-ap { text-align: center; }
.ap-code { display: block; font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.ap-time { display: block; font-size: 0.95rem; font-weight: 500; opacity: 0.9; }
.ap-city { display: block; font-size: 0.8rem; opacity: 0.7; }
.leg-arrow { flex: 1; text-align: center; min-width: 60px; }
.leg-flight { font-size: 0.75rem; opacity: 0.7; display: block; margin-bottom: 6px; }
.arrow-line { height: 2px; background: linear-gradient(90deg, var(--gold), var(--coral)); border-radius: 2px; }
.flight-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.meta-item { background: rgba(255,255,255,0.06); padding: 12px 16px; border-radius: var(--radius-sm); }
.meta-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; margin-bottom: 2px; }
.meta-val { font-size: 0.9rem; }

/* Drive */
.drive-nums { display: flex; justify-content: center; gap: 48px; margin-bottom: 40px; flex-wrap: wrap; }
.drive-num { text-align: center; }
.dn-big { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; }
.dn-label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.drive-route-visual { max-width: 400px; margin: 0 auto 32px; text-align: left; }
.drv-stop { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; padding: 4px 0; }
.drv-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid white; flex-shrink: 0; }
.drv-dot.mid { background: var(--coral-light); }
.drv-dot.end { background: var(--coral); }
.drv-line { width: 2px; height: 24px; background: rgba(255,255,255,0.3); margin-left: 6px; }
.drive-tip-bar {
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.85rem;
    opacity: 0.85;
    display: inline-block;
    backdrop-filter: blur(4px);
}

/* === Split Section (Casco Viejo) === */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.split-img { border-radius: var(--radius); background-size: cover; background-position: center; min-height: 500px; }
.split-content { display: flex; flex-direction: column; justify-content: center; }
.stay-card { background: var(--sand); border-radius: var(--radius); padding: 24px; margin-top: 24px; }
.stay-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.stay-card > p { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }
.stay-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.btn-sm {
    display: inline-block;
    background: var(--jungle);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}
.btn-sm:hover { background: var(--jungle-light); color: white; transform: translateY(-1px); }
.btn-sm.outline { background: transparent; color: var(--jungle); border: 1.5px solid var(--jungle); }
.btn-sm.outline:hover { background: var(--jungle); color: white; }
.alt-stay { font-size: 0.82rem; color: var(--gray); padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.08); }

/* Evening Plan */
.evening-plan { margin-top: 48px; }
.evening-plan h3 { text-align: center; font-size: 1.6rem; margin-bottom: 32px; }
.eve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.eve-card {
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);


}
.eve-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.eve-time { font-size: 0.75rem; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; }
.eve-card h4 { font-size: 1rem; margin: 6px 0 4px; }
.eve-card p { font-size: 0.85rem; color: var(--gray); }

/* === Playa Venao === */
.venao-hero {
    position: relative;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
}
.venao-hero-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.7) 100%); }
.venao-hero-text { position: relative; padding: 32px; color: white; }
.venao-hero-text h3 { font-size: 1.8rem; margin-bottom: 8px; }
.venao-hero-text p { font-size: 0.95rem; opacity: 0.9; max-width: 600px; }

.venao-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vf {
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition);


}
.vf:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.vf-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.vf h4 { font-size: 1rem; margin-bottom: 6px; }
.vf p { font-size: 0.85rem; color: var(--gray); }

/* === Airbnb === */
.airbnb-card {


    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.abnb-img { background-size: cover; background-position: center; min-height: 350px; }
.abnb-info { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.abnb-info h3 { font-size: 1.5rem; margin: 12px 0; }
.abnb-loc { color: var(--jungle); font-weight: 500; margin-bottom: 16px; }
.abnb-features { margin-bottom: 24px; }
.abnb-features li { padding: 6px 0; font-size: 0.95rem; color: var(--gray); }
.btn {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    align-self: flex-start;
}
.btn:hover { background: #d35d43; color: white; transform: translateY(-1px); }

/* === Activity Blocks === */
.activity-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 48px;
    align-items: start;
}
.activity-block.reverse { grid-template-columns: 1.3fr 1fr; }
.activity-block.reverse .activity-img { order: 2; }
.activity-block.reverse .activity-info { order: 1; }
.activity-img {
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    min-height: 360px;
    box-shadow: var(--shadow);
}
.activity-info h3 { font-size: 1.6rem; margin: 8px 0 12px; }
.activity-info > p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }
.activity-options { display: flex; flex-direction: column; gap: 12px; }
.act-option {
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.act-option h4 { font-size: 1rem; margin-bottom: 6px; }
.act-option p { font-size: 0.88rem; color: var(--gray); margin-bottom: 8px; }
.act-price { font-weight: 600; color: var(--jungle) !important; }
.act-pricing {
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-row:last-child { border-bottom: none; }
.price-row.total { border-top: 2px solid var(--jungle); margin-top: 4px; padding-top: 10px; font-size: 0.95rem; }
.price-row.total strong { color: var(--coral); }
.act-note { font-size: 0.85rem; color: var(--gray); margin-bottom: 12px; }
.act-features { margin-bottom: 12px; }
.act-features li { padding: 4px 0; font-size: 0.9rem; color: var(--gray); list-style: none; }
.act-features li::before { content: '→ '; color: var(--coral); font-weight: bold; }
.act-review { font-size: 0.9rem; margin-bottom: 12px; color: var(--gray); }

/* More Activities Mini Grid */
.more-activities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.mini-act {
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}
.mini-act:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mini-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.mini-act h4 { font-size: 1rem; margin-bottom: 6px; }
.mini-act p { font-size: 0.85rem; color: var(--gray); }

/* === Restaurant Grid === */
.resto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.resto-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: var(--transition);
}
.resto-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.resto-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.resto-type { font-size: 0.78rem; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.resto-card > p { font-size: 0.88rem; color: var(--gray); margin-bottom: 8px; }
.resto-card a { font-size: 0.85rem; font-weight: 500; }

/* === Map === */
#trip-map { width: 100%; height: 450px; border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 1; }

/* === Rental === */
.card-grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.rent-card {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);


}
.rent-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rent-card h4 { font-size: 1.3rem; margin: 8px 0; }
.rent-price { font-size: 1.2rem; font-weight: 600; color: var(--jungle); margin-bottom: 12px; }
.rent-card li { padding: 3px 0; font-size: 0.88rem; color: var(--gray); }
.rent-card ul { margin-bottom: 16px; }
.warning-box {
    background: #fff8f0;
    border: 1px solid #f0d4a8;
    border-radius: var(--radius-sm);
    padding: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* === Tips === */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tip {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: var(--transition);


}
.tip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.tip-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.tip h4 { margin-bottom: 6px; }
.tip p { font-size: 0.88rem; color: var(--gray); }

/* === Packing === */
.packing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.pack-category h4 { font-size: 1.05rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--jungle); }
.pack-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; user-select: none; transition: var(--transition); }
.pack-item:hover { opacity: 0.7; }
.pack-check {
    width: 22px; height: 22px;
    border-radius: 6px;
    border: 2px solid #d1d5db;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.pack-item.checked .pack-check { background: var(--jungle); border-color: var(--jungle); }
.pack-item.checked .pack-check::after { content: '✓'; color: white; font-size: 14px; font-weight: bold; }
.pack-item.checked .pack-label { text-decoration: line-through; color: #aaa; }
.pack-label { font-size: 0.92rem; }

/* === Google Maps Section === */
.maps-group { margin-bottom: 32px; }
.maps-cat {
    font-size: 1.2rem;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--jungle);
    display: inline-block;
}
.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.map-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
    border: 1px solid transparent;
}
.map-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--jungle);
    color: var(--dark);
}
.map-card-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.map-card-info p { font-size: 0.8rem; color: var(--gray); }
.map-card-meta { text-align: right; flex-shrink: 0; margin-left: 12px; }
.map-rating { display: block; font-size: 0.9rem; font-weight: 600; color: var(--jungle); }
.map-reviews { display: block; font-size: 0.72rem; color: var(--gray); }
.maps-tip {
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 24px;
}

/* === Drive Split === */
.drive-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.drive-info { }
.drive-nums-v { display: flex; gap: 24px; margin-bottom: 32px; }
.drive-num-v { text-align: center; flex: 1; background: var(--sand); border-radius: var(--radius-sm); padding: 16px; }
.dn-big-v { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--jungle); }
.dn-label-v { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.drive-route-v { margin-bottom: 24px; }
.drv-stop-v { display: flex; align-items: flex-start; gap: 14px; padding: 6px 0; }
.drv-dot-v { width: 14px; height: 14px; border-radius: 50%; background: var(--jungle); border: 3px solid var(--sand); box-shadow: 0 0 0 2px var(--jungle); flex-shrink: 0; margin-top: 4px; }
.drv-dot-v.mid { background: var(--coral-light); box-shadow: 0 0 0 2px var(--coral-light); }
.drv-dot-v.end { background: var(--coral); box-shadow: 0 0 0 2px var(--coral); }
.drv-line-v { width: 2px; height: 20px; background: linear-gradient(var(--jungle), var(--coral)); margin-left: 6px; }
.drv-sub { font-size: 0.85rem; color: var(--gray); }
.drive-tips-box { background: var(--sand); border-radius: var(--radius-sm); padding: 20px; }
.drive-tips-box h4 { margin-bottom: 10px; }
.drive-tips-box li { padding: 4px 0; font-size: 0.9rem; color: var(--gray); }
.drive-map-embed { border-radius: var(--radius); overflow: hidden; min-height: 500px; box-shadow: var(--shadow-lg); position: relative; }
.drive-map-embed iframe { display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; }

/* Confirmed badge */
.tl-badge.confirmed { background: #16a34a; }

/* Read-only packing */
.pack-list { list-style: none; }
.pack-list li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding-left: 8px;
}
.pack-list li::before {
    content: '•';
    color: var(--coral);
    font-weight: bold;
    margin-right: 10px;
}

/* === Photo Dividers === */
.photo-divider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 200px;
    overflow: hidden;
}
.pd-img {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.pd-img:hover { transform: scale(1.05); }

/* === Quote Divider === */
.quote-divider {
    background: var(--jungle);
    color: white;
    text-align: center;
    padding: 64px 24px;
}
.quote-divider blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.4;
}
.quote-divider cite {
    font-size: 0.95rem;
    opacity: 0.7;
    font-style: normal;
}

/* === Bookings & Confirmations === */
.bookings-section { background: var(--sand); }

.bookings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.booking-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* Colored left-border accent per booking type */
.booking-flight { border-left: 5px solid #002244; }
.booking-hotel  { border-left: 5px solid var(--jungle); }
.booking-car    { border-left: 5px solid var(--coral); }
.booking-airbnb { border-left: 5px solid #ff5a5f; }

.booking-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.booking-icon { font-size: 1.8rem; flex-shrink: 0; }
.booking-header-info { flex: 1; min-width: 0; }
.booking-type {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.booking-conf {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--jungle);
    letter-spacing: 2px;
    font-family: 'Inter', monospace;
    margin-top: 2px;
}
.booking-flight .booking-conf { color: #002244; }
.booking-car    .booking-conf { color: var(--coral); }
.booking-airbnb .booking-conf { color: #ff5a5f; font-size: 0.85rem; letter-spacing: 0; font-weight: 500; }

.booking-status {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.booking-status.confirmed { background: #dcfce7; color: #16a34a; }

.booking-body { padding: 20px 24px 24px; }

/* Flight legs inside booking card */
.booking-flights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.bk-leg {
    background: #f0f4ff;
    border-radius: var(--radius-sm);
    padding: 12px 16px 8px;
}
.bk-airports {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}
.bk-ap { text-align: center; }
.bk-code { display: block; font-size: 1.4rem; font-weight: 700; font-family: 'Playfair Display', serif; color: #002244; line-height: 1; }
.bk-time { display: block; font-size: 0.8rem; font-weight: 500; color: var(--gray); }
.bk-arrow { flex: 1; text-align: center; }
.bk-fn { font-size: 0.72rem; color: var(--gray); display: block; margin-bottom: 4px; }
.bk-line { height: 2px; background: linear-gradient(90deg, #002244, var(--coral)); border-radius: 2px; }
.bk-date { font-size: 0.78rem; color: var(--gray); }

/* Check-in / out row */
.bk-checkinout {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin-bottom: 16px;
}
.bk-io { text-align: center; flex: 1; }
.bk-io-label { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 2px; }
.bk-io-date { display: block; font-size: 1.1rem; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--dark); }
.bk-io-time { display: block; font-size: 0.82rem; color: var(--gray); }
.bk-io-arrow { font-size: 1.4rem; color: var(--gray); flex-shrink: 0; }

/* Detail rows */
.booking-details { display: flex; flex-direction: column; gap: 0; }
.bk-detail-row {
    display: flex;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.88rem;
    align-items: baseline;
}
.bk-detail-row:last-child { border-bottom: none; }
.bk-label {
    flex-shrink: 0;
    width: 90px;
    font-weight: 600;
    color: var(--gray);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bk-val { color: var(--dark); line-height: 1.4; }
.bk-val a { color: var(--jungle); text-decoration: underline; }
.bk-detail-row.bk-total { background: var(--sand); border-radius: 8px; padding: 10px 12px; margin-top: 6px; }
.bk-detail-row.bk-total .bk-label { color: var(--dark); }
.bk-detail-row.bk-total .bk-val strong { font-size: 1.05rem; color: var(--jungle); }

/* Airbnb card description */
.bk-description { font-size: 0.9rem; color: var(--gray); margin-bottom: 14px; line-height: 1.5; }

/* Button inside booking card */
.bk-btn { margin-top: 16px; display: inline-block; }

/* Google Drive banner */
.bookings-drive-link {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}
.bookings-drive-link:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.drive-link-icon { font-size: 2.2rem; flex-shrink: 0; }
.drive-link-info { flex: 1; }
.drive-link-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.drive-link-info p { font-size: 0.88rem; color: var(--gray); }

/* Bookings responsive */
@media (max-width: 900px) {
    .bookings-grid { grid-template-columns: 1fr; }
    .booking-type { white-space: normal; }
}
@media (max-width: 600px) {
    .booking-header { flex-wrap: wrap; gap: 10px; }
    .booking-status { margin-left: auto; }
    .bk-label { width: 72px; }
    .bookings-drive-link { flex-wrap: wrap; gap: 14px; }
    .bk-checkinout { gap: 8px; padding: 12px 14px; }
}

/* === Footer === */
footer { text-align: center; padding: 48px 24px; background: var(--jungle); color: rgba(255,255,255,0.75); font-size: 0.9rem; }
footer p { margin-bottom: 4px; }

/* === Animations — all content visible by default === */

/* === Mobile === */
@media (max-width: 900px) {
    .split-section { grid-template-columns: 1fr; }
    .split-img { min-height: 300px; }
    .eve-grid { grid-template-columns: 1fr 1fr; }
    .venao-facts { grid-template-columns: 1fr 1fr; }
    .act-grid { grid-template-columns: 1fr 1fr; }
    .card-grid.three { grid-template-columns: 1fr; }
    .flight-meta { grid-template-columns: 1fr; }
    .airbnb-card { grid-template-columns: 1fr; }
    .drive-split { grid-template-columns: 1fr; }
    .drive-map-embed { min-height: 350px; }
    .abnb-img { min-height: 250px; }
    .activity-block, .activity-block.reverse { grid-template-columns: 1fr; }
    .activity-block.reverse .activity-img { order: 0; }
    .activity-block.reverse .activity-info { order: 0; }
    .activity-img { min-height: 250px; }
    .more-activities { grid-template-columns: 1fr 1fr; }
    .resto-grid { grid-template-columns: 1fr 1fr; }
    .tips-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero { background-attachment: scroll; }
    .img-section { background-attachment: scroll; }
    .section, .section-full { padding: 64px 16px; }
    .section-title { font-size: 2rem; }
    .nav-logo { display: none; }
    .nav-links { gap: 14px; }
    .timeline { padding-left: 32px; }
    .timeline::before { left: 7px; }
    .tl-marker { left: -32px; width: 18px; height: 18px; }
    .eve-grid { grid-template-columns: 1fr; }
    .venao-facts { grid-template-columns: 1fr; }
    .act-grid { grid-template-columns: 1fr; }
    .more-activities { grid-template-columns: 1fr; }
    .resto-grid { grid-template-columns: 1fr; }
    .leg-airports { flex-wrap: wrap; }
    .drive-nums { gap: 24px; }
    .dn-big { font-size: 2.2rem; }
    .tips-grid { grid-template-columns: 1fr; }
    #trip-map { height: 300px; }
    .photo-divider { grid-template-columns: 1fr 1fr; height: 150px; }
    .quote-divider blockquote { font-size: 1.3rem; }
}
