/* ============================================================
   DESIGN SYSTEM – CSS VARIABLES
   Matches One Lanka Tours color palette but elevated
============================================================ */
:root {
    /* Brand Colors */
    --gold:          #c9a84c;
    --gold-light:    #e8c96a;
    --gold-dark:     #a07a30;
    --dark:          #0f0f1a;
    --dark-mid:      #1a1a2e;
    --dark-card:     #16213e;
    --cream:         #f8f3eb;
    --cream-dark:    #ede6d8;
    --charcoal:      #2c2c3e;
    --teal:          #0d3b47;
    --teal-light:    #155a6b;
    --text-body:     #4a4a5a;
    --text-light:    #8a8a9a;

    /* Typography */
    --font-serif:    'Playfair Display', Georgia, serif;
    --font-sans:     'DM Sans', system-ui, sans-serif;

    /* Spacing */
    --section-py:    5rem;

    /* Transitions */
    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE STYLES
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: #fff;
    overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--dark-mid);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-heading em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-subtext {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-primary.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.875rem 2rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dark-mid);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--charcoal);
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav-bar {
    padding: 0;
}

/* Transparent state (on hero) */
.nav-bar.nav-transparent {
    background: transparent;
}
.nav-bar.nav-transparent .nav-link {
    color: rgba(255,255,255,0.9);
}
.nav-bar.nav-transparent .logo-text-main,
.nav-bar.nav-transparent .logo-text-sub {
    color: #fff;
}
.nav-bar.nav-transparent .nav-cta {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* Solid state (after scroll) */
.nav-bar.nav-solid {
    background: rgba(15, 15, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 32px rgba(255, 255, 255, 0.25);
}

.nav-solid .nav-cta {
    color: #fff;
    border-color: var(--gold);
}

.nav-bar.nav-solid .nav-link { color: rgba(255,255,255,0.85); }
.nav-bar.nav-solid .logo-text-main,
.nav-bar.nav-solid .logo-text-sub { color: #fff; }

/* Logo */
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text-main {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--dark-mid);
    transition: color 0.3s;
    color: white;
}
.logo-text-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-top: 1px;
}

/* Nav links */
.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark-mid);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link-active::after { width: 100%; }
.nav-link:hover,
.nav-link-active { color: var(--gold); }

/* Nav CTA */
.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-mid);
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    transition: var(--transition);

}
.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: var(--transition);
}

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner {
    padding: 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}
.menu-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    margin-bottom: 2rem;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}
.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-cta {
    display: block;
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    margin: 2rem 0 1.5rem;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}
.mobile-contact-info {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.9s ease, transform 6s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Overlays */
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,20,0.75) 0%,
        rgba(10,10,20,0.4) 50%,
        rgba(10,10,20,0.6) 100%
    );
    z-index: 1;
}

