@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&family=Dancing+Script:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

    .masonry-gallery {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 1rem 0;
    }
    /* Light Golden-White Background */
    :root {
    --color-bg: linear-gradient(160deg, #FFF9E6 0%, #FFFDF7 40%, #ffffff 100%);
    --color-bg-solid: #FFF9E6;
    /* Warm Cream (fallback) */
    --color-text: #222;
    /* Soft Charcoal */
    --color-heading: #0F172A;
    /* Slate Black */
    --color-primary: #C2410C;
    /* Deep Rust / Terracotta */
    --color-secondary: #B45309;
    /* Golden Ochre */
    --color-accent-1: #C2410C;
    /* Orange-700 */
    --color-white: #ffffff;
    --color-shadow-soft: rgba(180, 130, 40, 0.06);
    --color-shadow-heavy: rgba(15, 23, 42, 0.08);
    --color-glass: rgba(255, 249, 230, 0.75);
    --color-glass-border: rgba(180, 130, 40, 0.08);
    --color-card-bg: #FFFDF5;
    /* Very warm white for cards */
    --color-section-bg: #FFF8E1;
    /* Soft golden cream for sections */

    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    /* Transitions & Curves */
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --color-bg: #0F172A;
    /* Dark Slate */
    --color-text: #E2E8F0;
    /* Light Gray */
    --color-heading: #F8FAFC;
    /* Almost White */
    --color-primary: #FB923C;
    /* Lighter Orange for contrast */
    --color-secondary: #FBBF24;
    /* Brighter Golden */
    --color-accent-1: #FB923C;
    --color-white: #1E293B;
    /* Dark Blue Gray */
    --color-shadow-soft: rgba(0, 0, 0, 0.3);
    --color-shadow-heavy: rgba(0, 0, 0, 0.5);
    --color-glass: rgba(30, 41, 59, 0.7);
    --color-glass-border: rgba(255, 255, 255, 0.1);
    --color-card-bg: #1E293B;
    --color-section-bg: #334155;
}

/* Metallic Text Utilities */
.metallic-gold {
    background: linear-gradient(to bottom,
            #fde047 0%,
            #eab308 25%,
            #ca8a04 50%,
            #a16207 75%,
            #ca8a04 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: metallic 12s linear infinite;
}

/* Brighter metallic gold for dark mode */
[data-theme="dark"] .metallic-gold {
    background: linear-gradient(to bottom,
            #fef08a 0%,
            #fde047 25%,
            #facc15 50%,
            #eab308 75%,
            #facc15 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

/* Metallic Black Gradient for Headings */
.heading-bright-blue {
    /* Ensure metallic style is applied even with this class */
    background: linear-gradient(to right,
            #000000 0%,
            #000000 40%,
            #FFD700 50%,
            #000000 60%,
            #000000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
}

[data-theme="dark"] .heading-bright-blue {
    background: linear-gradient(to right,
            #3b82f6 0%,
            /* Blue 500 */
            #2dd4bf 100%
            /* Teal 400 */
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Metallic Luster (Black to Bright Gold) */
.metallic-luster {
    background: linear-gradient(to right,
            #000000 0%,
            /* Black */
            #1a1a1a 25%,
            /* Very Dark Gray */
            #FFD700 50%,
            /* Gold (Highlight) */
            #1a1a1a 75%,
            /* Very Dark Gray */
            #000000 100%
            /* Black */
        );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

[data-theme="dark"] .metallic-luster {
    background: linear-gradient(to right,
            #60a5fa 0%,
            /* Blue 400 */
            #bfdbfe 25%,
            /* Blue 200 */
            #ffffff 50%,
            /* White Highlight */
            #3b82f6 75%,
            /* Blue 500 */
            #60a5fa 100%
            /* Blue 400 */
        );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. Section Headings: Fancy Underline Utility */
.fancy-red-underline,
.fancy-gold-underline {
    position: relative;
    display: inline-block;
}

.fancy-red-underline::after,
.fancy-gold-underline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

.fancy-red-underline.align-left::after {
    left: 0;
    transform: none;
}

@keyframes metallic {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Glassmorphism */
.glass {
    background: var(--color-glass);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-glass-border);
}

/* Blob Animations */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

.blob-1 {
    background: var(--color-primary);
    width: 500px;
    height: 500px;
    animation: float 20s infinite alternate;
}

.blob-2 {
    background: var(--color-secondary);
    width: 400px;
    height: 400px;
    animation: float 15s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    max-width: 100%;
}

/* =========================================
   GLOBAL TYPOGRAPHY SYSTEM
   ========================================= */

/* 1. Global Reset & Body Defaults */
body {
    background: linear-gradient(160deg, #FFF9E6 0%, #FFFDF7 40%, #ffffff 100%) fixed;
    background-color: #FFF9E6;
    /* Fallback for browsers that don't support gradient backgrounds */
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%;
}

/* 2. Headings (H1 - H3): Metallic Black Gradient */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    
    /* Global Metallic Black Gradient with Golden Shine */
    background: linear-gradient(to right,
            #000000 0%,
            #000000 40%,
            #FFD700 50%,
            #000000 60%,
            #000000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
}

.metallic-gold,
.metallic-luster {
    font-family: var(--font-heading);
    background: linear-gradient(to right,
            #000000 0%,
            #000000 40%,
            #FFD700 50%,
            #000000 60%,
            #000000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
}

/* 3. Subheadings (H4 - H6): Solid Dark or Accent */
h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-heading); /* Solid color, no gradient */
    margin-bottom: 0.75rem;
}

h1 { font-size: 3.2rem !important; font-weight: 800; line-height: 1; letter-spacing: 0.05em; }
h2 { font-size: 2.5rem !important; font-weight: 700; letter-spacing: 0.04em; }
h3 { font-size: 1.8rem !important; font-weight: 700; letter-spacing: 0.03em; }
h4 { font-size: 1.4rem !important; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); }
h5 { font-size: 1.2rem !important; letter-spacing: 0.03em; }
h6 { font-size: 1rem !important; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }

/* 4. Body Text & Paragraphs */
p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--color-text);
    opacity: 0.9;
}

/* 5. Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Utility: Force Metallic Text */
.text-metallic,
.shining-blue-text, 
.heading-bright-blue {
    font-family: var(--font-heading);
    background: linear-gradient(to right,
            #000000 0%,
            #000000 40%,
            #FFD700 50%,
            #000000 60%,
            #000000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
}

img {
    max-width: 100%;
    height: auto;
}

video,
iframe,
table {
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* Layout */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: linear-gradient(to right, #FFFDF5, #FFF9E0, #FFFDF5);
    border-bottom: 1px solid rgba(180, 130, 40, 0.15);
    box-shadow: 0 4px 18px rgba(180, 130, 40, 0.08);
}

.nav-logo {
    height: auto;
    max-height: 64px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: var(--transition-base);
}

@media (max-width: 1024px) {
    .nav-logo {
        max-width: 160px;
        max-height: 56px;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        max-width: 140px;
        max-height: 48px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-heading);
}

@media (max-width: 1024px) {
    .logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: nowrap;
    transition: var(--transition-base);
    align-items: center;
    overflow: hidden;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    /* Changed from Poppins for cleaner look */
    font-weight: 600;
    /* Increased weight for better visibility */
    font-size: 0.65rem;
    /* Smaller size for compact navbar */
    text-transform: uppercase;
    letter-spacing: 0.03em;
    /* Reduced letter spacing */
    color: var(--color-heading);
    transition: color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--color-primary);
    /* Changed to primary brand color */
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(194, 65, 12, 0.4);
}


.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-heading);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    margin-top: 0;
    /* Overlay mode */
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}



.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25));
    z-index: 5;
    pointer-events: none;
}

.landscapes-page .hero::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    /* Changed from var(--color-text) for cinematic contrast */
    max-width: 1200px;
    padding: 0 var(--spacing-md);
}

.hero h1 {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

/* Hero Typography */
.hero-center-logo {
    display: block;
    width: 280px;
    /* Big size as requested */
    height: auto;
    margin: 0 auto -1.5rem;
    /* Center and spacer */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    /* Shadow for visibility */
    opacity: 0.95;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem !important;
    /* Reduced size to keep in one line */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    /* white-space: nowrap;  Removed to allow wrapping on mobile */
}

.booking-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.booking-card:hover .booking-img {
    transform: scale(1.03);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.photo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Sitewide Gallery & Card Image Cursors */
.photo-card img,
.card img,
.attraction-card img,
.craft-img,
.card-img-wrapper img,
.attraction-img-wrapper img {
    cursor: zoom-in;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ensure scale effect on hover for all cards */
.photo-card:hover img,
.card:hover img,
.attraction-card:hover img {
    transform: scale(1.05);
}

.photo-card:hover {
    transform: translateY(-5px);
}

.hero-tagline {
    font-size: 1.3rem !important;
    display: block;
    margin-top: 1.5rem;
    opacity: 0.85;
    letter-spacing: 0.1em;
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.1rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.03em;
}

.hero-desc {
    font-size: 0.95rem !important;
    max-width: 800px;
    margin: 0.5rem auto 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.shining-blue-text {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 2.4rem !important;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    display: block;
    line-height: 1.1;
    /* Explicitly apply metallic style with golden shine on black base */
    background: linear-gradient(to right,
            #000000 0%,
            #000000 40%,
            #FFD700 50%,
            #000000 60%,
            #000000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
}

/* Page-specific styles (moved from inline <style> blocks) */
.about-page .mk-hero {
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0f172a 0%, #06202a 60%), url('../assets/images/hero-about.jpg') center/cover no-repeat;
    color: #fff;
    padding: 6rem 0;
}

.about-page .mk-hero .inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-page .mk-hero h1 {
    font-size: 2.2rem;
    margin: 0 0 .5rem;
    line-height: 1.05;
}

.about-page .mk-hero p {
    opacity: .9;
    margin: 0 0 1rem;
}

.about-page .mk-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    margin: 2.25rem 0;
}

.about-page .card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 6px 18px rgba(2, 6, 23, .06);
}

.about-page .card p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #334155;
    font-size: 1.05rem;
}

.about-page .card ul,
.about-page .card ol {
    margin-bottom: 1.25rem;
}

.about-page .card li {
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #334155;
}

.about-page .pill {
    display: inline-block;
    background: #eef2ff;
    color: #0f172a;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
}

.about-page .stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.about-page .stat {
    flex: 1;
    background: linear-gradient(90deg, #f8fafc, #eef2ff);
    padding: .75rem;
    border-radius: 8px;
    text-align: center;
}

.about-page .team-grid {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.about-page .team-member {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.about-page .btn-row {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.about-page .btn-primary {
    background: #006b5a;
    color: #fff;
    padding: .6rem .9rem;
    border-radius: 8px;
    text-decoration: none;
}

.about-page .btn-ghost {
    background: transparent;
    border: 1px solid rgba(2, 6, 23, .06);
    padding: .5rem .9rem;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
}

.about-page .about-hero {
    min-height: 55vh;
}

.about-page .about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.35));
    pointer-events: none;
}

.about-page .about-intro {
    margin: -3.5rem auto 3rem;
    padding: 0 1rem;
}

.about-page .about-intro .intro-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    text-align: center;
}

.about-page .about-intro .intro-card h1 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin: 0 0 1rem;
    color: var(--color-heading);
}

.about-page .about-intro .intro-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #334155;
    margin: 0 auto;
    max-width: 900px;
}

/* Navbar responsive adjustments to prevent menu wrapping */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.6rem;
    }

    .nav-logo {
        max-width: 160px;
        max-height: 56px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.55rem;
        padding: 0.4rem 0.6rem;
    }

    .nav-content {
        gap: 0.8rem;
    }
}

