/*
Theme Name: Rupalaya Tours
Theme URI: https://rupalayatours.in
Description: Custom theme for Rupalaya Tours - Southeast Asia travel agency
Author: Rupalaya Tours
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: rupalaya
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange: #ff9875;
    --purple: #b452ff;
    --dark: #020817;
    --dark-2: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gold: #facc15;
    --gradient: linear-gradient(135deg, var(--orange), var(--purple));
    --gradient-h: linear-gradient(to right, var(--orange), var(--purple));
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}
.btn-primary {
    background: var(--gradient-h);
    color: var(--white);
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-white {
    background: var(--white);
    color: var(--gray-900);
}
.btn-white:hover { background: var(--gray-100); }

/* ========== TOP BAR ========== */
.top-bar {
    background: transparent;
    color: var(--white);
    font-size: 0.8rem;
    font-size: 0.78rem;
    padding: 5px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.top-bar a:hover { color: var(--white); }
.top-bar-left { display: flex; gap: 12px; align-items: center; }
.top-bar-left .separator { opacity: 0.5; }

/* ========== HEADER / NAV ========== */
.site-header {
    background: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.site-header.scrolled {
    position: fixed;
    background: var(--gradient-h);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
/* Inner pages: solid header, no top bar */
body:not(.home) .site-header {
    position: sticky;
    top: 0;
    background: var(--gradient-h);
}
body:not(.home) .top-bar {
    display: none;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.3rem; font-weight: 700; font-family: 'Outfit', sans-serif; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.logo-icon {
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; color: var(--white);
}
.logo span { color: var(--orange); }
.logo-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--orange);
    text-shadow: none;
}
/* White tagline on gradient header (inner pages + scrolled home) */
body:not(.home) .logo-tagline,
.site-header.scrolled .logo-tagline {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    position: relative;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    padding: 6px 0;
    transition: font-weight 0.2s;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: left 0.3s ease, right 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.main-nav a:hover::after,
.main-nav a.active::after {
    left: 0;
    right: 0;
}
.main-nav a.active {
    font-weight: 700;
}
.nav-cta .btn { padding: 10px 22px; font-size: 0.9rem; }
.nav-cta .btn::after { display: none; }
.nav-cta a.active { font-weight: 600; }

/* Mobile menu */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { width: 25px; height: 2px; background: var(--white); transition: 0.3s; }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(0,0,0,0.85);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.active { display: flex; }
    .top-bar-left { flex-wrap: wrap; gap: 8px; font-size: 0.75rem; }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,5,40,0.92) 0%, rgba(75,20,120,0.75) 25%, rgba(49,46,129,0.6) 60%, rgba(0,0,0,0.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px 20px; }
.hero h1 { font-size: 4rem; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.02em; }
.hero p { font-size: 1.3rem; opacity: 0.85; margin-bottom: 35px; font-weight: 400; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-buttons .btn { border-radius: 50px; padding: 14px 32px; font-size: 1.05rem; }

.hero-fullscreen {
    min-height: 100vh;
    height: 100vh;
}

@media (max-width: 768px) {
    .hero { min-height: 400px; }
    .hero-fullscreen { min-height: 100vh; }
    .hero h1 { font-size: 2rem; }
}

/* ========== PAGE HERO (smaller, for inner pages) ========== */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2,8,23,0.6), rgba(2,8,23,0.8));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ========== SECTION COMMON ========== */
.section { padding: 80px 0; }
.section-light { background: var(--white); }
.section-gray { background: var(--gray-100); }
.section-dark { background: var(--dark); color: var(--white); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 12px; }
.section-title p { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-dark .section-title p { color: rgba(255,255,255,0.7); }

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.destination-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform 0.3s;
}
.destination-card:hover { transform: translateY(-5px); }
.destination-card img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.destination-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
}
.destination-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.destination-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.5; }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a0533 50%, var(--dark) 100%);
    color: var(--white);
    padding: 80px 0;
}
.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; }
.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 25px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; }
.testimonial-author-info h4 { font-size: 1rem; }
.testimonial-author-info span { font-size: 0.85rem; opacity: 0.7; }

