/* ================================================================
   DESIGN SYSTEM & VARIABLES
   ================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #E85D26;
    --primary-light: #FF8552;
    --primary-dark: #C64115;
    --secondary: #0D4F4F;
    --accent: #D4A03C;
    --accent-light: #F2CA7E;

    --bg-primary: #F9F5E7; /* Cream background from screenshot */
    --bg-secondary: #F2F0E6; 
    --bg-dark-green: #233931; /* Restored back to professional dark green */
    --card-bg: #FFFFFF;

    --text-primary: #1A1A2E;
    --text-secondary: #4A4A68;
    --text-muted: #8C8C9A;
    --text-light: #F9F5E7;

    --border: #E5E7EB;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-arch: 200px 200px 0 0;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   BASE STYLES & TYPOGRAPHY
   ========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary); /* Global cream background */
    color: var(--text-primary);
    overflow-x: clip;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ================================================================
   NAVBAR (GLASSMORPHISM)
   ================================================================ */
.navbar {
    background: var(--bg-dark-green);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: var(--transition);
    z-index: 9999; /* Ensure it's above everything */
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(35, 57, 49, 1); /* Solid at scroll */
    backdrop-filter: blur(12px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 2.8rem; /* Updated to 2.8rem */
    color: var(--text-light);
    margin-right: 2rem; /* Give some space */
}

/* Map Overlay Controls */
.map-overlay-controls {
    position: absolute;
    bottom: 100px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #444;
}

.map-control-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.map-control-btn.active {
    background: var(--primary);
    color: white;
}

/* 🆕 Map Toolbar Horizontal */
.map-toolbar-horizontal {
    display: flex !important;
    flex-direction: row;
    background: white;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border: none !important;
}

.toolbar-btn {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #444;
    text-decoration: none !important;
    border-right: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    background: white;
}

.toolbar-btn:last-child {
    border-right: none;
}

.toolbar-btn:hover {
    background: #f8f9fa;
    color: var(--primary);
}

.toolbar-btn i {
    font-size: 17px;
}

/* Hide default geocoder icon but keep functionality */
.leaflet-control-geocoder-icon {
    display: none !important;
}

.leaflet-control-geocoder {
    margin-left: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.leaflet-control-geocoder-form {
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    margin-left: 10px !important;
}

.brand-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.brand-accent {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(232, 93, 38, 0.1);
}

/* Navbar Search */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 50px;
    padding: 8px 16px;
    width: 250px;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.search-wrapper:focus-within {
    width: 300px;
    border-color: var(--primary);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(232, 93, 38, 0.1);
}

.search-icon {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-input {
    border: none;
    background: transparent;
    padding: 0 10px;
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
}

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

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(13, 79, 79, 0.75) 0%,
            rgba(26, 26, 46, 0.60) 50%,
            rgba(26, 26, 46, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #fdf9f9e4;
    border: 1px solid rgba(122, 93, 93, 0.877);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-highlight {
    background: linear-gradient(120deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 93, 38, 0.3);
    color: #fff;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(232, 93, 38, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ================================================================
   CATEGORIES SECTION
   ================================================================ */
.categories-section {
    padding: 80px 0 60px;
    background: var(--bg-primary);
}

/* Universal Image Fitting System - Production Level Implementation */
.img-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Square Image Container */
.img-square {
    aspect-ratio: 1 / 1;
}

/* Portrait Image Container */
.img-portrait {
    aspect-ratio: 3 / 4;
}

/* Landscape Image Container */
.img-landscape {
    aspect-ratio: 16 / 9;
}

/* Wide Landscape Image Container */
.img-wide {
    aspect-ratio: 21 / 9;
}

/* Hero Image Container */
.img-hero {
    aspect-ratio: 16 / 10;
}

/* Thumbnail Image Container */
.img-thumb {
    aspect-ratio: 4 / 3;
}

/* Gallery Image Container */
.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.pd-gallery-grid .img-container {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pd-gallery-grid .img-container:hover {
    transform: scale(1.05);
}

/* Category Card Image Container */
.category-img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
}

.category-img-wrap:hover img {
    transform: scale(1.08);
}

.categories-scroll {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    width: 100%;
    max-width: 350px;
    min-height: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: #fff;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: #f5f5f5;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
}

.category-card:hover .category-img-wrap img {
    transform: scale(1.1);
}

.hill-icon {
    background: #E8F5E9;
    color: #2E7D32;
}

.beach-icon {
    background: #E3F2FD;
    color: #1565C0;
}

.heritage-icon {
    background: #FFF3E0;
    color: #EF6C00;
}

.pilgrim-icon {
    background: #F3E5F5;
    color: #7B1FA2;
}

.city-icon {
    background: #FCE4EC;
    color: #C2185B;
}

.category-card h6 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.category-card p {
    font-size: 0.85rem;
    color: #70757a;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ================================================================
   DESTINATIONS CAROUSEL
   ================================================================ */
/* ── Arch Destination Design ── */
.destinations-section {
    padding: 100px 0;
    background: var(--bg-dark-green);
}

.swiper-arch {
    padding: 20px 0 50px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.swiper-arch .swiper-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .swiper-arch .swiper-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.swiper-arch .swiper-slide {
    padding: 10px;
    height: auto;
    width: auto;
}

.swiper-arch .swiper-slide .arch-card {
    width: 100%;
}

.destinations-section .section-title {
    color: var(--text-light);
}

.destinations-section .section-subtext {
    color: rgba(249, 245, 231, 0.7);
}

.arch-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.arch-card {
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: var(--transition);
    padding: 10px;
}

.arch-card:hover {
    transform: translateY(-10px);
}

.arch-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-arch);
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a2a24; /* Placeholder background */
}

.arch-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.arch-card:hover .arch-img-box img {
    transform: scale(1.1);
}

.arch-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.arch-content p {
    font-size: 0.95rem;
    color: rgba(249, 245, 231, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.arch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.arch-link:hover {
    gap: 12px;
    color: #fff;
}

/* ── Swiper Custom Nav ── */
.swiper-button-prev, .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff !important;
    transition: var(--transition);
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ── Stories Section Updates ── */
.stories-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.swiper-stories .swiper-slide, .swiper-arch .swiper-slide {
    padding: 15px;
    height: auto;
}

.swiper-stories, .swiper-arch {
    padding-bottom: 60px !important;
}

.story-card {
    position: relative;
    height: 450px;
    border-radius: 40px; /* More rounded as per modern premium look */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: #fff !important;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.story-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    z-index: 1;
}

.story-card:hover .story-card-bg {
    transform: scale(1.1);
}

.story-card-overlay {
    position: relative;
    z-index: 2;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
    transition: var(--transition);
}

.story-card:hover .story-card-overlay {
    padding-bottom: 40px;
}

.story-location {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-top: 5px;
    font-weight: 700;
}

.story-card h5 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}


/* ============================================ */
/* CULTURAL HERITAGE - PREMIUM GRID             */
/* ============================================ */
.culture-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.culture-grid-wrap {
    margin-top: 20px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

@media (min-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 280px;
    }

    .culture-card-lg {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.culture-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.culture-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.culture-card:hover .culture-img {
    transform: scale(1.1);
}

.culture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s ease;
}

.culture-card:hover .culture-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.culture-icon {
    font-size: 2rem;
    color: var(--primary, #e85d26);
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.culture-overlay h6 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.culture-overlay p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .culture-card:hover .culture-overlay p {
        opacity: 0.9;
        transform: translateY(0);
    }

    .culture-card-lg .culture-overlay h6 { font-size: 2rem; }
    .culture-card-lg .culture-overlay p { font-size: 1rem; }
    .culture-card-lg .culture-icon { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .culture-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    @media (min-width: 480px) { .culture-grid { grid-template-columns: repeat(2, 1fr); } }
    .culture-card { height: 250px; }
    .culture-overlay p { opacity: 0.85; transform: translateY(0); font-size: 0.8rem; }
    .culture-overlay h6 { font-size: 1.1rem; }
}

/* ================================================================
   EXPLORER MODAL
   ================================================================ */
.explorer-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--bg-primary);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.explorer-modal.show {
    display: block;
    opacity: 1;
}

.modal-body {
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    height: 100vh;
}

.modal-sidebar {
    background: var(--card-bg);
    border-right: 1px solid var(--border);
    height: 100vh;
    overflow: hidden;
}

.modal-content {
    background: var(--bg-secondary);
    height: 100vh;
    overflow-y: auto;
    padding: 40px;
}

.modal-right {
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
}

/* ================================================================
   EXPLORER CONTENT DETAILS
   ================================================================ */
.explorer-detail {
    animation: fadeIn 0.5s ease;
}

.place-header {
    margin-bottom: 30px;
}

.ph-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.ph-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.place-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.pg-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    aspect-ratio: 16 / 10;
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.pg-item:hover img {
    transform: scale(1.05);
}

.place-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.ph-list,
.pt-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.ph-list li,
.pt-list li {
    background: var(--card-bg);
    padding: 12px 15px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ph-list li i {
    color: var(--primary);
}

.pt-list li i {
    color: var(--accent);
}

/* Quick Info Section */
.info-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-row i {
    width: 40px;
    height: 40px;
    background: rgba(232, 93, 38, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* FAQ Accordion Styles */
.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #1abc9c;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer div {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.info-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: #0D1117;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand i {
    color: var(--primary);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
    margin-top: 16px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-color: var(--primary);
}

.btn-subscribe {
    background: var(--primary);
    color: #fff;
    border-radius: 0 50px 50px 0;
    padding: 0 24px;
    border: none;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--primary-light);
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   MOBILE (BASE)
   ========================================================= */
@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; }
    .pd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-main-content { padding: 20px; }
    .mobile-action-bar {
        position: fixed; bottom: 0; width: 100%;
        background: var(--card-bg); padding: 10px;
        display: flex; justify-content: space-around;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }
}

/* ================================================================
   EXPLORER MODAL — UI POLISH
   ================================================================ */
.modal-body {
    grid-template-columns: 280px 1fr 320px;
    gap: 0;
    height: 100vh;
    background: #F3F4F6;
}

.modal-sidebar { background: #FFFFFF; border-right: 1px solid #E5E7EB; }
.modal-sidebar .explorer-sidebar { background: #FFFFFF; border-radius: 0; box-shadow: none; border: none; }
.sidebar-categories { background: #F8FAFC; border-bottom: 1px solid #E5E7EB; padding: 16px; }
.sidebar-places { padding: 8px 12px; scrollbar-width: thin; scrollbar-color: #E5E7EB transparent; }
.sidebar-places::-webkit-scrollbar { width: 4px; }
.sidebar-places::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 4px; }

.place-card-btn { padding: 10px 12px; border-radius: 10px; border: 1.5px solid transparent; background: transparent; margin-bottom: 4px; transition: all 0.2s ease; }
.place-card-btn:hover { background: #F9FAFB; border-color: #E5E7EB; }
.place-card-btn.active { background: #FFF7ED; border-color: #E85D26; box-shadow: 0 2px 8px rgba(232, 93, 38, 0.08); }
.place-card-thumb { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.place-card-name { font-size: 0.88rem; font-weight: 600; color: #1F2937; margin-bottom: 1px; }
.place-card-cat { font-size: 0.72rem; color: #6B7280; margin-top: 0; }
.place-card-arrow { font-size: 0.7rem; color: #D1D5DB; transition: all 0.2s ease; }
.place-card-btn:hover .place-card-arrow, .place-card-btn.active .place-card-arrow { transform: translateX(3px); color: #E85D26; }

.cat-pill { padding: 5px 12px; border-radius: 20px; border: 1.5px solid #E5E7EB; background: transparent; font-size: 0.75rem; font-weight: 500; color: #6B7280; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 5px; font-family: 'Poppins', sans-serif; white-space: nowrap; }
.cat-pill:hover { border-color: #E85D26; color: #E85D26; background: #FFF7ED; }
.cat-pill.active { background: #E85D26; border-color: #E85D26; color: #fff; box-shadow: 0 2px 8px rgba(232, 93, 38, 0.2); }
.cat-pill i { font-size: 0.65rem; }

.modal-content { background: #F3F4F6; overflow-y: auto; padding: 24px 28px 40px; scrollbar-width: thin; scrollbar-color: #D1D5DB transparent; }
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 6px; }
.modal-content .explorer-content { background: #FFFFFF; border-radius: 16px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); border: 1px solid #E5E7EB; min-height: auto; overflow: hidden; }
.modal-content .explorer-placeholder { min-height: 60vh; background: #FFFFFF; border-radius: 16px; }

.place-header { padding: 28px 28px 0; }
.ph-title { font-size: 1.9rem; font-weight: 800; color: #111827; margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.3px; }
.ph-meta { display: flex; gap: 16px; flex-wrap: wrap; color: #6B7280; font-size: 0.85rem; margin-bottom: 8px; }
.ph-meta span { display: inline-flex; align-items: center; gap: 6px; background: #F3F4F6; padding: 5px 14px; border-radius: 20px; font-weight: 500; }
.ph-meta i { color: #E85D26; font-size: 0.75rem; }

.place-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 28px 28px; }
.pg-item { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; cursor: zoom-in; position: relative; border: 1px solid #E5E7EB; }
.pg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pg-item:hover img { transform: scale(1.06); }

.pd-section-title { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #F3F4F6; }
.pd-section-title i { font-size: 0.9rem; color: #E85D26; }

.place-description { padding: 0 28px 28px; }
.place-description p { font-size: 0.92rem; color: #4B5563; line-height: 1.8; margin: 0; }

.place-highlights { padding: 0 28px 28px; }
.ph-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ph-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #374151; background: #F9FAFB; padding: 12px 16px; border-radius: 10px; border: 1px solid #F3F4F6; transition: all 0.2s ease; }
.ph-list li:hover { border-color: #FED7AA; background: #FFFBEB; transform: translateY(-1px); }
.ph-list li i { color: #E85D26; font-size: 0.6rem; flex-shrink: 0; }

.place-todo { padding: 0 28px 28px; }
.pt-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pt-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #374151; background: #F9FAFB; padding: 12px 16px; border-radius: 10px; border: 1px solid #F3F4F6; transition: all 0.2s ease; }
.pt-list li:hover { border-color: #D1FAE5; background: #ECFDF5; transform: translateY(-1px); }
.pt-list li i { color: #0D9488; font-size: 0.6rem; flex-shrink: 0; }

.modal-right { background: #F3F4F6; border-left: 1px solid #E5E7EB; padding: 20px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #D1D5DB transparent; }
.modal-right::-webkit-scrollbar { width: 4px; }
.modal-right::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 4px; }
.modal-right .unified-info-card { background: #FFFFFF; border-radius: 16px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); border: 1px solid #E5E7EB; overflow: hidden; position: sticky; top: 20px; transition: box-shadow 0.2s ease; }
.modal-right .unified-info-card:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }

.map-section { height: 280px; border-bottom: 1px solid #E5E7EB; position: relative; background: #F9FAFB; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }
.map-section .map-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #9CA3AF; background: #F9FAFB; }
.map-section .map-placeholder i { font-size: 2.5rem; margin-bottom: 8px; opacity: 0.3; }
.map-section .map-placeholder p { font-size: 0.88rem; font-weight: 500; margin: 0; color: #9CA3AF; }

.info-section { padding: 16px; display: flex; flex-direction: column; gap: 2px; }
.info-row { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 10px; transition: background 0.2s ease; }
.info-row:hover { background: #F9FAFB; }
.info-row:last-child { border-bottom: none; padding-bottom: 14px; }
.info-row>i { width: 36px; height: 36px; background: #FFF7ED; color: #E85D26; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; margin-top: 0; }
.info-row .info-label { display: block; font-size: 0.68rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 1px; }
.info-row .info-value { display: block; font-size: 0.85rem; font-weight: 600; color: #111827; line-height: 1.35; }

.explorer-detail { animation: modalFadeIn 0.4s ease-out; }

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.explorer-placeholder { min-height: 60vh; background: #FFFFFF; border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.placeholder-visual { position: relative; width: 90px; height: 90px; margin-bottom: 28px; }
.placeholder-map-icon { width: 100%; height: 100%; border-radius: 50%; background: #F9FAFB; border: 2px solid #E5E7EB; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #D1D5DB; position: relative; z-index: 2; }
.ping-ring { position: absolute; inset: -12px; border-radius: 50%; border: 2px solid #E85D26; animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.5; } 75%, 100% { transform: scale(1.5); opacity: 0; } }
.explorer-placeholder h4 { font-weight: 700; font-size: 1.25rem; color: #111827; margin-bottom: 8px; }
.explorer-placeholder p { color: #9CA3AF; font-size: 0.9rem; max-width: 280px; margin: 0 0 20px; line-height: 1.5; }
.placeholder-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: #E85D26; animation: bounceLeft 1.5s ease-in-out infinite; }
@keyframes bounceLeft { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-8px); } }

.reviews-section { padding: 0 28px 28px; border-top: 2px solid #F3F4F6; margin-top: 4px; padding-top: 24px; }
.section-subtitle { font-size: 0.95rem; font-weight: 700; color: #111827; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.section-subtitle i { color: #E85D26; }
.reviews-list { margin-bottom: 24px; }
.review-card { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid #F3F4F6; transition: background 0.2s ease; }
.review-card:last-child { border-bottom: none; }
.review-card:hover { background: #FAFAFA; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #E85D26, #C44A1A); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.review-body { flex: 1; }
.review-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.review-name { font-weight: 700; font-size: 0.88rem; color: #111827; }
.review-date { font-size: 0.75rem; color: #9CA3AF; font-weight: 500; }
.review-text { font-size: 0.88rem; color: #4B5563; line-height: 1.6; margin: 0; }
.review-image-wrap { margin-top: 10px; }
.review-image-wrap img { max-width: 180px; max-height: 130px; border-radius: 10px; object-fit: cover; cursor: zoom-in; border: 1px solid #E5E7EB; transition: all 0.2s ease; }
.review-image-wrap img:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }

.empty-reviews { text-align: center; padding: 36px 20px; color: #9CA3AF; }
.empty-reviews i { font-size: 2rem; opacity: 0.2; display: block; margin-bottom: 12px; }
.empty-reviews p { font-size: 0.88rem; margin: 0; }

.review-form-wrapper { background: #F9FAFB; border-radius: 14px; padding: 24px; border: 1px solid #E5E7EB; }
.review-form-title { font-weight: 700; font-size: 0.9rem; color: #111827; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.review-input { border: 1.5px solid #E5E7EB; border-radius: 10px; padding: 11px 14px; font-family: 'Poppins', sans-serif; font-size: 0.88rem; color: #111827; transition: all 0.2s ease; background: #FFFFFF; }
.review-input:focus { outline: none; border-color: #E85D26; box-shadow: 0 0 0 3px rgba(232, 93, 38, 0.08); }
.review-upload-label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #FFFFFF; border: 1.5px dashed #D1D5DB; border-radius: 10px; cursor: pointer; font-size: 0.82rem; font-weight: 500; color: #6B7280; transition: all 0.2s ease; }
.review-upload-label:hover { border-color: #E85D26; color: #E85D26; background: #FFF7ED; }
.review-file-input { display: none; }
.review-upload-hint { display: block; margin-top: 6px; font-size: 0.72rem; color: #9CA3AF; }

.btn-review-submit { background: #E85D26; color: #fff; padding: 11px 24px; border-radius: 10px; font-weight: 600; font-size: 0.88rem; border: none; transition: all 0.2s ease; font-family: 'Poppins', sans-serif; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.btn-review-submit:hover { background: #C44A1A; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(232, 93, 38, 0.3); color: #fff; }
.btn-review-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.explorer-loader { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; color: #9CA3AF; gap: 12px; }
.explorer-loader.show { display: flex; }
.loader-ring { width: 36px; height: 36px; border: 3px solid #E5E7EB; border-top-color: #E85D26; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.modal-close-btn { position: absolute; top: 16px; right: 16px; z-index: 10; display: flex; align-items: center; gap: 8px; background: #FFFFFF; color: #6B7280; border: 1px solid #E5E7EB; padding: 8px 16px; border-radius: 10px; font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.2s ease; font-family: 'Poppins', sans-serif; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.modal-close-btn:hover { background: #FEE2E2; color: #DC2626; border-color: #FECACA; }

@media (max-width: 1199.98px) { .modal-body { grid-template-columns: 240px 1fr 280px; } }
@media (max-width: 991.98px) {
    .modal-body { grid-template-columns: 1fr; height: auto; }
    .modal-sidebar { height: auto; max-height: 45vh; border-right: none; border-bottom: 1px solid #E5E7EB; }
    .modal-sidebar .explorer-sidebar { max-height: 45vh; }
    .modal-content { height: auto; max-height: none; overflow: visible; padding: 16px 14px 20px; }
    .modal-content .explorer-content { border-radius: 14px; }
    .modal-right { height: auto; border-left: none; border-top: 1px solid #E5E7EB; padding: 16px; }
    .modal-right .unified-info-card { position: static; }
    .modal-close-btn span { display: none; }
    .modal-close-btn { padding: 10px; border-radius: 50%; }
    .ph-list, .pt-list { grid-template-columns: 1fr; }
    .place-gallery { grid-template-columns: repeat(2, 1fr); padding: 0 14px 14px; }
    .ph-title { font-size: 1.6rem; }
    .pd-section-title { font-size: 0.95rem; }
}
@media (max-width: 575.98px) {
    .modal-content { padding: 12px 12px 16px; }
    .place-header { padding: 20px 16px 0; }
    .ph-title { font-size: 1.4rem; }
    .place-gallery, .place-highlights, .place-description, .place-todo { padding: 0 16px 16px; }
    .ph-list, .pt-list { grid-template-columns: 1fr; gap: 8px; }
    .reviews-section { padding: 0 16px 16px; border-top: 1px solid #F3F4F6; padding-top: 20px; }
    .review-form-wrapper { padding: 16px; border-radius: 12px; }
    .pg-item { aspect-ratio: 4/3; border-radius: 10px; }
    .info-section { padding: 12px; }
    .info-row { padding: 10px 12px; }
}


/* ================================================
   REVIEWS PAGE (Updated to Green Theme)
   ================================================ */
.review-page-hero {
    padding: 120px 0 80px;
    background: var(--secondary); /* Dark Green Hero */
    position: relative;
    overflow: hidden;
}

.review-page-hero .rph-title { color: #fff; }
.review-page-hero .rph-desc { color: rgba(255,255,255,0.8); }
.review-page-hero .btn-rph-cta { background: var(--primary); color: #fff; border: none; }

.review-stats-section { 
    padding: 80px 0 60px; 
    background: #1A2E28; /* Darker Green */
    position: relative; 
}

.review-stats-section .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.review-stats-section .stat-number { color: #0f0c0c; }
.review-stats-section .stat-label { color: rgba(10, 9, 9, 0.6); }

.submit-review-section { 
    padding: 100px 0; 
    background: var(--secondary); 
    position: relative; 
}

.all-reviews-section { 
    padding: 100px 0; 
    background: var(--bg-primary); 
}

.all-reviews-section .section-title { color: var(--text-primary); }
.all-reviews-section .section-subtext { color: var(--text-muted); }

.review-masonry-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.review-page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}

.review-page-hero .container {
    position: relative;
    z-index: 2;
}

.rph-content { max-width: 600px; }
.rph-badge { display: inline-flex; align-items: center; background: rgba(232, 93, 38, 0.2); border: 1px solid rgba(232, 93, 38, 0.3); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; color: var(--primary-light, #FF8552); letter-spacing: 1px; text-transform: uppercase; }
.rph-title { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
.rph-desc { font-size: 1.1rem; color: rgba(255, 255, 255, 0.75); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }

.btn-rph-cta { background: #fff; color: var(--secondary); padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; border: 2px solid rgba(255, 255, 255, 0.2); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.btn-rph-cta:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232, 93, 38, 0.4); color: #fff; }


.review-stats-section { padding: 80px 0 60px; background: var(--bg-primary); position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1px solid var(--border); transition: transform 0.3s ease; box-shadow: var(--shadow-sm); }
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.stat-icon-wrap { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 16px; }
.stat-icon-wrap.hill-icon { background: rgba(34, 197, 94, 0.1); color: #22C55E; }
.stat-icon-wrap.beach-icon { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.stat-icon-wrap.heritage-icon { background: rgba(212, 160, 60, 0.1); color: #D4A03C; }
.stat-icon-wrap.pilgrim-icon { background: rgba(168, 85, 247, 0.1); color: #A855F7; }
.stat-icon-wrap.city-icon { background: rgba(236, 72, 153, 0.1); color: #EC4899; }
.stat-text { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; }
.stat-label { display: block; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; }


.submit-review-section { padding: 80px 0; background: var(--bg-primary); position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.submit-review-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--primary), var(--accent)); }

.submit-form-card { background: var(--card-bg); border-radius: var(--radius-xl); padding: 40px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); border: 1px solid var(--border); position: relative; }
.srf-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; color: var(--text-primary); }
.srf-header i { font-size: 1.4rem; color: var(--primary); }
.srf-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.srf-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.srf-input { width: 100%; padding: 13px 18px; border: 2px solid var(--border); border-radius: 12px; background: var(--bg-primary); font-family: 'Poppins', sans-serif; font-size: 0.92rem; color: var(--text-primary); transition: all 0.2s ease; }
.srf-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232, 93, 38, 0.08); background: #fff; }
.srf-input::placeholder { color: var(--text-muted); }

select.srf-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M2 2L6 6L4 4V0h-4z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

.srf-textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: 12px; background: var(--bg-primary); font-family: 'Poppins', sans-serif; font-size: 0.92rem; color: var(--text-primary); resize: vertical; min-height: 140px; line-height: 1.7; transition: all 0.2s ease; }
.srf-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232, 93, 38, 0.08); background: #fff; }

.upload-area { position: relative; border: 2px dashed var(--border); border-radius: 16px; padding: 30px; text-align: center; cursor: pointer; transition: all 0.3s ease; background: var(--bg-primary); display: block; width: 100%; }
.upload-area:hover { border-color: var(--primary); background: #FFF7ED; }
.upload-area:hover .upload-icon { transform: translateY(-4px); }
.upload-content { display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; transition: all 0.2s ease; }
.upload-content i { font-size: 1.4rem; color: var(--primary); }
.upload-text { font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); }
.upload-name { display: none; font-size: 0.78rem; font-weight: 500; color: var(--primary); margin-top: 2px; }
.upload-area.has-file .upload-text { display: none; }
.upload-area.has-file .upload-name { display: block; }
.upload-area.has-file .upload-icon { display: none; }
.upload-area.has-file { border-color: var(--primary); background: #FFF7ED; border-style: solid; padding: 20px; }
.srf-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.srf-success { text-align: center; padding: 40px 20px; display: none; }
.success-icon-wrap { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #22C55E, #16A34A); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon-wrap i { font-size: 2.5rem; color: #fff; }
.srf-success h4 { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.srf-success p { color: var(--text-secondary); margin: 0; }

.btn-srf-submit { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 14px 32px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; border: none; transition: all 0.3s ease; font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-srf-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232, 93, 38, 0.35); color: #fff; }
.btn-srf-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }


.all-reviews-section { padding: 80px 0 100px; background: var(--bg-primary); }
.reviews-masonry { columns: 2; column-gap: 28px; }
.review-masonry-card { 
    background: #fff; 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
    border: 1px solid var(--border); 
    break-inside: avoid; 
    transition: all 0.4s ease; 
    padding: 32px; 
    margin-bottom: 28px;
}
.review-masonry-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--primary); }
.rmc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.rmc-avatar { width: 50px; height: 50px; border-radius: 15px; background: linear-gradient(135deg, var(--primary), #D14D1A); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.rmc-name { font-size: 1.1rem; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.rmc-place { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.rmc-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.rmc-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin: 0; font-style: italic; }
.rmc-photo { margin-top: 20px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); cursor: zoom-in; }
.rmc-photo img { width: 100%; height: auto; max-height: 300px; object-fit: cover; display: block; transition: 0.6s; }
.review-masonry-card:hover .rmc-photo img { transform: scale(1.05); }

.all-reviews-section .empty-reviews { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.all-reviews-section .empty-reviews i { font-size: 3rem; opacity: 0.2; display: block; margin-bottom: 16px; }
.all-reviews-section .empty-reviews h4 { font-weight: 700; font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 8px; }
.all-reviews-section .empty-reviews p { font-size: 0.95rem; margin: 0; }

.back-home-section { padding: 60px 0 100px; background: var(--bg-secondary); }
.btn-back-home { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--text-primary); padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.92rem; border: 2px solid var(--border); transition: all 0.3s ease; text-decoration: none; font-family: inherit; cursor: pointer; }
.btn-back-home:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(232, 93, 38, 0.3); color: #fff; }

@media (max-width: 991.98px) {
    .rph-title { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-masonry { columns: 1; }
    .review-masonry-card { break-inside: avoid; }
}
@media (max-width: 575.98px) {
    .review-page-hero { padding: 100px 0 50px; }
    .rph-title { font-size: 2rem; }
    .rph-desc { font-size: 0.95rem; margin-bottom: 22px; }
    .rph-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 16px; }
    .btn-rph-cta { padding: 11px 24px; font-size: 0.88rem; }
    .review-stats-section { padding: 40px 0 30px; }
    .submit-review-section { padding: 48px 0; }
    .submit-form-card { padding: 24px 18px; border-radius: 18px; }
    .all-reviews-section { padding: 48px 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================
/* NAVBAR: Transparent to Blurred Dark on Scroll
/* ============================================ */
#mainNavbar {
    background-color: #111827 !important;
    transition: all 0.4s ease;
    box-shadow: none !important;
}

#mainNavbar.scrolled {
    background-color: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0 !important;
}

#mainNavbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: color 0.3s;
}

#mainNavbar .nav-link:hover {
    color: #ffffff !important;
}

#mainNavbar .navbar-brand {
    color: #ffffff !important;
    font-weight: 800;
}

/* ============================================
/* HERO STATS: Glassmorphism UI
/* ============================================ */
.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 16px;
    min-width: 120px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-stats { justify-content: center; }
    .hero-stat { padding: 15px 20px; min-width: 100px; }
    .hero-stat .stat-num { font-size: 1.5rem; }
}


/* ================================================
   STORIES / MANIFESTING MAHARASHTRA
   ================================================ */
.stories-section {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.stories-scroll-container { width: 100%; position: relative; }
.stories-row { display: flex; gap: 24px; overflow-y: hidden; scroll-behavior: smooth; padding: 10px 60px 40px; scrollbar-width: none; }
.stories-row::-webkit-scrollbar { display: none; }

.story-card {
    flex: 0 0 calc(20% - 16px);
    width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #000;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.story-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22); }

.story-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}

.story-card:hover .story-card-bg { transform: scale(1.1); }

.story-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
}

.story-cat-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff; padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; }

.story-card-overlay h5 { font-size: 1.3rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; color: #fff; }

.story-card-overlay p { font-size: 0.9rem; color: rgba(255,255,255,0.8); opacity: 0.9; transform: translateY(10px); transition: all 0.3s ease; }
.story-card:hover p { transform: translateY(0); opacity: 1; }

.story-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: none; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); z-index: 5; cursor: pointer; transition: 0.3s; }
.story-arrow:hover { background: var(--primary); color: #fff; }
.story-arrow-left { left: 10px; }
.story-arrow-right { right: 10px; }

@media (min-width: 1200px) {
    .stories-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .story-card { width: 100%; height: 380px; }
}
@media (min-width: 768px) and (max-width: 1199px) {
    .stories-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .story-card { width: 100%; height: 360px; }
}
@media (max-width: 767px) {
    .stories-row { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 10px 20px 30px; }
    .story-card { width: 100%; height: 340px; }
    .story-arrow { display: none; }
    .story-card-overlay h5 { font-size: 1.1rem; }
    .story-card-overlay p { font-size: 0.8rem; }
}


/* ================================================
   SLIDER CORE FIX
   ================================================ */
.stories-scroll-container { position: relative; overflow: hidden; width: 100%; }
.stories-row { display: flex; gap: 20px; transition: transform 0.4s ease; will-change: transform; }


/* ================================================
   STORY DETAIL PAGE — Immersive Editorial
   ================================================ */
.story-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.story-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transform: scale(1.05); animation: storyZoom 20s ease-in-out infinite alternate; }
@keyframes storyZoom { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }

.story-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,79,79,0.55) 0%, rgba(26,26,46,0.65) 40%, rgba(26,26,46,0.85) 80%, rgba(26,26,46,0.95) 100%); z-index: 1; }
.story-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.story-hero-wave svg { display: block; width: 100%; height: 80px; }

.story-back-btn { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; font-weight: 500; text-decoration: none; margin-bottom: 32px; padding: 8px 18px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(6px); transition: all 0.3s ease; }
.story-back-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }

.story-hero-badge { display: inline-flex; align-items: center; background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 28px; letter-spacing: 0.5px; }

.story-quote-wrap { position: relative; margin-bottom: 28px; padding: 0 10px; }
.story-quote-mark { font-family: 'Georgia', 'Times New Roman', serif; font-size: 10rem; line-height: 0.7; color: var(--primary); opacity: 0.25; position: absolute; user-select: none; pointer-events: none; }
.story-quote-open { top: -50px; left: -30px; }
.story-quote-close { bottom: -70px; right: -20px; }

.story-quote-headline { font-size: 3.6rem; font-weight: 900; color: #ffffff; line-height: 1.15; letter-spacing: -1px; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4); position: relative; z-index: 2; }

.story-hero-sub { font-size: 1.2rem; color: rgba(255, 255, 255, 0.8); max-width: 580px; margin: 0 auto 32px; line-height: 1.7; font-weight: 400; }

.story-place-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 12px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; text-decoration: none; backdrop-filter: blur(6px); transition: all 0.3s ease; }
.story-place-tag:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232, 93, 38, 0.3); color: #fff; }


.story-body-section { padding: 80px 0 60px; background: var(--bg-primary); }
.story-body-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.divider-line { width: 60px; height: 1px; background: var(--border); }
.divider-diamond { font-size: 0.5rem; color: var(--primary); }

.story-body-content { text-align: center; }
.story-lead { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.9; max-width: 620px; margin: 0 auto 48px; font-weight: 400; }

.story-place-card { display: flex; gap: 0; background: var(--card-bg); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); margin-bottom: 40px; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.story-place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spc-image { width: 200px; min-height: 240px; background-size: cover; background-position: center; flex-shrink: 0; }
.spc-info { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.spc-cat { display: inline-flex; align-items: center; background: rgba(232,93,38,0.1); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; width: fit-content; }
.spc-info h4 { font-size: 1.5rem; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; line-height: 1.3; }
.spc-info p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.spc-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff; padding: 10px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; text-decoration: none; width: fit-content; transition: all 0.3s ease; }
.spc-btn:hover { background: var(--primary-dark); transform: translateX(4px); color: #fff; }

.story-meta-bar { display: flex; align-items: center; justify-content: center; gap: 32px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.smb-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.smb-item i { color: var(--primary); font-size: 0.8rem; }


.story-more-section { padding: 80px 0; background: var(--bg-secondary); }
.story-more-card { display: block; border-radius: var(--radius-xl); overflow: hidden; position: relative; height: 360px; background: #000; text-decoration: none; color: inherit; box-shadow: var(--shadow-md); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.story-more-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.smc-image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.story-more-card:hover .smc-image { transform: scale(1.1); }
.smc-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }
.smc-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; margin-bottom: 12px; width: fit-content; }
.smc-overlay h5 { font-size: 1.15rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 8px; }
.smc-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin: 0; }

.story-cta-section { padding: 80px 0 100px; background: var(--bg-primary); }
.story-cta-card { background: linear-gradient(135deg, var(--secondary) 0%, #1A1A2E 100%); border-radius: var(--radius-xl); padding: 60px 40px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.story-cta-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; border-radius: 50%; background: rgba(232, 93, 38, 0.1); }
.scta-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(232, 93, 38, 0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.6rem; color: var(--primary-light); }
.story-cta-card h3 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 2; }
.story-cta-card p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 28px; position: relative; z-index: 2; }

@media (max-width: 991.98px) {
    .story-quote-headline { font-size: 2.6rem; }
    .story-quote-mark { font-size: 7rem; }
    .story-quote-open { left: -10px; top: -30px; }
    .story-quote-close { right: -5px; bottom: -50px; }
    .story-place-card { flex-direction: column; }
    .spc-image { width: 100%; min-height: 180px; }
}
@media (max-width: 767.98px) {
    .story-quote-headline { font-size: 2rem; }
    .story-quote-mark { font-size: 5rem; }
    .story-quote-open { left: 0; top: -20px; }
    .story-quote-close { right: 0; bottom: -35px; font-size: 4rem; }
    .story-hero-sub { font-size: 1rem; }
    .story-back-btn span { display: none; }
    .story-back-btn { padding: 10px 14px; border-radius: 50%; }
    .story-meta-bar { gap: 16px; }
    .story-more-card { height: 300px; }
    .story-cta-card { padding: 40px 24px; }
    .story-cta-card h3 { font-size: 1.5rem; }
}
@media (max-width: 575.98px) {
    .story-quote-headline { font-size: 1.65rem; }
    .story-quote-mark { font-size: 3.5rem; opacity: 0.2; }
    .story-quote-open { top: -15px; }
    .story-quote-close { bottom: -25px; font-size: 3rem; }
    .spc-info { padding: 20px; }
    .spc-info h4 { font-size: 1.2rem; }
}


/* ══════════════════════════════════════════════════════════════════ */
/* PLACE DETAIL — Flush Sidebar + Content Layout
/* ══════════════════════════════════════════════════════════════════ */
.pd-hero { position: relative; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; }
.pd-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: storyZoom 18s ease-in-out infinite alternate; }
.pd-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,79,79,0.4) 0%, rgba(26,26,46,0.55) 50%, rgba(26,26,46,0.88) 100%); background-size: cover; background-position: center; background-repeat: no-repeat; }
.pd-hero-inner { padding-bottom: 50px; }
.pd-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; }
.pd-hero-wave svg { display: block; width: 100%; height: 70px; }

.pd-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 0.82rem; }
.pd-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.pd-breadcrumb a:hover { color: #fff; }
.pd-breadcrumb i { font-size: 0.55rem; color: rgba(255,255,255,0.3); }
.pd-breadcrumb span { color: rgba(255,255,255,0.9); font-weight: 600; }

.pd-hero-cat { display: inline-flex; align-items: center; background: var(--primary); color: #fff; padding: 6px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; }
.pd-hero-title { font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px; letter-spacing: -1px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.pd-hero-region { font-size: 1rem; color: rgba(255,255,255,0.75); font-weight: 500; }


.pd-essential-section { padding: 0 0 36px; margin-top: -16px; position: relative; z-index: 5; }
.pd-essential-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pd-essential-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 22px 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pd-essential-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pec-icon-wrap { width: 50px; height: 50px; border-radius: 14px; background: rgba(232,93,38,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.pec-cat-icon { background: rgba(34,197,94,0.1); color: #22C55E; }
.pec-region-icon { background: rgba(59,130,246,0.1); color: #3B82F6; }
.pec-label { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 3px; }
.pec-value { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }


/* ══════════════════════════════════════════════════════════════════════ */
/* MAIN LAYOUT — ZERO GAP between sidebar and content
/* ════════════════════════════════════════════════════════════════════ */
.pd-main-section { padding: 0; background: var(--bg-primary); }
.pd-main-section .container { max-width: 100%; padding-left: 0; padding-right: 0; }

.pd-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;                     
    align-items: stretch;
}


/* ════════════════════════════════════════════════════════════════════ */
/* LEFT SIDEBAR
/* ════════════════════════════════════════════════════════════════════ */
.pd-sidebar-left {
    position: sticky;
    top: 88px;
    align-self: start;
}

.pds-card {
    background: var(--card-bg);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    box-shadow: none;
    border: none;
    border-right: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
}

.pds-card-header {
    display: flex; align-items: center; gap: 14px;
    padding: 22px 18px 18px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0A3D3D 100%);
    color: #fff;
}
.pds-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary-light); flex-shrink: 0; }
.pds-card-header h4 { font-size: 0.92rem; font-weight: 700; margin: 0; }
.pds-card-header p { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin: 2px 0 0; }

.pds-search-wrap { position: relative; padding: 10px 12px 8px; border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.pds-search-icon { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 0.72rem; color: var(--text-muted); }
.pds-search-input { width: 100%; padding: 8px 10px 8px 30px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--card-bg); font-family: 'Poppins', sans-serif; font-size: 0.78rem; color: var(--text-primary); transition: all 0.2s ease; outline: none; }
.pds-search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,38,0.08); }
.pds-search-input::placeholder { color: var(--text-muted); }

.pds-places-list { max-height: 480px; overflow-y: auto; padding: 4px 6px; scrollbar-width: thin; scrollbar-color: #E5E7EB transparent; }
.pds-places-list::-webkit-scrollbar { width: 3px; }
.pds-places-list::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 4px; }

.pds-place-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 10px; text-decoration: none; color: inherit; border: 1.5px solid transparent; transition: all 0.2s ease; margin-bottom: 1px; position: relative; overflow: hidden; }
.pds-place-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--primary); border-radius: 0 3px 3px 0; transition: height 0.2s ease; }
.pds-place-item:hover { background: #F9FAFB; border-color: #E5E7EB; }
.pds-place-item:hover::before { height: 55%; }
.pds-place-item.active { background: linear-gradient(135deg, #FFF7ED 0%, #FFFBF5 100%); border-color: var(--primary); box-shadow: 0 2px 10px rgba(232,93,38,0.1); }
.pds-place-item.active::before { height: 65%; background: var(--primary-dark); }

.pds-thumb { width: 40px; height: 40px; border-radius: 9px; background-size: cover; background-position: center; flex-shrink: 0; border: 1.5px solid var(--border); }
.pds-place-item.active .pds-thumb { border-color: var(--primary-light); }

.pds-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.pds-name { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pds-place-item.active .pds-name { color: var(--primary-dark); }
.pds-cat-label { font-size: 0.66rem; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.pds-cat-label i { font-size: 0.55rem; }

.pds-arrow-wrap { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s ease; }
.pds-arrow-wrap i { font-size: 0.55rem; color: #D1D5DB; transition: all 0.2s ease; }
.pds-place-item:hover .pds-arrow-wrap, .pds-place-item.active .pds-arrow-wrap { background: var(--primary); }
.pds-place-item:hover .pds-arrow-wrap i, .pds-place-item.active .pds-arrow-wrap i { color: #fff; }

.pds-card-footer { display: flex; justify-content: space-between; padding: 10px 14px; border-top: 1px solid var(--border); background: var(--bg-secondary); }
.pds-card-footer span { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.pds-card-footer span i { font-size: 0.55rem; color: var(--primary); }


/* ════════════════════════════════════════════════════════════════════ */
/* CENTER COLUMN — Internal padding replaces container gap
/* ══════════════════════════════════════════════════════════════════ */
.pd-main-col { min-width: 0; display: flex; flex-direction: column; }

.pd-content-row { display: grid; grid-template-columns: 3fr 2fr; gap: 20px; flex: 1; align-items: stretch; padding: 24px 28px; }

.pd-block { background: var(--card-bg); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: box-shadow 0.3s ease; }
.pd-block:hover { box-shadow: var(--shadow-md); }

.pd-block-title { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--bg-secondary); }
.pd-block-title i { font-size: 0.9rem; color: var(--primary); }

.pd-about-lead { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.85; margin: 0 0 22px; }
.pd-about-extra { margin-bottom: 14px; }
.pae-item { display: flex; align-items: flex-start; gap: 14px; padding: 13px 15px; background: var(--bg-primary); border-radius: 11px; border: 1px solid var(--bg-secondary); transition: all 0.2s ease; }
.pae-item:hover { border-color: #FED7AA; background: #FFFBEB; }
.pae-item > i { font-size: 0.9rem; color: var(--primary); margin-top: 2px; flex-shrink: 0; width: 18px; text-align: center; }
.pae-item strong { display: block; font-size: 0.76rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 2px; }
.pae-item span { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }

/* Map */
.pd-map-block { display: flex; flex-direction: column; }
.pd-map-container { flex: 1; min-height: 300px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-secondary); }
.pd-map-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); background: var(--bg-secondary); }
.pd-map-placeholder i { font-size: 2rem; opacity: 0.3; }
.pd-map-placeholder span { font-size: 0.85rem; font-weight: 500; margin: 0; color: #9CA3AF; }
.pd-map-pin-info { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 14px; background: var(--bg-primary); border-radius: 10px; border: 1px solid var(--bg-secondary); flex-shrink: 0; }
.pd-map-pin-info i { color: var(--primary); font-size: 0.85rem; }
.pd-map-pin-info span { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }


/* ════════════════════════════════════════════════════════════════════ */
/* HIGHLIGHTS + THINGS TO DO
/* ══════════════════════════════════════════════════════════════════ */
.pd-below-section { padding: 0 28px 60px; background: var(--bg-primary); }
.pd-below-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.pd-highlight-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pd-highlight-list li { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-primary); border-radius: 10px; border: 1px solid var(--bg-secondary); font-size: 0.88rem; color: var(--text-primary); transition: all 0.2s ease; }
.pd-highlight-list li:hover { border-color: #FED7AA; background: #FFFBEB; transform: translateY(-2px); }
.pd-highlight-list li i { color: var(--primary); font-size: 0.65rem; flex-shrink: 0; }

.pd-todo-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pd-todo-list li { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-primary); border-radius: 10px; border: 1px solid var(--bg-secondary); font-size: 0.88rem; color: var(--text-primary); transition: all 0.2s ease; }
.pd-todo-list li:hover { border-color: #A7F3D0; background: #ECFDF5; transform: translateY(-2px); }
.pd-todo-list li i { color: #0D9488; font-size: 0.65rem; flex-shrink: 0; }


/* ════════════════════════════════════════════════════════════════ */
/* NEARBY PLACES
/* ════════════════════════════════════════════════════════════════ */
.pd-nearby-section { padding: 80px 0; background: var(--bg-secondary); }
.pd-nearby-scroll-wrap { position: relative; overflow: hidden; }
.pd-nearby-row { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; padding: 10px 60px 30px; scrollbar-width: none; }
.pd-nearby-row::-webkit-scrollbar { display: none; }
.pd-nearby-card { flex: 0 0 300px; height: 380px; border-radius: var(--radius-xl); overflow: hidden; position: relative; background: #000; text-decoration: none; color: inherit; box-shadow: var(--shadow-md); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.pd-nearby-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }
.pnc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.pd-nearby-card:hover .pnc-bg { transform: scale(1.1); }
.pnc-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }
.pnc-cat { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; margin-bottom: 12px; width: fit-content; }
.pnc-overlay h5 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pnc-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0 0 12px; }
.pnc-explore { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--primary-light); opacity: 0; transform: translateY(6px); transition: all 0.3s ease; }
.pd-nearby-card:hover .pnc-explore { opacity: 1; transform: translateY(0); }
.nearby-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: #fff; border: none; box-shadow: var(--shadow-md); z-index: 5; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); }
.nearby-arrow:hover { background: var(--primary); color: #fff; }
.nearby-arrow-left { left: 10px; }
.nearby-arrow-right { right: 10px; }
@media (max-width: 768px) { .pd-nearby-card { flex: 0 0 260px; height: 340px; } .pd-nearby-row { padding: 10px 20px 24px; } .nearby-arrow { display: none; } .story-card { height: 300px; } }


/* ════════════════════════════════════════════════════════════════ */
/* STORIES
/* ════════════════════════════════════════════════════════════════ */
.pd-stories-section { padding: 80px 0; background: var(--bg-primary); }
.pd-story-card { display: block; border-radius: var(--radius-xl); overflow: hidden; position: relative; height: 340px; background: #000; text-decoration: none; color: inherit; box-shadow: var(--shadow-md); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.pd-story-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pdsc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.pd-story-card:hover .pdsc-bg { transform: scale(1.1); }
.pdsc-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }
.pdsc-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; margin-bottom: 12px; width: fit-content; }
.pdsc-overlay h5 { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 8px; }
.pdsc-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin: 0; }

.pd-back-section { padding: 20px 0 80px; background: var(--bg-primary); }

@media (max-width: 768px) { .pd-story-card { height: 300px; } }

/* ════════════════════════════════════════════════════════════════ */
/* RESPONSIVE
/* ══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .pd-hero { min-height: 360px; }
    .pd-hero-title { font-size: 2.4rem; }
    .pd-essential-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .pd-main-section .container { padding-left: 15px; padding-right: 15px; }
    .pd-layout-grid { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .pd-sidebar-left { position: static; order: -1; }
    .pds-places-list { max-height: 260px; }
    .pds-card { border-radius: var(--radius-xl); border: 1px solid var(--border); border-right: 1px solid var(--border); box-shadow: var(--shadow-md); }
    .pd-content-row { grid-template-columns: 1fr; padding: 0; }
    .pd-map-container { min-height: 260px; }
    .pd-below-section { padding: 0 0 60px; }
    .pd-below-grid { grid-template-columns: 1fr; }
    .pd-highlight-list, .pd-todo-list { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .pd-hero { min-height: 300px; }
    .pd-hero-title { font-size: 2rem; }
    .pd-essential-grid { grid-template-columns: 1fr; gap: 10px; }
    .pd-essential-card { padding: 16px 14px; gap: 12px; }
    .pec-icon-wrap { width: 42px; height: 42px; font-size: 1rem; border-radius: 10px; }
    .pec-label { font-size: 0.65rem; }
    .pec-value { font-size: 0.88rem; }
    .pd-block { padding: 20px; border-radius: var(--radius-lg); }
    .pds-card-header { padding: 16px 14px 14px; }
    .pds-card-footer { padding: 10px 14px; }
    .pd-place-item { padding: 6px; }
    .pd-thumb { width: 34px; height: 34px; }
    .pds-card-header { padding: 12px 14px 14px; }
    .pd-map-container { min-height: 220px; }
}

@media (max-width: 575.98px) {
    .pd-hero-title { font-size: 1.7rem; }
    .pd-block { padding: 16px; }
    .pds-card-header { padding: 10px 12px 14px; }
    .pds-card-footer { padding: 10px 14px; }
}


/* ================================================================
   MOBILE RESPONSIVE — HOMEPAGE
   ================================================================ */
@media (max-width: 991px) { .hero-title { font-size: 3rem; } .hero-desc  { font-size: 1rem; } .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 32px; }
.btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; padding: 13px 24px; } .hero-stats { gap: 16px; flex-wrap: wrap; } .hero-badge { font-size: 0.78rem; padding: 6px 12px; margin-bottom: 16px; } }

@media (max-width: 767px) {
    .hero-section { min-height: 100svh; }
    .hero-content { padding-top: 60px; }
    .hero-title { font-size: 2.4rem; letter-spacing: -0.5px; }
    .hero-desc  { font-size: 0.95rem; max-width: 100%; margin-bottom: 24px; }
    .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; padding: 13px 24px; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .stat-num   { font-size: 1.4rem; }
    .stat-label { font-size: 0.72rem; }
}

@media (max-width: 480px) { .hero-title { font-size: 2rem; } .stat-num   { font-size: 1.4rem; } }

/* ── Navbar mobile ── */
@media (max-width: 991px) {
    .search-wrapper { width: 100%; margin: 10px 0; }
    .search-wrapper:focus-within { width: 100%; }
}

/* ── Section headers ── */
@media (max-width: 767px) {
    .section-title   { font-size: 2rem; }
    .section-subtext { font-size: 0.95rem; }
    .section-header  { margin-bottom: 28px; }
}

.categories-section {
    padding: 80px 0 60px;
    background: var(--bg-primary);
}
.swiper-categories {
    padding: 20px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.swiper-categories .swiper-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .swiper-categories .swiper-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.swiper-categories .swiper-slide {
    height: auto;
    width: auto;
}

.swiper-categories .swiper-slide .category-card {
    width: 100%;
}

/* ── Destinations ── */
@media (max-width: 767px) { .destinations-section { padding: 50px 0; } }

/* ── Stories section ── */
@media (max-width: 767px) {
    .stories-section { padding: 60px 0; }
    .stories-scroll-container { padding: 0; }
    .stories-row { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 16px 16px; scrollbar-width: none; }
    .stories-row::-webkit-scrollbar { display: none; }
    .story-card { flex: 0 0 80vw; max-width: 300px; scroll-snap-align: start; height: 340px; border-radius: 16px; }
    .story-arrow { display: none; }
    .story-card-overlay h5 { font-size: 1.1rem; }
    .story-card-overlay p { font-size: 0.8rem; }
}

/* ── Animated Quotes Banner ── */
.quotes-banner {
    background: var(--primary);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.quotes-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 100%;
}

.quote-text {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-20px);
    opacity: 0;
    font-style: italic;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.quote-text.active {
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: auto;
}

/* 🆕 Festivals & Events Filter Section */
.festivals-filter-section {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0;
}

.festival-search-wrap {
    
    position: relative;
    width: 100%;
}

.festival-search-input {
    width: 100%;
    padding: 16px 25px;
    padding-right: 60px;
    border: none;
    border-radius: 50px;
    background: #f1f3f4;
    font-size: 1.1rem;
    color: #202124;
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.festival-search-input:focus {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    outline: none;
}

.festival-search-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ea4335;
    font-size: 1.2rem;
    cursor: pointer;
}

.festival-select {
    padding: 10px 15px !important;
    border-radius: 6px !important;
    border: 1px solid #ddd !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer;
    background-color: #fff !important;
}

.btn-festival-years {
    width: 100%;
    padding: 10px 15px;
    border-radius: 6px;
    border: none;
    background: #ff0000;
    color: white;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.festival-tag {
    background: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    color: #333;
}

.festival-tag i {
    cursor: pointer;
    font-size: 10px;
    color: #666;
}

.btn-clear-all {
    background: none;
    border: none;
    color: #ff0000;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.year-range-container {
    background: #fff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.year-range-container h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Admin Textarea Auto-Resize & Scroll Removal */
.admin-form-control.wysiwyg-textarea,
textarea.admin-form-control,
.admin-card textarea {
    overflow-y: hidden !important;
    min-height: 100px;
    resize: none !important;
    line-height: 1.6 !important;
    transition: height 0.1s ease;
}

.faq-card textarea {
    min-height: 80px !important;
}

.admin-form-control:focus {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

/* 🆕 Quill Editor Auto-Expansion Fix */
.ql-editor {
    height: auto !important;
    min-height: 150px;
    overflow-y: hidden !important;
    padding-bottom: 20px !important;
}

.ql-container.ql-snow {
    border: none !important;
    height: auto !important;
}

.ql-container {
    height: auto !important;
}

.admin-form-group .ql-toolbar {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #ddd !important;
}

.admin-form-group .ql-container {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 1px solid #ddd !important;
    border-top: none !important;
    background: white;
}
/* 🆕 Structured Itinerary Styles (Horizontal) */
.itinerary-timeline-horizontal {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.itinerary-timeline-horizontal::-webkit-scrollbar {
    height: 8px;
}

.itinerary-timeline-horizontal::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.itin-day-card {
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.itin-day-card:hover {
    transform: translateY(-5px);
}

.itin-day-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.day-badge {
    background: var(--primary);
    color: #fff;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.day-title {
    margin: 0;
    font-weight: 700;
    color: #2d3436;
    font-size: 0.9rem;
}

.itin-time-slot.mini {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.itin-time-slot.mini::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 35px;
    bottom: -15px;
    width: 2px;
    background: #f0f0f0;
}

.itin-time-slot.mini:last-child::before {
    display: none;
}

.slot-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    font-size: 12px;
}

.slot-icon.morning { background: #fff9db; color: #f59f00; }
.slot-icon.afternoon { background: #e7f5ff; color: #1c7ed6; }
.slot-icon.evening { background: #f3f0ff; color: #7048e8; }

.slot-content h6 {
    margin: 0 0 3px 0;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.itin-stay-info.mini {
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d3436;
}

/* Modal Adjustments */
.modal-xl {
    max-width: 95% !important;
}

.modal {
    z-index: 1060 !important; /* Higher than fixed navbar */
}

.modal-backdrop {
    z-index: 1050 !important;
}

.navbar.fixed-top {
    z-index: 1030 !important;
}

/* Fix for popup being cut off on small screens */
@media (max-width: 768px) {
    .itin-day-card {
        min-width: 260px;
    }
}