@media (max-width: 900px) {
    .about-page .mk-grid {
        grid-template-columns: 1fr;
    }

    .about-page .mk-hero {
        padding: 3.5rem 0;
    }

    .about-page .mk-hero h1 {
        font-size: 1.6rem;
    }

    .about-page .about-hero {
        min-height: 40vh;
    }

    .about-page .about-intro {
        margin-top: -2.5rem;
    }

    .about-page .about-intro .intro-card {
        padding: 1.75rem 1.5rem;
    }

    .about-page .about-intro .intro-card h1 {
        font-size: 1.9rem;
    }
}

/* Bookings Page Redesign */
.bookings-page .booking-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.bookings-page .booking-hero {
    background-size: cover;
    background-position: center;
    min-height: 40vh; /* Reduced height since content is moved */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Ensure global header consistency overlay if needed, but hero usually has its own */
/* Removed overlay for clearer/brighter image */
.bookings-page .booking-hero::before {
    display: none;
}

.bookings-page .booking-intro {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.bookings-page .hero-title {
    /* Uses global H1 size now */
    margin-bottom: 1rem;
    /* Global Metallic Style applies via class */
}

.bookings-page .hero-desc {
    font-size: 1.15rem;
    color: var(--color-text); /* Dark text on white bg */
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bookings-page .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Updated Button Styles */
.bookings-page .booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.bookings-page .booking-btn.primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.3);
}

.bookings-page .booking-btn.primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.bookings-page .booking-btn.secondary {
    background: transparent;
    color: var(--color-heading);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.bookings-page .booking-btn.secondary:hover {
    background: var(--color-heading);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.bookings-page .booking-btn.whatsapp {
    background: #25D366;
    color: white;
}

.bookings-page .booking-btn.email {
    background: #ea4335; 
    color: white;
}

/* Sections */
.bookings-page .booking-section {
    margin-bottom: 4rem;
}

.bookings-page .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bookings-page .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.bookings-page .section-header p {
    color: var(--color-text);
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Partner Cards (Booking.com / Trip.com) */
.bookings-page .partner-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow */
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.bookings-page .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Booking.com Card - Yellow Override */
.bookings-page .partner-card.booking {
    background: #FFD700; /* Yellow */
    border: none;
    color: #003580;
}

.bookings-page .partner-card.booking .partner-brand,
.bookings-page .partner-card.booking h3 {
    color: #003580 !important;
}

.bookings-page .partner-card.booking p {
    color: #003580;
    opacity: 0.9;
    font-weight: 500;
}

.bookings-page .partner-card.booking .partner-footer {
    color: rgba(0, 53, 128, 0.7);
}

.bookings-page .partner-card.booking .partner-tag {
    background: rgba(255, 255, 255, 0.5);
    color: #003580;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.bookings-page .partner-card.booking .partner-brand span {
    color: #fff !important; /* Make the '.com' white or dark blue? Kept original or forced. Let's force Blue for contrast if needed, or white if brand allows. standard logo has blue text. HTML has inline style for .com which might conflict. */
    /* text-shadow: none; */
}

/* Button for Yellow Card */
.bookings-page .partner-card.booking .partner-cta {
    background: #003580;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 53, 128, 0.2);
}

.bookings-page .partner-brand {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #003580; /* Booking.com Blue default */
}

/* Trip.com Card - Light Red Override */
.bookings-page .partner-card.trip {
    background: #FFE4E6; /* Light Red / Rose 100 */
    border: none;
    color: #881337; /* Dark Red / Rose 900 */
}

.bookings-page .partner-card.trip .partner-brand {
    color: #be123c !important; /* Rose 700 */
}

.bookings-page .partner-card.trip h3 {
    color: #881337 !important;
}

.bookings-page .partner-card.trip p {
    color: #9f1239; /* Rose 800 */
    opacity: 0.9;
    font-weight: 500;
}

.bookings-page .partner-card.trip .partner-footer {
    color: rgba(136, 19, 55, 0.7);
}

.bookings-page .partner-card.trip .partner-brand span {
    color: #881337 !important; /* Keep brand cohesive */
}

.bookings-page .partner-card.trip .partner-tag {
    background: rgba(255, 255, 255, 0.6);
    color: #881337;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* Button for Trip.com Card */
.bookings-page .partner-card.trip .partner-cta {
    background: #e11d48; /* Rose 600 */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

.bookings-page .partner-card.trip .partner-cta:hover {
    background: #be123c;
    transform: translateY(-2px);
}

.bookings-page .partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
}

.bookings-page .partner-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0;
}

.bookings-page .partner-tag {
    background: #f1f5f9;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.bookings-page .partner-cta {
    display: inline-block;
    background: #003580;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.bookings-page .partner-card.trip .partner-cta {
    background: #2e66d3;
}

.bookings-page .partner-cta:hover {
    opacity: 0.9;
}

.bookings-page .partner-footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Grid Layout for Tours / Stays */
.bookings-page .booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bookings-page .booking-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Lighter shadow */
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bookings-page .booking-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bookings-page .booking-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-heading);
}

.bookings-page .booking-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.bookings-page .booking-card a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.bookings-page .booking-card a:hover {
    text-decoration: underline;
}

/* Contact Section */
.bookings-page .contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .bookings-page .booking-main {
        padding: 2rem 1rem;
    }
    .bookings-page .hero-title {
        font-size: 2.2rem;
    }
}

.crafts-page {
    font-family: 'Manrope', 'Inter', sans-serif;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9)), #f8fafc;
}