/* Counter */
.hero-counter {
    position: absolute;
    right: 2.5rem;
    bottom: 3rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
}
.hero-counter-divider {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}
#hero-current { color: var(--gold); font-size: 0.9rem; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    left: 2.5rem;
    bottom: 3rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-lr;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
}
.hero-text-wrap {
    max-width: 700px;
    animation: heroFadeIn 1s ease 0.3s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: block;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-subtext {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}
.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

/* ============================================================
   ABOUT INTRO SECTION
============================================================ */
.about-intro {
    padding: var(--section-py) 0;
    background: var(--cream);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 900px) {
    .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-intro-body {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.25rem;
}
.video-thumb-wrap {
    position: relative;
    border-radius: 4px;
    overflow: visible;
    aspect-ratio: 4/5;
}

.about-intro-video .video-thumb-wrap {
    aspect-ratio: 16/9;
}
.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}
.video-play-btn svg {
    width: 64px;
    height: 64px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    padding: 18px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.video-play-btn:hover svg {
    transform: scale(1.1);
    background: var(--gold-light);
}
.video-accent-border {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 70%;
    height: 70%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
    background: var(--dark-mid);
    padding: 3.5rem 0;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 3rem;
    position: relative;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}
.stat-plus {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    display: inline;
    vertical-align: super;
    line-height: 1;
    margin-left: 2px;
}
.stat-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .stats-grid { gap: 0; }
    .stat-item { padding: 1.25rem 1.5rem; }
    .stat-divider { display: none; }
}

/* ============================================================
   PACKAGES SECTION
============================================================ */
.packages-section {
    padding: var(--section-py) 0;
    background: #fff;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1024px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .packages-grid { grid-template-columns: 1fr; } }

.package-card {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4/3;
    cursor: pointer;
}


.package-card-img {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-card:hover .package-card-img { transform: scale(1.06); }

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.3) 50%,
        transparent 100%
    );
    z-index: 1;
    transition: var(--transition);
}
.package-card:hover::before {
    background: linear-gradient(
        to top,
        var(--card-color, rgba(0,0,0,0.9)) 0%,
        rgba(0,0,0,0.4) 60%,
        transparent 100%
    );
}
.package-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 1.75rem;
}
.package-card-name {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}
.package-card-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.package-card:hover .package-card-desc {
    opacity: 1;
    transform: translateY(0);
}
.package-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.35s ease 0.1s;
}
.package-card:hover .package-card-link { opacity: 1; }

/* ============================================================
   VIDEO FEATURE SECTION
============================================================ */
.video-feature {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--section-py) 0;
}
.video-feature-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.video-feature-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right
        135deg
        rgba(5,30,40,0.88) 0%,
        rgba(5,30,40,0.65) 100%
    );
}

/*if you want to make the video darker
.video-feature-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5,30,40,0.88) 0%,
        rgba(5,30,40,0.65) 100%
    );
}
    */


.video-feature-content { max-width: 600px; }
.video-feature-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.video-feature-subtext {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}
.video-feature-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.video-feature-play-btn:hover { color: var(--gold); }
.play-circle {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
    animation: pulsering 2.5s ease infinite;
}
.video-feature-play-btn:hover .play-circle {
    transform: scale(1.08);
    background: var(--gold-light);
}
@keyframes pulsering {
    0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
    70%  { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* ============================================================
   DESTINATIONS SECTION
============================================================ */
.destinations-section {
    padding: var(--section-py) 0;
    background: var(--cream);
}
.destinations-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1024px) { .destinations-scroll { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .destinations-scroll { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .destinations-scroll { grid-template-columns: 1fr; } }

.destination-card {
    display: block;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition);
}
.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.destination-card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}
.destination-card-img img {
    transition: transform 0.5s ease;
}
.destination-card:hover .destination-card-img img { transform: scale(1.06); }

.destination-card-body {
    padding: 1.25rem;
}
.destination-card-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-mid);
    margin-bottom: 0.375rem;
}
.destination-card-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.destination-card-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    text-transform: uppercase;
    transition: color 0.3s;
}
.destination-card:hover .destination-card-link { color: var(--gold); }

/* ============================================================
   EXPERIENCES SECTION
============================================================ */
.experiences-section {
    padding: var(--section-py) 0;
    background: #fff;
}

/* Tab buttons */
.exp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e8e8f0;
    padding-bottom: 0;
}
.exp-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px 2px 0 0;
}
.exp-tab:hover { color: var(--dark-mid); }
.exp-tab-active {
    color: var(--dark-mid);
    border-bottom-color: var(--gold);
}
.exp-tab-icon { font-size: 1rem; }
.exp-tab-name { font-weight: 600; }

/* Tab panels */
.exp-panel { display: none; }
.exp-panel-active { display: block; }
.exp-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}
@media (max-width: 768px) {
    .exp-panel-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.exp-panel-img {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.exp-icon-large { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.exp-panel-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--dark-mid);
    margin-bottom: 1rem;
}
.exp-panel-desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 2rem;
}