/* ========== GALLERY GRID ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}
.gallery-item .gallery-caption .gallery-region {
    font-size: 0.75rem;
    background: var(--orange);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
}
.gallery-item .gallery-caption h4 { font-size: 0.95rem; }
.gallery-item .gallery-caption p { font-size: 0.8rem; opacity: 0.8; }

/* ========== CTA BANNER ========== */
.cta-banner {
    background: var(--gradient);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    margin: 0 20px;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { margin-bottom: 25px; opacity: 0.9; }
.cta-banner .btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ========== PACKAGES ========== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.filter-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 5px;
    text-transform: uppercase;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    color: var(--gray-600);
}
.filter-pill:hover, .filter-pill.active {
    background: var(--gradient-h);
    color: var(--white);
    border-color: transparent;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}
.package-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.package-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.package-card-image img { width: 100%; height: 100%; object-fit: cover; }
.package-card-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--gradient-h);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.package-card-body { padding: 25px; }
.package-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.package-card-body .package-desc { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 15px; }
.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}
.package-duration {
    color: var(--gray-500);
    font-size: 0.85rem;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--orange);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    white-space: nowrap;
    flex: 0 0 auto;
}
.package-price .price-prefix {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
    white-space: nowrap;
}
.package-highlights h4 { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 8px; }
.package-highlights ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 20px; }
.package-highlights li { font-size: 0.85rem; color: var(--gray-600); padding-left: 18px; position: relative; }
.package-highlights li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.package-card-buttons { display: flex; gap: 10px; }
.package-card-buttons .btn { flex: 1; padding: 10px; font-size: 0.85rem; text-align: center; }
.btn-outline-dark { border: 2px solid var(--gray-200); color: var(--gray-600); background: transparent; border-radius: 8px; }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 768px) {
    .packages-grid { grid-template-columns: 1fr; }
}

/* ========== LAUNCHING SOON SECTION ========== */
.coming-soon-section {
    background: linear-gradient(180deg, #fff 0%, #fdf6f1 100%);
}
.cs-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gradient-h);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(180,82,255,0.25);
}
.cs-section-eyebrow .cs-dot { background: var(--white); opacity: 0.9; }
.cs-section-eyebrow .cs-dot:nth-child(2) { background: rgba(255,255,255,0.7); }
.cs-section-eyebrow .cs-dot:nth-child(3) { background: rgba(255,255,255,0.5); }
.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* ========== COMING SOON — destination-card variant (homepage tiles) ========== */
.destination-card.coming-soon-card { cursor: pointer; }
.destination-card.coming-soon-card img {
    filter: saturate(0.85) brightness(0.92);
    transition: filter 0.4s, transform 0.5s;
}
.destination-card.coming-soon-card:hover img,
.destination-card.coming-soon-card:focus-visible img { filter: saturate(1.1) brightness(1); transform: scale(1.05); }
.destination-card.coming-soon-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
.dest-coming-pill {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    overflow: hidden;
}
.dest-coming-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: cs-shimmer 2.6s ease-in-out infinite;
}
.dest-peek-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.04em;
}

/* ========== COMING SOON CARDS ========== */
.coming-soon-card { cursor: pointer; position: relative; }
.coming-soon-card .package-card-image img {
    filter: saturate(0.85) brightness(0.92);
    transition: filter 0.4s, transform 0.5s;
}
.coming-soon-card:hover .package-card-image img,
.coming-soon-card:focus-visible .package-card-image img {
    filter: saturate(1.1) brightness(1);
    transform: scale(1.04);
}
.coming-soon-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,8,23,0) 0%, rgba(2,8,23,0.45) 65%, rgba(2,8,23,0.78) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
}
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 8px 28px rgba(180,82,255,0.25);
    position: relative;
    overflow: hidden;
}
.coming-soon-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: cs-shimmer 2.6s ease-in-out infinite;
}
@keyframes cs-shimmer {
    0%   { transform: translateX(-120%); }
    60%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}