.crafts-page .destination-hero {
    position: relative;
    min-height: 55vh;
}

.crafts-page .destination-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 35, 0.2), rgba(10, 10, 35, 0.5));
}

.crafts-page .hero-content-inner {
    position: relative;
    z-index: 1;
}

.crafts-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.crafts-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.crafts-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    color: inherit;
}

.crafts-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.crafts-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.crafts-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    cursor: zoom-in;
}

.crafts-page .attraction-card:hover img {
    transform: scale(1.05);
}

.crafts-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.crafts-page .attraction-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.crafts-page .attraction-title {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.crafts-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
}

.crafts-page .guide-section,
.crafts-page .editorial-container,
.crafts-page .section-header {
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

/* Removed specific override to allow global metallic style */
.crafts-page .section-header h2,
.crafts-page .heading-bright-blue {
    display: inline-block; /* Keep layout if needed */
}

.crafts-page .section-header {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
}

.crafts-page .section-header p {
    margin-top: 0.5rem !important;
}

/* Removed color !important overrides */

.crafts-page .shining-blue-text {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-top: 1.8rem;
    margin-bottom: 0;
    display: block;
    line-height: 1.15;
}

.crafts-page .destination-hero::before {
    background: none !important;
    display: none !important;
}

.crafts-page .lead-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #0f172a;
    max-width: 900px;
}

.crafts-page .editorial-note {
    background-color: #fff7ed;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.12);
}

.crafts-page .styled-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.crafts-page .styled-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.crafts-page .styled-list li strong {
    color: #333;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    line-height: 1.2;
    margin-right: 0.3rem;
}

.crafts-page main {
    text-align: left;
}

@media (max-width: 768px) {
    .crafts-page .editorial-container {
        padding: 0 1rem;
    }

    .crafts-page .editorial-note {
        padding: 2rem 1.5rem;
    }

    .crafts-page .grid-2,
    .crafts-page .grid-3 {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .crafts-page .shining-blue-text {
        font-size: 1.4rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .crafts-page .section-header h2,
    .crafts-page .heading-bright-blue {
        font-size: 1.5rem !important;
    }
}

.destinations-page {
    background: linear-gradient(135deg, #F3E5F5 0%, #FFF3E0 100%);
    background-attachment: fixed;
}

.destinations-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.destinations-page .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.destinations-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    color: inherit;
}

.destinations-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.destinations-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.destinations-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.destinations-page .attraction-card:hover img {
    transform: scale(1.05);
}

.destinations-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.destinations-page .attraction-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading); /* Keep card title solid */
    font-weight: 600;
    line-height: 1.3;
}

.destinations-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destinations-page .guide-section,
.destinations-page .editorial-container,
.destinations-page .section-header,
.destinations-page .section-header h2,
.destinations-page .heading-bright-blue {
    text-align: left !important;
    align-items: flex-start !important;
}

.destinations-page .section-header {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
}

.destinations-page .section-header p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
}

/* Removed redundant block */

.destinations-page .destination-hero::before {
    background: none !important;
    display: none !important;
}

.destinations-page .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
}

.destinations-page main {
    text-align: left;
}

.destinations-page .guide-section {
    margin-top: 6rem !important;
}

@media (max-width: 768px) {
    .destinations-page .editorial-container {
        padding: 0 1rem;
    }

    .destinations-page .grid-2,
    .destinations-page .grid-3 {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .destinations-page .shining-blue-text {
        font-size: 1.4rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .destinations-page .section-header h2,
    .destinations-page .heading-bright-blue {
        font-size: 1.5rem !important;
    }
}

.hidden-gems-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.hidden-gems-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.hidden-gems-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hidden-gems-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hidden-gems-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.hidden-gems-page .attraction-card:hover img {
    transform: scale(1.05);
}

.hidden-gems-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.hidden-gems-page .attraction-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading); /* Keep card title solid */
    font-weight: 600;
    line-height: 1.3;
}

.hidden-gems-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
}

.hidden-gems-page .guide-section,
.hidden-gems-page .editorial-container,
.hidden-gems-page .section-header,
.hidden-gems-page .section-header h2,
.hidden-gems-page .heading-bright-blue {
    text-align: left !important;
    align-items: flex-start !important;
}

.hidden-gems-page .section-header {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
}

.hidden-gems-page .section-header p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
}

/* Removed redundant block */

.hidden-gems-page .destination-hero::before {
    background: none !important;
    display: none !important;
}

.hidden-gems-page .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
}

.hidden-gems-page .styled-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.hidden-gems-page .styled-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.hidden-gems-page .styled-list li strong {
    color: #333;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    line-height: 1.2;
    margin-right: 0.3rem;
}

.hidden-gems-page .editorial-note {
    background-color: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.03);
}

