:root {
    --forest: #184D47;
    --blue: #2E86AB;
    --sky: #F8FAFC;
    --wood: #8B5E3C;
    --grey: #F2F4F5;
    --text: #1f2937;
    --muted: #5b6470;
    --shadow: 0 20px 45px rgba(24, 77, 71, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8fbfc 0%, #eef7f5 100%);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

button,
input,
select {
    font: inherit;
}

main {
    overflow-x: hidden;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.page-shell {
    padding-top: 5rem;
}

.page-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(24, 77, 71, 0.94), rgba(46, 134, 171, 0.7));
    color: var(--sky);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    margin: 0 0 1rem;
}

.page-hero p {
    max-width: 700px;
    color: rgba(248, 250, 252, 0.92);
}

.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    transition: all 0.3s ease;
}

.site-header .header-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 77, 71, 0.94), rgba(46, 134, 171, 0.85));
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(8, 27, 34, 0.18);
    opacity: 0.95;
    transition: all 0.3s ease;
}

.site-header .header-backdrop.home-only {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
}

/* Scrolled Header (White Navbar Background) */
.site-header.scrolled .header-backdrop {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    opacity: 1 !important;
}

.navbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.brand {
       font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    width: 246px;
}

.site-header.scrolled .brand {
    color: #0f172a !important;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 700;
}

/* Scrolled Header Link Colors -> BLACK / DARK SLATE */
.site-header.scrolled .nav-links a {
    color: #0f172a !important;
    font-weight: 500;
}

.site-header.scrolled .nav-links a:hover {
    background: rgba(15, 23, 42, 0.08) !important;
    color: #0f172a !important;
}

.site-header.scrolled .nav-links a.active {
    background: #184D47 !important;
    color: #ffffff !important;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0.25rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 4px 0;
    transition: 0.3s ease;
}

.site-header.scrolled .nav-toggle span {
    background: #0f172a !important;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

.hero::before {
    width: 280px;
    height: 280px;
    background: rgba(46, 134, 171, 0.35);
    top: 8%;
    left: -6%;
}

.hero::after {
    width: 320px;
    height: 320px;
    background: rgba(24, 77, 71, 0.3);
    bottom: -6%;
    right: -3%;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

iframe.hero-video {
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

.hero-poster-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 27, 34, 0.82), rgba(24, 77, 71, 0.42));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--sky);
    padding: 8rem 0 4rem;
    max-width: 780px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    margin: 0 0 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 700px;
    color: rgba(248, 250, 252, 0.92);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 1rem;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

.hero-highlights span {
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.92);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 720px;
    margin-top: 1.25rem;
}

.hero-stat {
    padding: 1rem 1rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    font-size: 1.05rem;
    color: white;
}

.hero-stat span {
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.85);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--forest));
    color: var(--sky);
    box-shadow: var(--shadow);
}

.btn-outline {
    border: 1px solid rgba(248, 250, 252, 0.5);
    color: var(--sky);
    background: rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--forest), var(--blue));
    color: var(--sky);
}

.search-card {
    margin-top: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 1.4rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    box-shadow: 0 18px 45px rgba(5, 19, 28, 0.2);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.search-field label {
    font-size: 0.82rem;
    color: rgba(248, 250, 252, 0.9);
}

.search-field select {
    border: 0;
    border-radius: 0.8rem;
    padding: 0.8rem 0.9rem;
    color: var(--text);
    background: var(--sky);
}

.search-submit {
    height: fit-content;
    align-self: end;
}

.section-heading {
    margin-bottom: 2rem;
    max-width: 700px;
}

.section-heading h2,
.experience-copy h2,
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    margin: 0 0 0.5rem;
    color: var(--forest);
}

.with-action {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    max-width: none;
}

.link-arrow {
    color: var(--blue);
    font-weight: 600;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.package-card,
.attraction-card,
.hotel-card,
.guide-card,
.testimonial-card,
.faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
    border: 1px solid rgba(24, 77, 71, 0.08);
    border-radius: 1.35rem;
    box-shadow: 0 16px 40px rgba(15, 39, 44, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.package-card:hover,
.attraction-card:hover,
.hotel-card:hover,
.guide-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 39, 44, 0.12);
}

.feature-card {
    padding: 1.5rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(46, 134, 171, 0.12);
    color: var(--blue);
    border-radius: 50%;
    margin-bottom: 1rem;
    font-weight: 700;
}

.package-card img,
.attraction-card img {
    height: 230px;
}

.card-body {
    padding: 1.2rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--blue);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3,
.attraction-card h3,
.hotel-card h3,
.guide-card h3 {
    margin: 0 0 0.7rem;
    color: var(--forest);
}

.package-card ul {
    padding-left: 1rem;
    color: var(--muted);
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.tag-grid span {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(24, 77, 71, 0.08);
    color: var(--forest);
    font-weight: 600;
}

.attraction-card h3 {
    padding: 1rem 1rem 1.2rem;
}

.experience-section {
    padding: 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    min-height: 560px;
}

.experience-image {
    min-height: 480px;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(24, 77, 71, 0.35), rgba(46, 134, 171, 0.2)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80') center/cover;
    box-shadow: var(--shadow);
}

.experience-copy {
    padding: 2rem 0;
}

.experience-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    color: var(--forest);
    margin-bottom: 0.9rem;
}