.cs-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    animation: cs-pulse 1.4s ease-in-out infinite;
}
.cs-dot:nth-child(2) { background: #fff; animation-delay: 0.2s; }
.cs-dot:nth-child(3) { background: var(--purple); animation-delay: 0.4s; }
@keyframes cs-pulse {
    0%, 100% { transform: scale(0.7); opacity: 0.55; }
    50%      { transform: scale(1.2); opacity: 1; }
}
.coming-soon-hint {
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.coming-soon-card .peek-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
}

/* Coming Soon Modal */
.cs-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cs-modal.active { display: flex; animation: cs-fade-in 0.25s ease-out; }
@keyframes cs-fade-in { from { opacity: 0; } to { opacity: 1; } }
.cs-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(2,8,23,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.cs-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    max-height: 92vh;
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    animation: cs-slide-up 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes cs-slide-up {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.cs-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    width: 38px; height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--gray-900);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.cs-modal-close:hover { background: var(--white); transform: rotate(90deg); }
.cs-modal-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.cs-modal-image {
    width: 100%; height: 100%;
    object-fit: cover;
}
.cs-modal-image-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(2,8,23,0.1) 0%, rgba(2,8,23,0.55) 100%);
}
.cs-modal-floating-badge {
    position: absolute;
    bottom: 18px; left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.cs-modal-body {
    padding: 30px 34px 34px;
    overflow-y: auto;
}
.cs-modal-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.cs-modal-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
    line-height: 1.2;
}
.cs-modal-intro {
    color: var(--gray-600);
    font-size: 0.98rem;
    margin-bottom: 22px;
}
.cs-modal-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-500);
    margin-bottom: 14px;
}
.cs-modal-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 26px;
}
.cs-modal-highlights li {
    position: relative;
    padding: 8px 0 8px 26px;
    color: var(--gray-800);
    font-size: 0.95rem;
    line-height: 1.5;
}
.cs-modal-highlights li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 0 4px rgba(255,152,117,0.18);
}
.cs-modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cs-modal-actions .btn { flex: 1; min-width: 200px; text-align: center; }

@media (max-width: 600px) {
    .cs-modal-dialog { border-radius: 18px; }
    .cs-modal-image-wrap { height: 180px; }
    .cs-modal-body { padding: 22px 22px 26px; }
    .cs-modal-title { font-size: 1.4rem; }
    .cs-modal-highlights { grid-template-columns: 1fr; }
}

body.cs-modal-open { overflow: hidden; }

/* ========== BOOKING MODAL (Packages → Book Now) ========== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal.active { display: flex; animation: cs-fade-in 0.25s ease-out; }
.booking-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(2,8,23,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.booking-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 580px;
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    padding: 36px 36px 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    animation: cs-slide-up 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.booking-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 38px; height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700, #374151);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}
.booking-modal-close:hover {
    background: var(--gradient-h);
    color: #fff;
    transform: rotate(90deg);
}
.booking-modal-header { margin-bottom: 22px; }
.booking-modal-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.booking-modal-header h2 {
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.booking-modal-package {
    color: var(--gray-600);
    font-size: 0.92rem;
}
.booking-modal-package strong {
    color: var(--gray-900);
    background: linear-gradient(135deg, rgba(255,152,117,0.18), rgba(180,82,255,0.18));
    padding: 2px 10px;
    border-radius: 6px;
}
.booking-form .form-group { margin-bottom: 16px; }
.booking-form-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.booking-form-row > .form-group { margin-bottom: 16px; }
.booking-form-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.5;
}
.booking-modal-success {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(180,82,255,0.06));
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 22px;
    text-align: center;
}
.booking-success-tick {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 1.6rem;
    line-height: 48px;
    margin: 0 auto 10px;
    box-shadow: 0 10px 26px rgba(16,185,129,0.35);
}
.booking-modal-success h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.booking-modal-success p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .booking-modal-dialog { padding: 28px 22px 24px; border-radius: 18px; }
    .booking-modal-header h2 { font-size: 1.4rem; }
    .booking-form-row { gap: 10px; }
}

body.booking-modal-open { overflow: hidden; }

/* ========== ABOUT PAGE ========== */
.mission-section { text-align: center; max-width: 800px; margin: 0 auto; }
.mission-section p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }

/* Eyebrow label (small uppercase tag above headings) */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

/* Philosophy / Intro section */
.philosophy-section { max-width: 820px; margin: 0 auto; text-align: center; }
.philosophy-section h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-h);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.philosophy-section p { color: var(--gray-600); font-size: 1.1rem; line-height: 1.8; }