/* ============================================================
   ENQUIRY CTA BAND
============================================================ */
.enquiry-band {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    text-align: center;
}
.enquiry-band-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.enquiry-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5,20,30,0.82) 0%,
        rgba(5,20,30,0.75) 100%
    );
}
.enquiry-band-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.enquiry-band-subtext {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.enquiry-band-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    font-family: var(--font-sans);
}

.footer-cta-band {
    background: var(--teal);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-cta-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.footer-cta-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
}
.footer-cta-btn:hover { background: var(--gold-light); }

.footer-body { padding: 4rem 0 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
    max-width: 280px;
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col-heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-items { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.75rem; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}
.footer-contact-item svg { color: var(--gold); margin-top: 2px; }
.footer-contact-item a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold); }

/* Clock */
.footer-clock {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.06);
}
.clock-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: clockBlink 2s ease-in-out infinite;
}
@keyframes clockBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.clock-time {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.05em;
}
.clock-label { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal-links { display: flex; align-items: center; gap: 0.75rem; }
.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal-links a:hover { color: var(--gold); }
.footer-divider { color: rgba(255,255,255,0.2); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px; height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 50;
    text-decoration: none;
    transition: var(--transition);
    animation: pulsering 3s ease infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   VIDEO LIGHTBOX
============================================================ */
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.video-lightbox.open { display: flex; }
.video-lightbox-inner { position: relative; width: 100%; max-width: 900px; }
.video-lightbox video { width: 100%; border-radius: 4px; }
.video-lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.video-lightbox-close:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE UTILITIES
============================================================ */
@media (max-width: 768px) {
    :root { --section-py: 3.5rem; }
    .hero-scroll-hint { display: none; }
    .hero-counter { right: 1.25rem; }
    .video-accent-border { display: none; }
    .stat-item { padding: 1rem 1.25rem; }
}

/* ════════════════════════════════
   REVIEWS DROPDOWN
════════════════════════════════ */
.nav-has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-dropdown-parent {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-dropdown-parent svg {
    transition: transform 0.25s ease;
    margin-top: 1px;
    flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-dropdown-parent svg {
    transform: rotate(180deg);
}
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
    min-width: 160px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
}
.nav-has-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid rgba(0,0,0,0.06);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown-item {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-dropdown-item:hover {
    color: #c9a84c;
    background: #faf8f3;
}
.mobile-nav-sub {
    padding-left: 1.5rem !important;
    font-size: 0.9rem !important;
    opacity: 0.75;
}

/*packages.blade css*/
/* ════════════════════════════════
   HERO
════════════════════════════════ */
.tp-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3.5rem;
    overflow: hidden;
    margin-top: 0;
}
.tp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0d3b47;
    transform: scale(1.04);
    transition: transform 10s ease;
}
.tp-hero:hover .tp-hero-bg { transform: scale(1); }
.tp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,15,20,0.9) 0%, rgba(5,15,20,0.5) 50%, rgba(5,15,20,0.25) 100%);
}
.tp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
}
.tp-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 0.75rem;
}
.tp-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.1;
}
.tp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}
.tp-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.tp-breadcrumb a:hover { color: #c9a84c; }
.tp-sep { color: rgba(255,255,255,0.3); }

/* ════════════════════════════════
   INTRO
════════════════════════════════ */
.tp-intro {
    padding: 4rem 0 2.5rem;
    background: #f8f3eb;
    text-align: center;
}
.tp-intro-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #1a1a2e;
    margin: 0.5rem 0 1.25rem;
    line-height: 1.2;
}
.tp-intro-heading em { font-style: italic; color: #a07a30; }
.tp-intro-text {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.85;
    color: #4a4a5a;
}
.tp-intro-line {
    width: 56px;
    height: 2px;
    background: #c9a84c;
    margin: 0 auto;
}

/* ════════════════════════════════
   GRID SECTION
════════════════════════════════ */
.tp-grid-section {
    padding: 3rem 0 5rem;
    background: #f8f3eb;
}

/* ════════════════════════════════
   CARD
════════════════════════════════ */
.tp-card {
    display: block;
    text-decoration: none !important;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.38s ease;
    margin-bottom: 1.75rem;
    height: 100%;
}
.tp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.16);
}