.hidden-gems-page .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.hidden-gems-page .tip-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-weight: 600;
}

.hidden-gems-page .tip-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.hidden-gems-page main {
    text-align: left;
}

@media (max-width: 768px) {
    .hidden-gems-page .editorial-container {
        padding: 0 1rem;
    }

    .hidden-gems-page .editorial-note {
        padding: 2rem 1.5rem;
    }
}

.history-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.history-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.history-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.history-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 16/9;
}

.history-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.history-page .attraction-card:hover img {
    transform: scale(1.05);
}

.history-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.history-page .attraction-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading); /* Keep card title solid */
    font-weight: 600;
    line-height: 1.3;
}

.history-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
}

.history-page .era-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d97706;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.history-page .guide-section,
.history-page .editorial-container,
.history-page .section-header,
.history-page .section-header h2,
.history-page .heading-bright-blue {
    text-align: left !important;
    align-items: flex-start !important;
}

.history-page .section-header {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
}

.history-page .section-header p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
}

/* Removed redundant block */

.history-page .destination-hero::before {
    background: none !important;
    display: none !important;
}

.history-page .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
}

.history-page .editorial-note {
    background-color: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.03);
}

.history-page .styled-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.history-page .styled-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.history-page .styled-list li strong {
    color: #333;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    line-height: 1.2;
    margin-right: 0.3rem;
}

.history-page main {
    text-align: left;
}

@media (max-width: 768px) {
    .history-page .editorial-container {
        padding: 0 1rem;
    }

    .history-page .grid-2 {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .history-page .shining-blue-text {
        font-size: 1.4rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .history-page .section-header h2,
    .history-page .heading-bright-blue {
        font-size: 1.5rem !important;
    }
}

.blog-page .blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.blog-page .blog-main {
    min-width: 0;
}

.blog-page .blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.blog-page .blog-hero {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    padding: 5rem 1.5rem;
    text-align: center;
    color: white;
}

.blog-page .blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-white); /* Keep white for hero overlay */
}

.blog-page .blog-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.blog-page .blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-page .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.blog-page .blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-page .blog-card-content {
    padding: 1.5rem 2rem 2rem;
}

.blog-page .blog-card-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
}

.blog-page .blog-card-category {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-page .blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    line-height: 1.3;
}

.blog-page .blog-card h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-page .blog-card h2 a:hover {
    color: #007bff;
}

.blog-page .blog-card-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-page .read-more {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.blog-page .read-more:hover {
    gap: 0.75rem;
}

.blog-page .sidebar-widget {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
}

.blog-page .sidebar-widget h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #007bff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-page .archive-list li {
    border-bottom: 1px solid #f1f5f9;
}

.blog-page .archive-list li:last-child {
    border-bottom: none;
}

.blog-page .archive-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.blog-page .archive-list a:hover {
    color: #007bff;
    padding-left: 0.5rem;
}

.blog-page .archive-count {
    background: #f1f5f9;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.blog-page .category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-page .category-tag {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
}

.blog-page .category-tag:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.blog-page .featured-post {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.blog-page .featured-post:last-child {
    border-bottom: none;
}

.blog-page .featured-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.blog-page .featured-post-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.blog-page .featured-post-content h4 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-page .featured-post-content h4 a:hover {
    color: #007bff;
}

.blog-page .featured-post-content span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.blog-page .subscribe-widget {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    color: white;
}

.blog-page .subscribe-widget h3 {
    color: white;
    border-bottom-color: #60a5fa;
}

.blog-page .subscribe-widget p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.blog-page .subscribe-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.blog-page .subscribe-form button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.blog-page .subscribe-form button:hover {
    transform: scale(1.02);
}

.blog-page .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.blog-page .pagination a,
.blog-page .pagination span {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #475569;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.blog-page .pagination a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.blog-page .pagination .active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

@media (max-width: 968px) {
    .blog-page .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-page .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }

    .blog-page .blog-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-page .blog-card-content {
        padding: 1.25rem;
    }

    .blog-page .blog-card h2 {
        font-size: 1.25rem;
    }

    .blog-page .sidebar-widget {
        padding: 1.25rem;
    }
}

.history-page .timeline-card {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.history-page .timeline-card-header {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    color: var(--color-heading);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.history-page .timeline-card-body {
    padding: 2rem;
}

.history-page .timeline-card-body p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

/* Destination detail pages */
.destination-detail-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.destination-detail-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.destination-detail-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.destination-detail-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.destination-detail-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.destination-detail-page .attraction-card:hover img {
    transform: scale(1.05);
}

.destination-detail-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.destination-detail-page .attraction-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading); /* Keep solid */
    font-weight: 600;
    line-height: 1.3;
}

.destination-detail-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
}

.destination-detail-page .itinerary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.destination-detail-page .itinerary-box {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-detail-page .itinerary-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.destination-detail-page .itinerary-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.destination-detail-page .day-header {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.destination-detail-page .editorial-note {
    background-color: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.destination-detail-page .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.destination-detail-page .tip-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-weight: 600;
}

.destination-detail-page .tip-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.destination-detail-page .styled-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.destination-detail-page .styled-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.destination-detail-page .styled-list li strong {
    color: #333;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    line-height: 1.2;
    margin-right: 0.3rem;
}

.destination-detail-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.destination-detail-page .gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: opacity 0.3s, transform 0.3s, filter 0.3s;
    cursor: pointer;
}

.destination-detail-page .gallery-grid img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.destination-detail-page .section-header,
.destination-detail-page .section-header h2,
.destination-detail-page .heading-bright-blue {
    text-align: left !important;
    align-items: flex-start !important;
}

.destination-detail-page .section-header {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.destination-detail-page .section-header p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: 0.5rem !important;
}

/* Removed redundant block that was forcing inheritance */

.destination-detail-page main {
    text-align: left;
}

.destination-detail-page .hero-title-metallic-gold,
.destination-detail-page .hero-title-metallic-red {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    display: block;
    line-height: 1.2;
    /* Apply Golden Shine over Blue Base */
    background: linear-gradient(to right,
            #1e3a8a 0%,
            #1e3a8a 40%,
            #FFD700 50%,
            #1e3a8a 60%,
            #1e3a8a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: metallic 6s linear infinite;
}

@keyframes metallicGoldShine {
    to {
        background-position: 200% center;
    }
}

.destination-detail-page .destination-hero::before {
    background: none !important;
    display: none !important;
}

.destination-detail-page .hero-text-bright {
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.destination-detail-page #lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-detail-page #lightbox.show {
    display: flex;
    opacity: 1;
}

.destination-detail-page #lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.destination-detail-page #lightbox.show img {
    transform: scale(1);
}

.destination-detail-page .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.2s;
}

.destination-detail-page .lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.destination-detail-page .nearby-highlight {
    margin-top: 4rem;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.destination-detail-page .nearby-highlight::after {
    display: none;
}

.destination-detail-page .nearby-highlight .section-header h2,
.destination-detail-page .nearby-highlight .heading-bright-blue {
    font-size: 1.75rem !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--color-heading) !important;
    border-left: 6px solid #FFD700;
    padding-left: 1rem;
}

.destination-detail-page .nearby-highlight .attraction-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.destination-detail-page .nearby-highlight .attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.destination-detail-page .nearby-highlight .attraction-title {
    color: #0b4f6c;
    border-bottom-color: #00d26a;
}