.experience-copy p {
    color: var(--muted);
}

.hotel-card {
    padding: 1.4rem;
}

.testimonials-section {
    background: linear-gradient(135deg, rgba(24, 77, 71, 0.04), rgba(46, 134, 171, 0.04));
    border-radius: 2rem;
    padding: 4rem 1.5rem;
}

.testimonial-card {
    padding: 1.4rem;
}

.stars {
    color: #f59e0b;
    margin-bottom: 0.7rem;
}

.reviewer {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    color: var(--muted);
}

.reviews-widget {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 1.2rem;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    height: 220px;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.guide-card {
    padding: 1.3rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-image {
    height: 180px;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(24, 77, 71, 0.08);
}

.guide-card:nth-child(1) .blog-card-image {
    background-image: linear-gradient(135deg, rgba(24, 77, 71, 0.18), rgba(46, 134, 171, 0.22)), url('https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=900&q=80');
}

.guide-card:nth-child(2) .blog-card-image {
    background-image: linear-gradient(135deg, rgba(24, 77, 71, 0.18), rgba(46, 134, 171, 0.22)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=900&q=80');
}

.guide-card:nth-child(3) .blog-card-image {
    background-image: linear-gradient(135deg, rgba(24, 77, 71, 0.18), rgba(46, 134, 171, 0.22)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80');
}

.guide-card:nth-child(4) .blog-card-image {
    background-image: linear-gradient(135deg, rgba(24, 77, 71, 0.18), rgba(46, 134, 171, 0.22)), url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=900&q=80');
}

.guide-card:nth-child(5) .blog-card-image {
    background-image: linear-gradient(135deg, rgba(24, 77, 71, 0.18), rgba(46, 134, 171, 0.22)), url('https://images.unsplash.com/photo-1517760444937-f6397edcbbcd?auto=format&fit=crop&w=900&q=80');
}

.guide-card:nth-child(6) .blog-card-image {
    background-image: linear-gradient(135deg, rgba(24, 77, 71, 0.18), rgba(46, 134, 171, 0.22)), url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80');
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    color: var(--forest);
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-question {
    width: 100%;
    background: white;
    border: 0;
    text-align: left;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--forest);
    font-weight: 600;
    cursor: pointer;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0.8rem 1.2rem 1rem;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.cta-banner {
    padding: 0 0 5rem;
}

.cta-content {
    background: linear-gradient(135deg, rgba(24, 77, 71, 0.96), rgba(46, 134, 171, 0.9));
    color: var(--sky);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--forest);
    color: rgba(248, 250, 252, 0.92);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--sky);
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    min-width: 220px;
}

.floating-whatsapp,
.sticky-call,
.sticky-book {
    position: fixed;
    z-index: 30;
    display: grid;
    place-items: center;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.floating-whatsapp {
    right: 1rem;
    bottom: 7rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    font-size: 1.4rem;
}

.sticky-call {
    left: 1rem;
    bottom: 1rem;
    background: var(--blue);
    color: white;
    padding: 0.85rem 1rem;
}

.sticky-book {
    right: 1rem;
    bottom: 1rem;
    background: var(--wood);
    color: white;
    padding: 0.85rem 1rem;
}

@media (max-width: 980px) {

    .four-up,
    .three-up,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .search-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 78px;
        right: 1rem;
        left: 1rem;
        padding: 1rem;
        background: #ffffff;
        color: #0f172a;
        border-radius: 1rem;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow);
    }

    .nav-links.open a {
        width: 100%;
        color: #0f172a !important;
    }

    .nav-links.open a:hover {
        background: rgba(15, 23, 42, 0.08) !important;
        color: #0f172a !important;
    }

    .nav-links.open a.active {
        background: #184D47 !important;
        color: #ffffff !important;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .hero-content {
        padding-top: 7rem;
    }

    .search-card,
    .four-up,
    .three-up,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .with-action,
    .cta-content,
    .reviews-widget {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-content {
        padding: 2rem;
    }

    .floating-whatsapp {
        bottom: 5.4rem;
    }

    .sticky-call,
    .sticky-book {
        bottom: 0.75rem;
    }

    .sticky-book {
        right: 0.75rem;
    }
}

.floating-whatsapp {
    bottom: 5.4rem;
}

.sticky-call,
.sticky-book {
    bottom: 0.75rem;
}

.sticky-book {
    right: 0.75rem;
}
}

/* Dynamic Content Block Image Styling */
.cms-block img,
.block-text-photo img,
.block-full-photo img,
.custom-page-content img,
.custom-page-content figure img,
.feature-card img,
.page-shell article img,
.page-shell figure img,
.block-photo-preview {
    border-radius: 2rem !important;
}

/* Image Position Alignment (Left vs Right) */
.block-text-photo.block-photo-right,
.cms-block[data-align="right"] .block-text-photo {
    flex-direction: row-reverse !important;
}

@media (max-width: 768px) {
    .block-text-photo.block-photo-right,
    .cms-block[data-align="right"] .block-text-photo {
        flex-direction: column !important;
    }
}