/* Image wrapper */
.tp-card-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #e8e8f0;
    line-height: 0;
}
.tp-card-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.tp-card:hover .tp-card-img-wrap img {

    transform: scale(1.07);

}

/* Colour sweep overlay */
.tp-card-img-overlay {
    position: absolute;
    inset: 0;
    background: var(--card-accent, #c9a84c);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: multiply;
    z-index: 1;
}
.tp-card:hover .tp-card-img-overlay { opacity: 0.55; }

/* Accent bar top */
.tp-card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-accent, #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.tp-card:hover .tp-card-img-wrap::after { transform: scaleX(1); }

/* Card body */
.tp-card-body {
    padding: 1.375rem 1.5rem 1.5rem;
}
.tp-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.tp-card-eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #a07a30;
}
.tp-card-badge {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(0,0,0,0.4);
    background: #f4f6fb;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
}
.tp-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
    line-height: 1.25;
    transition: color 0.25s;
}
.tp-card:hover .tp-card-title { color: var(--card-accent, #a07a30); }
.tp-card-desc {
    font-size: 0.84rem;
    color: #8a8a9a;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.tp-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.875rem;
    border-top: 1px solid #f0f0f8;
}
.tp-card-line {
    display: block;
    width: 30px;
    height: 1.5px;
    background: #c9a84c;
    transition: width 0.35s ease;
}
.tp-card:hover .tp-card-line { width: 50px; }
.tp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a07a30;
    transition: color 0.25s, gap 0.25s;
}
.tp-card:hover .tp-card-link { color: #c9a84c; gap: 0.65rem; }

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.tp-cta-band {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}
.tp-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #0d3b47;
    background-attachment: fixed;
}
.tp-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,25,35,0.90), rgba(5,25,35,0.82));
}
.tp-cta-content {
    position: relative;
    z-index: 2;
}
.tp-cta-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.9);
    margin-bottom: 0.75rem;
}
.tp-cta-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 1.25rem;
}
.tp-cta-heading em { font-style: italic; color: #e8c96a; }
.tp-cta-sub {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    margin: 0 auto 2.5rem;
    max-width: 440px;
    line-height: 1.75;
}
.tp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .tp-hero { height: 300px; padding-bottom: 2rem; }
    .tp-cta-band { padding: 4rem 0; }
}

/* ════════════════════════════════
   PACKAGE CARD – GET A QUOTE BUTTON
════════════════════════════════ */
.package-card {
    display: block;         /* override — was <a>, now <div> */
    cursor: default;
}
.package-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    gap: 0.75rem;
}
.package-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    opacity: 1;             /* always visible now (was hover-only) */
    transition: color 0.3s;
}
.package-card-link:hover { color: var(--gold-light); }

.package-card-quote {
    display: inline-block;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.package-card-quote:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(201,168,76,.35);
    color: var(--dark);
}

/* ── Global container — replaces Bootstrap .container everywhere ── */
.wrap {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 1024px) {
    .wrap { padding-left: 2rem; padding-right: 2rem; }
}

/* ── Solid nav override — used on tour/category/inquiry pages ──
   Add class "page-nav-solid" to <body> in those blade files     */
.page-nav-solid #main-nav {
    background: rgba(15, 15, 26, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3) !important;
}
.page-nav-solid #main-nav .nav-link         { color: rgba(255,255,255,0.85) !important; }
.page-nav-solid #main-nav .logo-text-main,
.page-nav-solid #main-nav .logo-text-sub    { color: #fff !important; }
.page-nav-solid #main-nav .nav-cta          { color: #fff !important; border-color: var(--gold) !important; }
.page-nav-solid #main-nav .menu-toggle span { background: #fff !important; }

/*packages.blade page select a tour*/