.destination-detail-page .nearby-highlight .attraction-desc {
    color: #3b4a5a;
    opacity: 0.95;
}

.destination-detail-page .nearby-highlight .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: #00d26a;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(0, 210, 106, 0.25);
}

.destination-detail-page .nearby-highlight .btn-text::after {
    content: "→";
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .destination-detail-page .section-header h2 {
        font-size: 1.5rem !important;
    }

    .destination-detail-page .lead-text {
        font-size: 1rem;
    }

    .destination-detail-page .editorial-container {
        padding: 0 1rem;
    }

    .destination-detail-page .editorial-note {
        padding: 2rem 1.5rem;
    }

    .destination-detail-page .grid-2 {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .destination-detail-page .hero-title-metallic-red {
        font-size: 1.4rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .destination-detail-page .gallery-grid {
        grid-template-columns: 1fr;
    }

    .destination-detail-page .gallery-grid img {
        display: block;
    }
}

/* Craft detail pages */
.craft-detail-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.craft-detail-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.craft-detail-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.craft-detail-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.craft-detail-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.craft-detail-page .attraction-card:hover img {
    transform: scale(1.05);
}

.craft-detail-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.craft-detail-page .attraction-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.3;
}

.craft-detail-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
}

.craft-detail-page .editorial-note {
    background-color: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.craft-detail-page .styled-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.craft-detail-page .styled-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.craft-detail-page .styled-list li strong {
    color: #333;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    line-height: 1.2;
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .craft-detail-page .section-header h2 {
        font-size: 1.5rem !important;
    }

    .craft-detail-page .lead-text {
        font-size: 1rem;
    }
}

.distance-matrix-page .page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.distance-matrix-page .page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.distance-matrix-page .page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.distance-matrix-page .search-container {
    max-width: 600px;
    margin: -2rem auto 2rem;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.distance-matrix-page .search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.distance-matrix-page .search-input:focus {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.distance-matrix-page .table-container {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.distance-matrix-page .distance-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.distance-matrix-page .distance-table th {
    background: #f8fafc;
    padding: 1rem;
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.distance-matrix-page .distance-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #334155;
    vertical-align: middle;
}

.distance-matrix-page .distance-table tr:hover {
    background-color: #f8fafc;
}

.distance-matrix-page .badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #e0f2fe;
    color: #0369a1;
}

.distance-matrix-page .dist-cell {
    font-weight: 700;
    color: var(--color-primary);
}

.distance-matrix-page .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .distance-matrix-page .page-header {
        padding: 6rem 0 3rem;
    }

    .distance-matrix-page .page-title {
        font-size: 2rem;
    }

    .distance-matrix-page .distance-table th,
    .distance-matrix-page .distance-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

.index-page .travel-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.index-page .dashboard-panel {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.index-page .dashboard-panel:hover {
    transform: translateY(-5px);
}

.index-page .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f8fafc;
    padding-bottom: 1rem;
}

.index-page .panel-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.index-page .panel-icon {
    font-size: 1.5rem;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 50%;
}

.index-page .season-row {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.index-page .season-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.index-page .season-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 90px;
    gap: 0.5rem;
}

.index-page .season-month {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-heading);
}

.index-page .status-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.index-page .status-best {
    background: #ecfccb;
    color: #3f6212;
}

.index-page .status-good {
    background: #fff7ed;
    color: #9a3412;
}

.index-page .status-avoid {
    background: #fef2f2;
    color: #991b1b;
}

.index-page .season-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.95rem;
    color: #1e293b;
}

.index-page .season-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    /* Slightly adjusted for better proportion */
    font-weight: 700;
    color: #1e3a8a;
    /* Deep Royal Blue */
    margin-top: 0;
    margin-bottom: 2rem;
    text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.5), 1px 1px 1px rgba(0, 0, 0, 0.3);
    /* Embossed effect */
    transform: none;
    /* Make straight */
    display: inline-block;
}

[data-theme="dark"] .hero-subtitle {
    color: #bfdbfe;
    /* Lighter blue for dark mode contrast */
}

.hero p.hero-desc {
    font-size: 1.5rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 1rem auto 1.5rem;
    /* Reduced vertical spacing */
    font-weight: 600;

    /* Metallic Shine Effect */
    color: #ffffff;
    /* Bright White as requested */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    /* increased shadow for contrast against hero image */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Featured Section */
.section-title {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.divider {
    width: 40px;
    height: 2px;
    background: var(--color-accent-1);
    margin: 1.5rem auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

/* Card Styling */
.card {
    background: linear-gradient(135deg, #ffe4e6 0%, #dbeafe 100%);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
}

[data-theme="dark"] .card {
    border-color: rgba(255, 255, 255, 0.1);
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    height: auto;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover img {
    transform: scale(1.08);
}

.card-content {
    padding: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    background: var(--color-card-bg);
    /* Ensure content sits on top of bg if needed, though usually fine */
}

/* Shimmer Effect */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    /* Start further back */
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            /* Stronger center for visibility */
            transparent 100%);
    transform: skewX(-25deg);
    transition: 0s;
    /* Instant reset */
    z-index: 5;
    pointer-events: none;
}

/* Trigger Shimmer on Hover */
.card:hover::before {
    left: 150%;
    transition: 0.8s ease-in-out;
}

/* Hover Elevation & Glow */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(194, 65, 12, 0.25);
    /* Rich terracotta glow */
    border-color: var(--color-primary);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 25px 50px -12px rgba(251, 146, 60, 0.15);
    border-color: var(--color-secondary);
}

/* Image Highlight on Hover */
.card:hover .card-img-wrapper::after {
    opacity: 1;
}

/* Add a subtle inner sheen to the image wrapper */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0.6;
    transition: var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

.card-category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-1);
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background: var(--color-heading);
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-base);
    border: none;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.25),
        0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn:hover {
    background: var(--color-accent-1);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2),
        0 14px 26px rgba(0, 0, 0, 0.22);
}

.btn-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-heading);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--color-heading);
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: scaleX(0.2);
    transform-origin: left;
    transition: var(--transition-base);
}

.btn-text:hover:after {
    transform: scaleX(1);
    background: var(--color-accent-1);
}

/* Nearby Places highlight */
.nearby-highlight {
    margin-top: 4rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.nearby-highlight::after {
    display: none;
}

.nearby-highlight .section-header h2,
.nearby-highlight .heading-bright-blue {
    font-size: 1.75rem !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: var(--color-heading) !important;
    border-left: 6px solid #FFD700;
    padding-left: 1rem;
}

.nearby-highlight .attraction-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.nearby-highlight .attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.nearby-highlight .attraction-title {
    color: #0b4f6c;
    border-bottom-color: #00d26a;
}

.nearby-highlight .attraction-desc {
    color: #3b4a5a;
    opacity: 0.95;
}

.nearby-highlight .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: #00d26a;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(0, 210, 106, 0.25);
}

.nearby-highlight .btn-text:after {
    display: none;
}

.nearby-highlight .btn-text::after {
    content: "→";
    font-size: 0.9rem;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    content: "";
}

/* Essentials Section */
.essentials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Landscapes Page */
.landscapes-page .landscape-hero {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.landscapes-page .landscape-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.12));
    pointer-events: none;
}

.landscapes-page .landscape-hero .hero-content {
    position: relative;
    z-index: 1;
    color: #f8fafc;
    max-width: 680px;
}