/* Three Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: 1fr; }
}
.pillar-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pillar-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: var(--gradient);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.pillar-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.pillar-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .founder-section { grid-template-columns: 1fr; gap: 40px; }
}

/* LEFT: photo collage + personal note */
.founder-left { position: relative; }
.founder-photos {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 14px;
    margin-bottom: 30px;
}
.founder-photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transition: transform 0.4s;
}
.founder-photo:hover { transform: translateY(-4px); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-1 { grid-row: span 2; }
.founder-photo-2 { }
.founder-photo-3 { }

.founder-note {
    background: linear-gradient(135deg, rgba(255,152,117,0.08), rgba(180,82,255,0.08));
    border-left: 4px solid var(--orange);
    padding: 22px 26px;
    border-radius: 12px;
}
.founder-note p {
    font-style: italic;
    color: var(--gray-800);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.founder-note p[lang="or"],
.founder-note[lang="or"] p {
    font-style: normal;
    font-size: 1.05rem;
    line-height: 2;
    font-weight: 500;
}
.founder-signature {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.05rem;
    margin-top: 6px;
}
.founder-role {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--orange);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* RIGHT: bio */
.founder-right h2 {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 18px;
}
.founder-right p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.founder-facts {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.founder-facts li {
    background: var(--gray-100);
    padding: 18px 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}
.founder-facts li strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 4px;
}
@media (max-width: 480px) {
    .founder-facts { grid-template-columns: 1fr; }
    .philosophy-section h2 { font-size: 1.8rem; }
    .founder-right h2 { font-size: 1.6rem; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-icon {
    width: 55px; height: 55px;
    background: rgba(255,152,117,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--gray-500); font-size: 0.9rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.value-item { padding: 25px; }
.value-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--orange); }
.value-item p { color: var(--gray-500); font-size: 0.9rem; }

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-form { background: var(--white); padding: 15px; border-radius: 16px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-submit .btn { width: 100%; padding: 14px; font-size: 1rem; }

.contact-info-card {
    background: var(--gradient);
    color: var(--white);
    padding: 35px;
    border-radius: 16px;
}
.contact-info-card h3 { font-size: 1.4rem; margin-bottom: 25px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-info-item .icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 5px; }
.contact-info-item p { font-size: 0.9rem; opacity: 0.9; line-height: 1.6; }
.contact-info-item a { color: var(--white); text-decoration: underline; }

.contact-map {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ========== GALLERY PAGE ========== */
.gallery-albums {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.album-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s;
}
.album-card:hover { transform: translateY(-3px); }
.album-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.album-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.album-card p { color: var(--gray-500); font-size: 0.85rem; line-height: 1.5; }

/* ========== LATEST TRIPS (home page) ========== */
.latest-trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .latest-trips-grid { grid-template-columns: 1fr; } }

.latest-trip-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.latest-trip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.13);
}
.latest-trip-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.latest-trip-cover {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.latest-trip-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.latest-trip-card:hover .latest-trip-cover img { transform: scale(1.07); }

.latest-trip-month {
    position: absolute;
    top: 14px; left: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.latest-trip-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 4px;
    background: #fff;
}
.latest-trip-thumb {
    display: block;
    height: 64px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.latest-trip-body { padding: 20px 22px 24px; }
.latest-trip-dest {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}
.latest-trip-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--gray-900);
}
.latest-trip-body p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.latest-trip-meta {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}
.latest-trip-cta { color: var(--orange); }

/* ========== GALLERY — JOURNEY TIMELINE ========== */
.gallery-hero { padding: 120px 0 90px; }
.gallery-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.35);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}
.gallery-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.gallery-hero p { max-width: 680px; }

.gallery-stats-strip {
    background: var(--gradient);
    color: #fff;
    padding: 30px 0;
}
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
@media (max-width: 700px) { .gallery-stats { grid-template-columns: repeat(2, 1fr); } }
.gallery-stats > div { display: flex; flex-direction: column; gap: 4px; }
.gallery-stats strong {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.gallery-stats span {
    font-size: 0.85rem;
    opacity: 0.92;
    letter-spacing: 0.06em;
}

.gallery-tabs {
    margin-bottom: 50px;
}
.gallery-tabs .dest-tab {
    padding: 10px 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gallery-tabs .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255,152,117,0.18);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.25s, color 0.25s;
}
.gallery-tabs .dest-tab.active .tab-count,
.gallery-tabs .dest-tab:hover .tab-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.trip-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.trip-card {
    display: grid;
    grid-template-columns: 90px 380px 1fr;
    gap: 24px;
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: pointer;
    position: relative;
}
.trip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}
.trip-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 900px) {
    .trip-card { grid-template-columns: 1fr; gap: 18px; padding: 16px; }
}

.trip-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,152,117,0.1), rgba(180,82,255,0.1));
    border-radius: 16px;
    padding: 14px 10px;
}
.trip-month {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--orange);
    line-height: 1;
}
.trip-year {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

.trip-card-cover {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
}
.trip-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.trip-card:hover .trip-card-cover img { transform: scale(1.05); }
.trip-card-dest-pill {
    position: absolute;
    top: 14px; left: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--gradient-h);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(180,82,255,0.3);
}