.tp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) {
    .tp-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tp-cards-grid { grid-template-columns: 1fr; }
}

/*home page package image size changes*/

.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   WHY BOOK US SECTION
============================================================ */
.why-book-section {
    padding: 96px 0;
    background: #fff;
}

.why-book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-book-card {
    background: #f9f9f7;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #efefed;
}

.why-book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-book-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1a3c2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-book-icon svg {
    width: 28px;
    height: 28px;
    color: #c9a84c;
    stroke: #c9a84c;
}

.why-book-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a3c2e;
    margin-bottom: 10px;
}

.why-book-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
}

/* ============================================================
   TESTIMONIAL SECTION
============================================================ */
.testimonial-section {
    padding: 96px 0;
    background: #f3f0eb;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 5%;
    font-size: 300px;
    color: rgba(26,60,46,0.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 56px 64px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote-icon {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 28px;
}

.testimonial-quote-icon svg {
    width: 20px;
    height: 20px;
    fill: #c9a84c;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #374151;
    font-style: italic;
    margin-bottom: 36px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1a3c2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a84c;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: #1a3c2e;
    font-size: 1rem;
    margin-bottom: 4px;
    text-align: left;
}

.testimonial-origin {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.testimonial-origin svg {
    width: 14px;
    height: 14px;
}

.testimonial-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3c2e;
    text-decoration: none;
    border-bottom: 1px solid #c9a84c;
    padding-bottom: 2px;
    transition: color 0.2s, gap 0.2s;
}

.testimonial-read-more:hover {
    color: #c9a84c;
    gap: 12px;
}

/* ============================================================
   MEMBERSHIPS & ACCREDITATIONS SECTION
============================================================ */
.memberships-section {
    padding: 96px 0;
    background: #fff;
}

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

.membership-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.membership-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.membership-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.membership-name {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 8px;
}

.membership-abbr {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a3c2e;
    letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .memberships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-book-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        padding: 36px 28px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .memberships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-book-grid {
        grid-template-columns: 1fr;
    }

    .memberships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   REWRITTEN USING CUSTOM.CSS DESIGN SYSTEM
   WHY BOOK US SECTION
============================================================ */
.why-book-section {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.why-book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-book-card {
    background: #fff;
    border-radius: 4px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}

.why-book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.10);
    border-color: var(--gold);
}

.why-book-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.why-book-card:hover .why-book-icon {
    background: var(--gold);
}

.why-book-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold);
    transition: var(--transition);
}

.why-book-card:hover .why-book-icon svg {
    color: var(--dark);
}

.why-book-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-mid);
    margin-bottom: 0.625rem;
}

.why-book-desc {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.75;
}

/* ============================================================
   TESTIMONIAL SECTION
============================================================ */
.testimonial-section {
    padding: var(--section-py) 0;
    background: var(--dark-mid);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '\201C';
    position: absolute;
    top: -60px;
    left: 4%;
    font-size: 320px;
    color: rgba(201,168,76,0.05);
    font-family: var(--font-serif);
    line-height: 1;
    pointer-events: none;
}

.testimonial-section .section-eyebrow {
    color: var(--gold);
}

.testimonial-section .section-heading {
    color: #fff;
}

.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 3.5rem 4rem;
    text-align: center;
    position: relative;
}

.testimonial-quote-icon {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 1.75rem;
}

.testimonial-quote-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 2.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 3px;
    text-align: left;
}

.testimonial-origin {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-sans);
}

.testimonial-origin svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
}

.testimonial-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.testimonial-read-more:hover {
    color: var(--gold-light);
    gap: 0.75rem;
}

/* ============================================================
   MEMBERSHIPS & ACCREDITATIONS SECTION
============================================================ */
.memberships-section {
    padding: var(--section-py) 0;
    background: #fff;
}