.landscapes-page .hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 0.75rem;
}

.landscapes-page .landscape-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
}

.landscapes-page .landscape-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.85);
}

.landscapes-page .hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.landscapes-page .btn.btn-outline {
    background: transparent;
    border: 2px solid rgba(248, 250, 252, 0.8);
    color: #f8fafc;
}

.landscapes-page .landscape-intro .section-header h2,
.landscapes-page .landscape-cta .section-header h2 {
    font-size: 1.8rem;
}

.landscapes-page .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.landscapes-page .photo-card {
    margin: 0;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landscapes-page .photo-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.landscapes-page .photo-card figcaption {
    padding: 0.85rem 1rem;
    font-weight: 600;
    color: #0f172a;
    background: #ffffff;
}

.landscapes-page .photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.landscapes-page .landscape-cta {
    text-align: left;
}

.landscapes-page .cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.landscapes-page .landscape-cta .btn {
    background: #0f172a;
    color: #f8fafc;
}

.landscapes-page .landscape-cta .btn.btn-outline {
    background: transparent;
    border: 2px solid #0f172a;
    color: #0f172a;
}

@media (max-width: 768px) {
    .landscapes-page .landscape-hero {
        min-height: 60vh;
    }

    .landscapes-page .photo-card img {
        height: 200px;
    }
}

.essentials-image img {
    border-radius: 4px;
    box-shadow: 40px 40px 0 #EADDCF;
}

.essential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Laptop & Small Usage Adjustments (14 inch screens) */
@media (max-width: 1440px) {
    :root {
        --spacing-lg: 5rem;
        --spacing-xl: 8rem;
    }

    h1 {
        font-size: clamp(2.2rem, 4vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .hero-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .hero p.hero-desc {
        font-size: 1.15rem;
        max-width: 550px;
    }

    .section-title {
        margin-bottom: 4rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 4rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow:
            0 16px 36px rgba(15, 23, 42, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.9),
            inset 0 -1px 0 rgba(15, 23, 42, 0.04);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.6rem 0.85rem;
        font-size: 0.75rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow:
            0 8px 16px rgba(15, 23, 42, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.95),
            inset 0 -2px 4px rgba(15, 23, 42, 0.06);
    }

    .nav-links a::after {
        content: "›";
        font-size: 1.1rem;
        color: rgba(15, 23, 42, 0.45);
    }

    .essentials-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Hero Typography Fixes for Mobile */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
        /* Reduced max size */
        margin-bottom: 0.5rem;
        white-space: normal;
        /* Ensure wrapping */
        word-wrap: break-word;
        /* distinct fix for overlap */
    }

    .hero-subtitle {
        font-size: 1.5rem !important;
        /* Force smaller size */
        line-height: 1.3;
        margin-bottom: 1.5rem;
        display: block;
        /* Ensure it takes full width if needed */
    }

    .hero p.hero-desc {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        /* Slight side padding */
    }

    /* Index hero refinements for mobile */
    .hero-content {
        padding-top: 1rem;
    }

    .hero-center-logo {
        width: min(48vw, 180px);
        margin: 0 auto 0.75rem;
    }

    .hero-title {
        max-width: 20ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 1.25rem !important;
        line-height: 1.3;
        max-width: 26ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        max-width: 34ch;
    }

    .hero-content .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.82rem;
    }

    /* General Heading Adjustments */
    h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    /* Guide Section Spacing Reduction */
    .timeline {
        gap: 0.75rem;
    }

    .timeline-item {
        padding: 1rem;
    }

    .route-list {
        gap: 0.75rem;
    }

    .route-item {
        padding: 1rem;
    }

    /* Reduce Header Spacing in Guide */
    .card-header {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .card-header h3 {
        font-size: 1.75rem !important;
        /* reduce header size slightly */
    }

    /* Crafts hero: show full image on mobile */
    .crafts-page .destination-hero {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 60vw;
        height: auto;
        padding: 4rem 0 2rem;
    }
}

/* Destination Pages Enhancement */
.destination-hero {
    margin-top: 0;
    /* Overlay mode */
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.destination-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 70%, transparent 100%);
    z-index: 1;
}

.destination-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.content-grid {
    display: grid;
    padding-bottom: 2rem;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

.destination-content {
    background: var(--color-white);
    padding: 4rem;
    box-shadow: 0 50px 100px -20px var(--color-shadow-heavy);
}

.destination-sidebar {
    background: #F2E8DE;
    padding: 3rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .destination-content {
        padding: 2rem;
    }

    /* Hero Title Adjustment */
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        /* Smaller base and max size for mobile */
        margin-top: 1rem;
        /* Add space from top */
    }

    /* Destination Content Adjustment */
    .destination-content {
        padding: 1rem;
    }

    .editorial-container {
        padding: 0 1.25rem;
        /* Slightly reduced to prevent edge tension */
    }

    .styled-list {
        padding-left: 0.5rem;
        /* Give bullets more room */
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .destination-content {
        padding: 2rem 1.5rem;
        /* Reduced padding for mobile */
    }

    .destination-sidebar {
        position: static;
        /* Stack sidebar on mobile */
        margin-top: 2rem;
    }

    /* Fix Hero Title Overflow on Mobile */
    .hero-title {
        white-space: normal;
        /* Allow wrapping */
        font-size: clamp(2.5rem, 10vw, 4rem);
        /* Adjust size */
        word-wrap: break-word;
    }

    .destination-hero h1 {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        padding: 0 1rem;
    }
}

/* Global Heading Style for Destinations */
.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Ensure Heading Bright Blue is applied if class is added dynamically or statically */
.heading-bright-blue {
    display: inline-block;
    /* Fix for some gradient rendering issues */
}


/* Feature Tabs Section */
.feature-tabs {
    position: relative;
    margin-top: -4rem;
    z-index: 20;
    padding-bottom: 4rem;
}

.tabs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tabs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    background: var(--color-white);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    color: var(--color-heading);
}

.tab-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
    border-color: var(--color-primary);
}

.tab-icon {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    transition: transform 0.4s ease;
}

.tab-item:hover .tab-icon {
    transform: scale(1.15) rotate(5deg);
}

.tab-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Booking & Plan Journey Widgets */
.booking-section {
    padding-bottom: 6rem;
}

.widget-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .widget-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-widget {
    background: #fff;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.widget-header {
    margin-bottom: 2rem;
    text-align: center;
}

.widget-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Travel Essentials Guide */
.essentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .essentials-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.essential-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 2rem;
    transition: var(--transition-base);
}

.essential-card:hover {
    border-color: var(--color-primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background: #fff4ed;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 0 4px 4px 0;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.badge-best {
    background: #dcfce7;
    color: #166534;
}

.badge-good {
    background: #e0f2fe;
    color: #075985;
}

.badge-avoid {
    background: #fee2e2;
    color: #991b1b;
}

.route-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.route-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    transition: var(--transition-base);
}

.route-item:hover {
    transform: translateX(10px);
    border-color: var(--color-primary);
}

/* Stay/Accommodations Section */
.stay-section {
    background: #fafafa;
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stay-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.stay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.stay-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.stay-card:hover img {
    transform: scale(1.1);
}

/* Packing Section */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.pack-item {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.pack-item:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.pack-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Community & Map */
.community-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .community-row {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 2.5rem;
    overflow: hidden;
    border: 10px solid #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

/* Craft Grid */
.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .craft-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .craft-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

.craft-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition-base);
}

.craft-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1rem;
    transition: var(--transition-base);
}