.trip-card-body {
    padding: 6px 12px 6px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trip-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    line-height: 1.25;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.trip-card-body p {
    color: var(--gray-600);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 16px;
}
.trip-card-thumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}
.trip-thumb {
    width: 60px; height: 60px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.trip-thumb-more {
    background: linear-gradient(135deg, rgba(255,152,117,0.18), rgba(180,82,255,0.18));
    color: var(--orange);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trip-card-cta {
    align-self: flex-start;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--orange);
    font-size: 0.92rem;
    transition: gap 0.25s;
}
.trip-card:hover .trip-card-cta { color: var(--purple); }

.gallery-empty {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.05rem;
    padding: 60px 20px;
}

/* Gallery Lightbox */
.gallery-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; }
.gallery-lightbox.active { display: flex; align-items: center; justify-content: center; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.lightbox-content { position: relative; z-index: 1; width: 90%; max-width: 800px; text-align: center; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox-close:hover { color: var(--orange); }
.lightbox-title { color: #fff; font-size: 1.4rem; margin-bottom: 15px; }
.lightbox-slider { display: flex; align-items: center; gap: 15px; }
.lightbox-arrow { background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 1.5rem; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; flex-shrink: 0; transition: background 0.2s; }
.lightbox-arrow:hover { background: var(--gradient-h); }
.lightbox-image-wrap { flex: 1; position: relative; }
.lightbox-image { width: 100%; max-height: 70vh; object-fit: contain; border-radius: 12px; }
.lightbox-caption { display: block; color: #fff; font-size: 1rem; font-weight: 600; margin-top: 10px; }
.lightbox-counter { display: block; color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 5px; }
@media (max-width: 600px) {
    .lightbox-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
    .lightbox-content { width: 95%; }
}

/* ========== DESTINATIONS PAGE ========== */
.dest-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.dest-tab {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    background: var(--white);
}
.dest-tab:hover, .dest-tab.active {
    background: var(--gradient-h);
    color: var(--white);
    border-color: transparent;
}
.dest-content { max-width: 800px; margin: 0 auto; }
.dest-content h3 { font-size: 1.4rem; margin-bottom: 15px; }
.dest-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.dest-highlights { margin-bottom: 25px; }
.dest-highlights h4 { font-size: 1rem; margin-bottom: 10px; color: var(--gray-900); }
.dest-highlights li { padding: 6px 0 6px 22px; position: relative; color: var(--gray-600); }
.dest-highlights li::before { content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
.dest-info-box {
    background: var(--gray-100);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.dest-info-box h4 { font-size: 0.95rem; margin-bottom: 5px; }
.dest-info-box p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }
.dest-tips li { padding: 6px 0; color: var(--gray-600); }
.dest-tips li::before { content: ''; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    position: relative;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item p, .footer-contact-item a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ========== BLOG PAGE ========== */
.blog-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
.blog-filters .filter-pill {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700, #374151);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.25s;
    text-decoration: none;
}
.blog-filters .filter-pill:hover,
.blog-filters .filter-pill.active {
    background: var(--gradient-h);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,152,117,0.3);
}
.blog-empty { text-align: center; padding: 80px 20px; color: var(--gray-500); }
.blog-empty p { font-size: 1.1rem; margin-bottom: 8px; }

/* Archive intro paragraph (under hero title) */
.blog-archive-intro {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin-top: 8px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* Magazine-style blog cards (used on /blog/, /category/*, /tag/*, etc.) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    transition: transform 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.12);
}
.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    display: block;
}
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-cat {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--gradient-h);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(180,82,255,0.3);
}
.blog-card-body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.blog-card-meta .blog-card-dot { opacity: 0.5; }
.blog-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}
.blog-card-body h3 a { color: inherit; transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--orange); }
.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.blog-card-readmore {
    align-self: flex-start;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--orange);
    transition: gap 0.25s, color 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card-readmore:hover {
    color: var(--purple);
    gap: 12px;
}

/* Pagination (used by both home.php and archive.php) */
.navigation.pagination .nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1.5px solid var(--gray-200);
    background: #fff;
    color: var(--gray-700, #374151);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
}
.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
    background: var(--gradient-h);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}
.navigation.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* ========== BLOG SINGLE — magazine layout ========== */
.blog-narrow { max-width: 740px; }

/* Cinematic hero */
.blog-hero {
    position: relative;
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 70px;
    color: #fff;
}
.blog-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(2,8,23,0.35) 0%, rgba(2,8,23,0.55) 50%, rgba(2,8,23,0.85) 100%);
}
.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.blog-hero-category {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--gradient-h);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(255,152,117,0.4);
}
.blog-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
}
.blog-hero-author { display: inline-flex; align-items: center; gap: 10px; }
.blog-hero-author-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--gradient);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.blog-hero-dot { opacity: 0.5; }
.blog-hero-scroll {
    position: absolute;
    bottom: 22px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 28px; height: 44px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 999px;
    display: flex; justify-content: center; padding-top: 8px;
}
.blog-hero-scroll span {
    width: 4px; height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: bh-scroll 1.6s ease-in-out infinite;
}
@keyframes bh-scroll {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%      { transform: translateY(10px); opacity: 1; }
}

/* Lead paragraph */
.blog-lead-section { padding: 60px 0 0; }
.blog-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
    color: var(--gray-800);
    text-align: center;
    font-style: italic;
}
.blog-divider {
    margin: 48px auto 0;
    display: flex;
    justify-content: center;
}
.blog-divider span {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-h);
    border-radius: 2px;
}