.memberships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.membership-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.25rem 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    background: var(--cream);
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.membership-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.membership-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.membership-name {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.membership-abbr {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    .why-book-grid      { grid-template-columns: repeat(2, 1fr); }
    .memberships-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .testimonial-card   { padding: 2.5rem 1.75rem; }
    .testimonial-text   { font-size: 1rem; }
}

@media (max-width: 640px) {
    .why-book-grid      { grid-template-columns: 1fr; }
    .memberships-grid   { grid-template-columns: repeat(2, 1fr); }
}

/*reviews css*/

/* ============================================================
   REVIEWS PAGE CSS
   Uses custom.css design system variables
============================================================ */

/* ── Intro ── */
.rv-intro {
    padding: 4rem 0 3rem;
    background: var(--cream);
    text-align: center;
}

.rv-intro-text {
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-body);
}

.rv-intro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    padding: 1.75rem 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.rv-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.5rem;
}

.rv-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-mid);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.rv-stat-plus {
    font-size: 1.2rem;
    color: var(--gold);
    vertical-align: super;
}

.rv-stat-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.rv-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.375rem;
}

.rv-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.rv-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
    flex-shrink: 0;
}

/* ── Reviews Section ── */
.rv-section {
    padding: var(--section-py) 0;
    background: #fff;
}

.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Review Card ── */
.rv-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.rv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.09);
    border-color: var(--gold);
}

/* Featured card spans 2 columns */
.rv-card--featured {
    grid-column: span 1;
    background: var(--dark-mid);
    border-color: rgba(201,168,76,0.3);
}

.rv-card--featured .rv-card-text {
    color: rgba(255,255,255,0.8);
}

.rv-card--featured .rv-author-name {
    color: #fff;
}

.rv-card--featured .rv-author-country {
    color: rgba(255,255,255,0.45);
}

.rv-card--featured .rv-avatar {
    background: var(--gold);
    color: var(--dark);
}

.rv-card--featured::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 80px;
    font-family: var(--font-serif);
    color: rgba(201,168,76,0.15);
    line-height: 1;
    pointer-events: none;
}

.rv-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.rv-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.rv-flag img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 2px;
}

.rv-stars-sm {
    display: flex;
    gap: 2px;
}

.rv-stars-sm svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.rv-card-text {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-body);
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem;
}

.rv-card-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.rv-card--featured .rv-card-author {
    border-top-color: rgba(255,255,255,0.1);
}

.rv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark-mid);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.rv-author-name {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark-mid);
    margin-bottom: 2px;
}

.rv-author-country {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ── TripAdvisor CTA ── */
.rv-tripadvisor {
    padding: 3rem 0;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
}

.rv-ta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 2.5rem 3rem;
}

.rv-ta-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-mid);
    margin-bottom: 0.5rem;
}

.rv-ta-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 480px;
}

.rv-ta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #34e0a1;
    color: #000;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition);
}

.rv-ta-btn:hover {
    background: #1fcf8e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52,224,161,0.3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .rv-intro-stats { flex-direction: column; gap: 1.5rem; }
    .rv-stat-divider { width: 60px; height: 1px; }
    .rv-grid { grid-template-columns: 1fr; }
    .rv-ta-inner { flex-direction: column; text-align: center; padding: 2rem; }
    .rv-ta-desc { max-width: 100%; }
}

/*contact page*/
/* ============================================================
   CONTACT PAGE CSS
   Uses custom.css design system variables
============================================================ */

/* ── Info Strip ── */
.ct-strip {
    background: var(--dark-mid);
    padding: 2rem 0;
}

.ct-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.ct-strip-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 2.5rem;
}

.ct-strip-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-strip-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    stroke: var(--gold);
}

.ct-strip-icon--wa svg {
    fill: var(--gold);
}

.ct-strip-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 3px;
}

.ct-strip-value {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.ct-strip-value:hover { color: var(--gold); }

.ct-strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ── Main Section ── */
.ct-section {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.ct-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* ── Left: Form ── */
.ct-main {}

.ct-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--dark-mid);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.ct-heading em {
    font-style: italic;
    color: var(--gold-dark);
}

.ct-subtext {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

/* ── Right: Sidebar ── */
.ct-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 100px;
}

.ct-info-card {
    background: #fff;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 1.75rem;
}

.ct-info-card--dark {
    background: var(--dark-mid);
    border-color: rgba(201,168,76,0.2);
}

.ct-info-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-mid);
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--cream-dark);
}