.craft-card h3 {
    margin-top: 1rem;
    color: var(--color-heading);
}

.craft-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.craft-card:hover img {
    transform: scale(1.05);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

/* Blob Wrapper - Ensure it fills section but stays behind */
.blob-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Development Banner */
.dev-banner {
    position: fixed;
    top: 5rem;
    right: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: rgba(194, 65, 12, 0.9);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    pointer-events: none;
    font-family: var(--font-heading);
    text-align: center;
}

.dev-banner::before {
    content: '●';
    margin-right: 8px;
    color: #ffd700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .dev-banner {
        top: 4.25rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.dark-mode-toggle:active {
    transform: scale(0.95);
}

[data-theme="dark"] .dark-mode-toggle {
    background: var(--color-secondary);
}

/* Additional Dark Mode Specific Styles */
[data-theme="dark"] nav {
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .stay-section {
    background: var(--color-section-bg);
}

[data-theme="dark"] .booking-widget,
[data-theme="dark"] .essential-card {
    background: var(--color-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Ensure hero text remains visible in dark mode */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero p {
    color: white !important;
}

/* Dark mode navigation links */
[data-theme="dark"] .nav-links a {
    color: var(--color-text);
}

@media (max-width: 768px) {
    [data-theme="dark"] .nav-links {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.94));
        border-bottom-color: rgba(148, 163, 184, 0.25);
        box-shadow:
            0 16px 36px rgba(0, 0, 0, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    }

    [data-theme="dark"] .nav-links a {
        background: rgba(30, 41, 59, 0.92);
        border-color: rgba(148, 163, 184, 0.2);
        box-shadow:
            0 8px 16px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            inset 0 -2px 4px rgba(0, 0, 0, 0.35);
    }

    [data-theme="dark"] .nav-links a::after {
        color: rgba(226, 232, 240, 0.5);
    }
}

/* Dark mode card content */
[data-theme="dark"] .card p {
    color: var(--color-text);
}

/* Dark mode timeline items */
[data-theme="dark"] .timeline-item {
    background: var(--color-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .route-item {
    background: var(--color-card-bg);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Theme transitions (avoid global `*` for performance) */
body,
nav,
.card,
.tab-item,
.diversity-card,
.booking-widget,
.essential-card,
.timeline-item,
.route-item,
.distance-card,
.glass-panel,
.search-input,
.filter-select,
.footer-main,
.destination-content,
.destination-sidebar {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .dark-mode-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* Diversity Strip Section */
.diversity-strip {
    background: #fff;
    /* Clean white separation */
    padding: 3rem 0;
    margin-top: -2rem;
    /* Pull up slightly to bridge hero and main */
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.diversity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .diversity-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.diversity-card {
    background: #fafafa;
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid transparent;
    cursor: default;
}

.diversity-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.diversity-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.diversity-card:hover .diversity-icon {
    transform: scale(1.2) rotate(5deg);
}

.diversity-card h4 {
    color: var(--color-heading);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.diversity-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Dark Mode Support */
[data-theme="dark"] .diversity-strip {
    background: var(--color-bg);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    /* Subtle separator */
}

[data-theme="dark"] .diversity-card {
    background: var(--color-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .diversity-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Common Destination Styles */
.editorial-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 5rem;
}

/* Geography page styles (moved from inline for maintainability) */
.geography-page {
    background: linear-gradient(180deg, #FFF8E7 0%, #E0F7FA 100%);
    background-attachment: fixed;
}

.geography-page main {
    text-align: left;
}

.geography-page .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.geography-page .grid-3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.geography-page .attraction-card {
    background: white;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.geography-page .attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.geography-page .attraction-img-wrapper {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.geography-page .attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.geography-page .attraction-card:hover img {
    transform: scale(1.05);
}

.geography-page .attraction-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.geography-page .attraction-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #00d26a;
    font-weight: 600;
    line-height: 1.3;
    border-bottom: 2px solid #FBC02D;
    display: inline-block;
}

.geography-page .attraction-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    color: var(--color-text);
}

.geography-page .guide-section,
.geography-page .editorial-container,
.geography-page .section-header,
.geography-page .section-header h2,
.geography-page .heading-bright-blue {
    text-align: left !important;
    align-items: flex-start !important;
}

.geography-page .section-header {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important;
}

.geography-page .section-header p {
    text-align: left !important;
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
}

/* Removed geography specific heading overrides to match global style */

/* Removed geography specific hero title override */

.geography-page .destination-hero::before {
    background: none !important;
    display: none !important;
}

.geography-page .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
}

.geography-page .styled-list {
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.geography-page .styled-list li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.geography-page .styled-list li strong {
    color: #333;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    line-height: 1.2;
    margin-right: 0.3rem;
}

.geography-page .editorial-note {
    background-color: #f8fafc;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.geography-page .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.geography-page .tip-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-weight: 600;
}

.geography-page .tip-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.geography-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.geography-page .stat-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 1rem 0.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.geography-page .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.geography-page .stat-label {
    font-size: 0.75rem;
    color: #555;
    margin-top: 0.3rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .geography-page .editorial-container {
        padding: 0 1rem;
    }

    .geography-page .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .geography-page .grid-3-cols {
        grid-template-columns: 1fr !important;
    }

    .geography-page .editorial-note {
        padding: 2rem 1.5rem;
    }

    .geography-page .grid-2 {
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .geography-page .shining-blue-text {
        font-size: 1.4rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .geography-page .section-header h2,
    .geography-page .heading-bright-blue {
        font-size: 1.5rem !important;
    }

    .geography-page .stat-number {
        font-size: 1.5rem;
    }
}

/* About page styles (scoped to avoid affecting other pages) */
.about-page .about-hero {
    height: 62vh;
    background-image: url('../assets/images/about-hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.about-page .about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 21, 41, 0.35) 0%, rgba(6, 21, 41, 0.6) 60%);
    z-index: 1;
}

.about-page .about-hero .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: left;
}

.about-page .about-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin-bottom: 0.5rem;
    color: var(--color-white);
    line-height: 1.05;
}

.about-page .about-hero p.lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    max-width: 70ch;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.about-page {
    /* offset content to account for fixed nav */
    padding-top: 5.25rem;
}

.about-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.25rem;
    align-items: start;
    max-width: 1100px;
    margin: -1.5rem auto 2.5rem;
    padding: 0 1.25rem;
    z-index: 3;
    position: relative;
}

.about-page .about-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(11, 13, 18, 0.06);
    color: var(--color-heading);
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.about-page .value {
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(250, 250, 250, 1), rgba(245, 247, 250, 1));
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.about-page .team-member {
    text-align: center;
    padding: 1rem;
}

.about-page .team-member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.about-page .stats {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.about-page .stat {
    flex: 1;
    min-width: 0;
    background: linear-gradient(180deg, #fff, #fbfbfd);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(11, 13, 18, 0.04);
}

.about-page .cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.about-page .btn-primary {
    background: var(--color-primary);
    color: white;
    padding: .8rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
}

.about-page .sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.about-page .sidebar-list li {
    background: linear-gradient(180deg, #fff, #fafafa);
    padding: .8rem 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(11, 13, 18, 0.04);
}

@media (max-width: 900px) {
    .about-page {
        padding-top: 4.5rem;
    }

    .about-page .about-grid {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .about-page .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .about-card {
        padding: 1.25rem;
    }
}

@media (max-width: 700px) {
    .about-page .stats {
        flex-direction: column;
        gap: .75rem;
    }

    .about-page .about-hero .hero-inner {
        padding: 2.5rem 1rem;
    }

    .about-page .team-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-grid {
        margin: 0.25rem auto 1.5rem;
        gap: 1rem;
    }

    .about-page .btn-primary {
        padding: .6rem .9rem;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #E0F2FE;
    border-bottom-color: #007bff;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Boxed Light Blue Footer Redesign */
.footer-main {
    position: relative;
    max-width: 1540px; /* Matching container width approx */
    margin: 6rem auto 2rem !important; /* Boxed version, centered */
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    color: #0c4a6e !important; /* Deep Blue text */
    padding: 4rem 2rem 2.5rem !important;
    border-radius: 2.5rem !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    overflow: hidden;
    font-family: var(--font-body);
    box-shadow: 0 20px 50px -10px rgba(0, 50, 100, 0.06) !important;
}

.footer-watermark-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: auto;
    opacity: 0.12 !important;
    pointer-events: none;
    z-index: 0;
    filter: saturate(0.5);
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-inner {
    position: relative;
    z-index: 1; /* Content above watermark */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-main::before, .footer-main::after {
    display: none !important; /* Clear old metallic overlays */
}

.footer-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at 20% 50%, rgba(255, 223, 100, 0.35), transparent 60%),
        radial-gradient(600px circle at 80% 30%, rgba(250, 200, 80, 0.25), transparent 55%);
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    height: auto;
    max-height: 120px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(100, 60, 0, 0.3));
}

.footer-tagline {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #3d1f00;
    max-width: 360px;
    font-weight: 500;
}

.footer-nav {
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 0.65rem 2.2rem;
    justify-items: center;
}

.footer-link {
    color: #2d1500;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #C2410C;
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: right;
    align-items: flex-end;
}

.footer-contact-item {
    font-size: 0.95rem;
    color: #2d1500;
    font-weight: 500;
}

.footer-contact-item span {
    color: rgba(60, 30, 0, 0.7);
    margin-right: 0.35rem;
}

.footer-contact-item a {
    color: #1a0800;
    font-weight: 700;
    margin-left: 0.4rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #C2410C;
}

.footer-main a {
    color: inherit;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: #1a0800;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3d1f00;
    max-width: 320px;
    font-weight: 500;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-col-left,
.footer-col-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(100, 60, 0, 0.2);
    padding-top: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: #5c3000;
    font-weight: 500;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        justify-items: center;
    }

    .footer-contact {
        text-align: center;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col-left,
    .footer-col-right {
        align-items: center;
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .footer-desc {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Distance Matrix Page Redesign
   ========================================= */

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    margin-top: -3rem;
    /* Overlap header slightly */
    position: relative;
    z-index: 20;
}

[data-theme="dark"] .glass-panel {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.controls-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.search-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .search-input {
    background: #0f172a;
    border-color: #334155;
    color: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.1);
}

.filters-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.8rem 2.5rem 0.8rem 1.25rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background-color: white;
    font-size: 0.95rem;
    color: var(--color-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    min-width: 180px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .filter-select {
    background-color: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.filter-select:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.distance-card {
    background: var(--color-card-bg);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

[data-theme="dark"] .distance-card {
    border-color: rgba(255, 255, 255, 0.05);
}

.distance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--color-primary);
}

.card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .card-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.distance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-text);
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

[data-theme="dark"] .distance-badge {
    background: #334155;
}

.distance-badge i {
    color: var(--color-primary);
}

.distance-badge.near {
    color: #16a34a;
    /* Green for near places */
}

.distance-badge.near i {
    color: #16a34a;
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.place-name {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--color-heading);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
}

[data-theme="dark"] .info-row {
    color: #94a3b8;
}

.info-row i {
    color: var(--color-primary);
    margin-top: 0.2rem;
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

.info-row.remark {
    font-style: italic;
    font-size: 0.9rem;
    background: rgba(255, 247, 237, 0.5);
    /* Light orange tint */
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

[data-theme="dark"] .info-row.remark {
    background: rgba(251, 146, 60, 0.1);
}

.card-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(248, 250, 252, 0.5);
}

[data-theme="dark"] .card-footer {
    border-top-color: rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.3);
}

.btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: var(--color-text);
    color: var(--color-bg);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-directions:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 4rem 1rem;
    color: #64748b;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .grid-2,
    .grid-3,
    .grid-3-cols,
    .grid-4,
    .grid-5,
    .grid-6 {
        grid-template-columns: 1fr !important;
        min-width: 0;
    }

    .masonry-gallery {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .controls-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-wrapper {
        width: 100%;
    }

    .filter-select {
        flex: 1;
        width: auto;
        min-width: 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .glass-panel {
        padding: 1rem;
        margin-top: -2rem;
    }
}

.destination-hero h1 {
    font-family: var(--font-heading);
}

/* =========================================
   PROJECT-WIDE BACKGROUND OVERRIDE
   Light Blue -> Light Red
   ========================================= */

:root {
    --mesh-light-blue: #e0f2fe;
    --mesh-light-red:  #ffe4e6;
    
    --vibrant-gradient: linear-gradient(135deg, var(--mesh-light-blue) 0%, var(--mesh-light-red) 100%);
}

/* 1. Body Background */
body {
    background: var(--vibrant-gradient) fixed !important;
    background-color: #ffffff !important;
    color: #1e293b !important;
}

/* 2. Transparency to reveal background */
main, 
section, 
.section,
.diversity-strip,
.diversity-card,
.dashboard-panel,
.diversity-grid,
.travel-dashboard,
.stay-section,
#culture,
#destinations,
#guide {
    background: transparent !important;
    background-color: transparent !important;
}

/* 3. Hero Section: Show image while keeping background visible
   NOTE: Scope this override to index page only so other pages
   (e.g., landscapes/bookings) can use their own hero backgrounds. */
.index-page header.hero {
    background: transparent !important;
    position: relative;
    overflow: hidden;
    min-height: 75vh;
}

.index-page header.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 1 !important; /* SHOW IMAGE */
    z-index: -1;
}

/* Add a soft overlay to the image to blend with background if needed, 
   but user wants to SEE the image, so we keep it clear. */
header.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 0;
    pointer-events: none;
}

/* 4. Glassmorphism for containers */
.diversity-card, 
.dashboard-panel, 
.card-content, 
.stay-grid > div,
.highlight-card {
    background: rgba(255, 255, 255, 0.6) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 1.5rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05) !important;
}

/* 5. Navbar */
nav {
    background: rgba(255, 255, 255, 0.7) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
}

/* =========================================
   Uniform Hero Sizing (match main page hero)
   ========================================= */
:root {
    --uniform-hero-height: 75vh;
}

header.hero,
.destination-hero,
.bookings-page .booking-hero,
.landscapes-page .landscape-hero,
.about-page .about-hero {
    height: var(--uniform-hero-height) !important;
    min-height: var(--uniform-hero-height) !important;
}



/* Lightbox System */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    color: black;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    color: white;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    pointer-events: none;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
}