/* Article body */
.blog-body-section { padding: 50px 0 60px; }

.blog-article {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: var(--gray-700, #374151);
    font-size: 1.08rem;
    line-height: 1.85;
}
.blog-article > p:first-of-type::first-letter {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 4.2rem;
    line-height: 0.9;
    float: left;
    padding: 6px 14px 0 0;
    background: var(--gradient-h);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-article p {
    margin-bottom: 24px;
    color: var(--gray-700, #374151);
}
.blog-article h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    line-height: 1.25;
    font-weight: 700;
    color: var(--gray-900);
    margin: 50px 0 18px;
    padding-left: 18px;
    border-left: 4px solid;
    border-image: var(--gradient-h) 1;
    border-image-slice: 1;
}
.blog-article h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 36px 0 14px;
}
.blog-article ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.blog-article ul li {
    position: relative;
    padding: 10px 0 10px 32px;
    font-size: 1.04rem;
    line-height: 1.7;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.blog-article ul li:last-child { border-bottom: none; }
.blog-article ul li::before {
    content: '';
    position: absolute;
    left: 4px; top: 18px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 0 4px rgba(255,152,117,0.18);
}
.blog-article strong { color: var(--gray-900); font-weight: 700; }
.blog-article em { color: var(--gray-800); }
.blog-article a {
    color: var(--orange);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.blog-article blockquote {
    margin: 36px 0;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(255,152,117,0.08), rgba(180,82,255,0.08));
    border-left: 4px solid var(--orange);
    border-radius: 0 12px 12px 0;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gray-800);
}
.blog-article img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 36px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.blog-article hr {
    border: none;
    height: 1px;
    background: var(--gray-200);
    margin: 40px 0;
}

/* Share row */
.blog-share-row {
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.blog-share-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}
.blog-share-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-share-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--gray-200);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
    transition: all 0.25s;
}
.blog-share-btn:hover {
    background: var(--gradient-h);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Blog CTA */
.blog-cta-section {
    padding: 30px 0 60px;
}
.blog-cta-card {
    background: var(--gradient);
    color: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(180,82,255,0.18);
    position: relative;
    overflow: hidden;
}
.blog-cta-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.blog-cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.blog-cta-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.blog-cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.blog-cta-card p {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.blog-cta-card .btn-group { position: relative; z-index: 1; justify-content: center; }

/* Related posts */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.related-card-image {
    height: 200px;
    overflow: hidden;
}
.related-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.related-card:hover .related-card-image img { transform: scale(1.06); }
.related-card-body { padding: 22px; }
.related-card-cat {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.related-card-body h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--gray-900);
}
.related-card-date {
    font-size: 0.82rem;
    color: var(--gray-500);
}

@media (max-width: 600px) {
    .blog-hero { min-height: 50vh; padding: 60px 0 50px; }
    .blog-lead { font-size: 1.15rem; }
    .blog-article { font-size: 1rem; }
    .blog-article > p:first-of-type::first-letter { font-size: 3.4rem; }
    .blog-article h2 { font-size: 1.5rem; }
    .blog-cta-card { padding: 44px 24px; }
    .blog-cta-card h2 { font-size: 1.6rem; }
}