.ct-info-title svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.ct-info-title--light {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.1);
}

.ct-address {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    line-height: 1.85;
    color: var(--text-body);
}

/* Hours list */
.ct-hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ct-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px dashed var(--cream-dark);
}

.ct-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ct-hours-day {
    color: var(--dark-mid);
    font-weight: 500;
}

.ct-hours-time {
    color: var(--gold-dark);
    font-weight: 600;
}

.ct-support-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--cream);
    border-radius: 4px;
    padding: 0.625rem 0.875rem;
}

.ct-support-note svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Why list */
.ct-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ct-why-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.ct-why-list li svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Map ── */
.ct-map-section {
    padding-top: var(--section-py);
    background: #fff;
}

.ct-map-wrap {
    width: 100%;
    line-height: 0;
    border-top: 3px solid var(--gold);
}

.ct-map-wrap iframe {
    display: block;
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ct-layout {
        grid-template-columns: 1fr;
    }
    .ct-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ct-strip-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    .ct-strip-item { padding: 0.5rem 0; }
    .ct-strip-divider { display: none; }
    .ct-sidebar {
        grid-template-columns: 1fr;
    }
}

/*blog post*/

/* ============================================================
   BLOG — Kamvelta Travels
   Add to public/css/custom.css or link as blog.css
   ============================================================ */

/* ── Filter Bar ─────────────────────────────────────────── */
.bl-filter-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.bl-filter-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
}

.bl-filter-btn {
    display: inline-block;
    padding: .4rem 1rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-body);
    background: white;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.bl-filter-btn:hover,
.bl-filter-btn--active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ── Category Badge ─────────────────────────────────────── */
.bl-cat-badge {
    display: inline-block;
    padding: .28rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    font-family: var(--font-sans);
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--gold);
    color: white;
    text-decoration: none;
}

.bl-cat-badge--card {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.bl-cat-badge--hero {
    margin-bottom: 1rem;
}

/* ── Featured Post ──────────────────────────────────────── */
.bl-featured {
    padding: 3rem 0 1rem;
}

.bl-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.12);
}

.bl-featured-img {
    position: relative;
    min-height: 400px;
}

.bl-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bl-featured-body {
    background: var(--dark);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bl-featured-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--cream);
    line-height: 1.3;
    margin: .75rem 0 1rem;
}

.bl-featured-excerpt {
    color: #b0b0c0;
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ── Meta ───────────────────────────────────────────────── */
.bl-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: .5rem;
}

/* ── Read More Link ─────────────────────────────────────── */
.bl-read-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--gold);
    font-weight: 600;
    font-size: .88rem;
    font-family: var(--font-sans);
    text-decoration: none;
    letter-spacing: .02em;
    transition: var(--transition);
}

.bl-read-more:hover { color: var(--gold-dark); }

/* ── Post Grid ──────────────────────────────────────────── */
.bl-grid-section {
    padding: 3rem 0 var(--section-py);
}

.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bl-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Blog Card ──────────────────────────────────────────── */
.bl-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.14);
}

.bl-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 210px;
}

.bl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.bl-card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bl-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.4;
    margin: .4rem 0 .7rem;
}

.bl-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.bl-card-title a:hover { color: var(--gold); }

.bl-card-excerpt {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

/* ── Pagination ─────────────────────────────────────────── */
.bl-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* ── Empty State ────────────────────────────────────────── */
.bl-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-light);
}

/* ── Post Hero ──────────────────────────────────────────── */
.bl-post-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.bl-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,20,.85) 40%, rgba(10,10,20,.35));
}

.bl-post-hero__content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    width: 100%;
}

.bl-post-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: white;
    line-height: 1.25;
    max-width: 800px;
    margin: .75rem 0 1rem;
}

.bl-post-hero__meta {
    display: flex;
    gap: .5rem;
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    font-family: var(--font-sans);
}

/* ── Post Layout ────────────────────────────────────────── */
.bl-post-layout {
    padding: 3.5rem 0 var(--section-py);
}

.bl-post-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

/* ── Post Body Typography ───────────────────────────────── */
.bl-post-content {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
}

.bl-post-content h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
}

.bl-post-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--dark);
    margin: 2rem 0 .75rem;
}

.bl-post-content p { margin-bottom: 1.25rem; }

.bl-post-content ul,
.bl-post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.bl-post-content li { margin-bottom: .4rem; }

.bl-post-content blockquote {
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: var(--cream);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--charcoal);
    border-radius: 0 8px 8px 0;
}

.bl-post-content img {
    width: 100%;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.bl-post-content a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ── Post Footer ────────────────────────────────────────── */
.bl-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.bl-post-category-tag {
    font-size: .88rem;
    color: var(--text-light);
}

.bl-post-category-tag a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.bl-share {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text-light);
}

.bl-share-btn {
    display: inline-block;
    padding: .3rem .75rem;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.bl-share-btn--fb { background: #1877f2; }
.bl-share-btn--tw { background: #1da1f2; }
.bl-share-btn--wa { background: #25d366; }

/* ── Sidebar ────────────────────────────────────────────── */
.bl-sidebar {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bl-sidebar-enquiry {
    background: var(--dark);
    border: 1px solid var(--gold-dark);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.bl-sidebar-enquiry h4 {
    font-family: var(--font-serif);
    color: var(--cream);
    font-size: 1.15rem;
    margin-bottom: .6rem;
}

.bl-sidebar-enquiry p {
    color: #aaa;
    font-size: .85rem;
    margin-bottom: 1.2rem;
}

.btn-gold-full {
    display: block;
    width: 100%;
    padding: .75rem 1.5rem;
    background: var(--gold);
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-gold-full:hover { background: var(--gold-dark); color: white; }

.bl-sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.4rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

.bl-sidebar-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.bl-sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.bl-sidebar-post {
    display: flex;
    gap: .8rem;
    text-decoration: none;
    align-items: center;
}

.bl-sidebar-post img {
    width: 62px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.bl-sidebar-post-title {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    transition: var(--transition);
}

.bl-sidebar-post:hover .bl-sidebar-post-title { color: var(--gold); }

.bl-sidebar-post-date {
    display: block;
    font-size: .75rem;
    color: var(--text-light);
    margin-top: .2rem;
}

.bl-sidebar-cats {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.bl-sidebar-cat {
    display: inline-block;
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 500;
    background: var(--cream);
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--cream-dark);
}

.bl-sidebar-cat:hover,
.bl-sidebar-cat--active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ── Related Posts ──────────────────────────────────────── */
.bl-related {
    background: var(--cream);
    padding: var(--section-py) 0;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 992px) {
    .bl-featured-card { grid-template-columns: 1fr; }
    .bl-featured-img  { min-height: 260px; }
    .bl-post-grid     { grid-template-columns: 1fr; }
    .bl-sidebar       { position: static; }
    .bl-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .bl-grid,
    .bl-grid--3 { grid-template-columns: 1fr; }
    .bl-featured-body { padding: 2rem 1.5rem; }
    .bl-featured-title { font-size: 1.4rem; }
    .bl-post-footer { flex-direction: column; align-items: flex-start; }
}

/*bullets in the post*/
.bl-post-content ul,
.bl-post-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    list-style: disc;
}

.bl-post-content ol {
    list-style: decimal;
}

.bl-post-content li {
    margin-bottom: 0.4rem;
    display: list-item;
}


/* ── Tour Packages Page - Inquire Now button ── */
.tp-card-inquire {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    border: 1px solid var(--gold-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.tp-card-inquire:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}
