/* ==========================================================================
   TROVE TRAILS - MODERN PREMIUM DESIGN SYSTEM (UI/UX REFRACTORED)
   Inspired by Airbnb, Apple, Kerala Tourism & National Geographic
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --primary: #1B5E20;
    --primary-hover: #134417;
    --primary-light: rgba(27, 94, 32, 0.08);
    --secondary: #2E7D32;
    --accent: #D4A017;
    --accent-hover: #b88a12;
    --bg-body: #F8F9FA;
    --bg-card: #FFFFFF;
    --text-dark: #1A1D20;
    --text-muted: #6C757D;
    --border-color: #EBF0EC;
    --radius-card: 16px;
    --radius-btn: 50px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(27, 94, 32, 0.12);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Global Typography & Reset
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none !important;
    transition: var(--transition);
}

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

ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   2b. Shared Utility Classes (referenced throughout all views)
   -------------------------------------------------------------------------- */

/* Hover lift animation */
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover) !important; }

/* Transition helpers */
.transition-all { transition: var(--transition) !important; }

/* Line clamp (text truncation) */
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Max-width helpers */
.max-w-400  { max-width: 400px; }
.max-w-500  { max-width: 500px; }
.max-w-600  { max-width: 600px; }
.max-w-700  { max-width: 700px; }
.max-w-800  { max-width: 800px; }
.max-w-900  { max-width: 900px; }

/* Font size extras */
.extra-small { font-size: 0.78rem !important; }
.fs-7  { font-size: 0.825rem !important; }
.fs-8  { font-size: 0.75rem  !important; }
.fs-9  { font-size: 0.68rem  !important; }

/* Font weight */
.fw-extrabold { font-weight: 800 !important; }

/* Line height */
.leading-tight  { line-height: 1.2 !important; }
.leading-snug   { line-height: 1.35 !important; }
.leading-normal { line-height: 1.65 !important; }

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scrollbar hidden (for horizontal scroll containers) */
.scrollbar-hidden::-webkit-scrollbar { display: none; }
.scrollbar-hidden { -ms-overflow-style: none; scrollbar-width: none; }

/* Object-fit */
.object-fit-cover { object-fit: cover; }
.object-fit-contain { object-fit: contain; }

/* Z-index helpers */
.z-3 { z-index: 3; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

/* Backdrop blur */
.backdrop-blur { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(6px); }

/* Colour soft backgrounds */
.bg-success-soft  { background-color: rgba(27, 94, 32, 0.10) !important; }
.bg-primary-soft  { background-color: rgba(27, 94, 32, 0.06) !important; }
.bg-warning-soft  { background-color: rgba(212, 160, 23, 0.10) !important; }
.bg-danger-soft   { background-color: rgba(220, 53, 69, 0.10) !important; }
.bg-info-soft     { background-color: rgba(13, 110, 253, 0.08) !important; }
.bg-light-soft    { background-color: rgba(248, 249, 250, 0.7) !important; }
.text-accent      { color: var(--accent) !important; }

/* Image zoom on hover (for cards with overflow:hidden parent) */
.img-zoom { transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); }
.img-zoom:hover { transform: scale(1.07); }

/* --------------------------------------------------------------------------
   3. Section Layout & Utilities
   -------------------------------------------------------------------------- */
.section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.btn-primary-custom {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: var(--radius-btn);
    border: 2px solid var(--primary) !important;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.35);
}

.btn-outline-custom {
    background-color: transparent !important;
    color: var(--primary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: var(--radius-btn);
    border: 2px solid var(--primary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.2);
}

.btn-outline-light-custom {
    background-color: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: var(--radius-btn);
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   5. Transparent Sticky Navbar
   -------------------------------------------------------------------------- */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent !important;
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand {
    color: var(--primary) !important;
}

.brand-logo-img {
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar-custom.scrolled .brand-logo-img {
    filter: none;
}

.footer-custom .brand-logo-img {
    filter: brightness(0) invert(1);
}

.admin-sidebar .brand-logo-img {
    filter: brightness(0) invert(1);
}

.navbar-brand-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    transition: var(--transition);
}

.navbar-custom.scrolled .navbar-brand-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.navbar-custom .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-custom.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #ffffff !important;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
    color: var(--primary) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 1.75rem;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--text-dark) !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(12, 28, 16, 0.96);
        backdrop-filter: blur(15px);
        padding: 24px;
        border-radius: 16px;
        margin-top: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .navbar-custom.scrolled .navbar-collapse {
        background: #ffffff;
    }
    .navbar-custom.scrolled .nav-link {
        color: var(--text-dark) !important;
    }
}

/* --------------------------------------------------------------------------
   6. Hero Section & Interactive Filter Bar
   -------------------------------------------------------------------------- */
.hero-wrapper {
    position: relative;
    min-height: 92vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(10, 35, 15, 0.72) 55%, 
        rgba(5, 20, 8, 0.92) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    color: #ffffff !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 400;
    margin-bottom: 2.75rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.1rem;
    }
}

/* Floating Search Bar (Airbnb Style UX) */
.hero-search-bar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 10px 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-right: 1px solid var(--border-color);
    text-align: left;
}

.hero-search-field:last-child {
    border-right: none;
}

.hero-search-icon {
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-search-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
}

.hero-search-select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-search-bar {
        flex-direction: column;
        border-radius: 24px;
        padding: 16px;
    }
    .hero-search-field {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* --------------------------------------------------------------------------
   7. Featured Destinations Cards
   -------------------------------------------------------------------------- */
.destination-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 400px;
    width: 100%;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.destination-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-badge-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.05) 0%, 
        rgba(0, 0, 0, 0.35) 45%, 
        rgba(10, 35, 15, 0.94) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.75rem;
    color: #ffffff !important;
    z-index: 2;
}

.destination-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.35rem;
}

.destination-card-desc {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.destination-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destination-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.destination-card:hover .destination-card-img {
    transform: scale(1.08);
}

.destination-card:hover .destination-card-btn {
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   8. Popular Packages Cards
   -------------------------------------------------------------------------- */
.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

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

.package-duration-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.package-rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(27, 94, 32, 0.92);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.package-rating-badge i {
    color: var(--accent);
}

.package-card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.package-amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-body);
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 500;
}

.package-amenity-item i {
    color: var(--primary);
}

.package-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.package-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.package-price-value {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 94, 32, 0.2);
}

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

/* --------------------------------------------------------------------------
   9. Why Choose Us Section
   -------------------------------------------------------------------------- */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
}

.feature-icon-circle {
    width: 68px;
    height: 68px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--primary);
    font-size: 1.75rem;
    transition: var(--transition);
}

.feature-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 94, 32, 0.25);
}

.feature-card:hover .feature-icon-circle {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   10. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-size: 0.975rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.testimonial-location {
    font-size: 0.825rem;
    color: var(--text-muted);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 94, 32, 0.15);
}

/* --------------------------------------------------------------------------
   11. Grid Gallery & Lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-card);
    transition: transform 0.5s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 94, 32, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-modal img {
    border-radius: var(--radius-card);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --------------------------------------------------------------------------
   12. CTA Section Banner
   -------------------------------------------------------------------------- */
.cta-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 40px;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-hover);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 35, 15, 0.92) 0%, 
        rgba(27, 94, 32, 0.88) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2.25rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta-wrapper {
        padding: 60px 20px;
    }
    .cta-title {
        font-size: 2.1rem;
    }
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.footer-custom {
    background-color: #0b1a0d;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 0.925rem;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.footer-links li {
    list-style-type: none !important;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68) !important;
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent) !important;
    transform: translateX(4px);
}

.footer-email-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-size: 0.9rem;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.footer-email-input:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--accent) !important;
    box-shadow: none !important;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1.25rem;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ==========================================================================
   REDESIGNED FOOTER — 2025
   ========================================================================== */

/* ── Root ── */
#site-footer {
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* ── Newsletter Band ── */
.footer-newsletter-band {
    background: linear-gradient(135deg, #0a5c2e 0%, #0f7a3e 50%, #0a5c2e 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.footer-newsletter-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}
.footer-nl-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}
.footer-nl-left {
    flex: 1;
}
.footer-nl-right {
    flex: 1;
}
.footer-nl-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.25);
}
.footer-nl-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}
.footer-nl-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin: 0;
    max-width: 420px;
}
.footer-nl-form {}
.footer-nl-input-row {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.footer-nl-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #1a1a1a;
    background: transparent;
}
.footer-nl-btn {
    background: var(--color-primary, #1a6b3a);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-nl-btn:hover {
    background: #0f4d29;
}
.footer-nl-privacy {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    margin-top: 10px;
    margin-left: 4px;
    margin-bottom: 0;
}

/* ── Footer Body ── */
.footer-body {
    background: #0c1f12;
    padding: 72px 0 0;
}

/* ── Brand Column ── */
.footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-trust-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-trust-pill {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
}

/* ── Social Icons ── */
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social:hover {
    background: var(--color-primary, #1a6b3a);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

/* ── Nav Columns ── */
.footer-col-heading {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-primary-light, #4db875);
    transition: width 0.2s ease;
    flex-shrink: 0;
}
.footer-col-links a:hover {
    color: #fff;
    padding-left: 6px;
}
.footer-col-links a:hover::before {
    width: 12px;
}

/* ── WhatsApp CTA ── */
.footer-wa-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.footer-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
    color: #fff;
}
.footer-email-link {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-email-link:hover {
    color: #fff;
}

/* ── Destination Tags ── */
.footer-dest-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.footer-dest-tag:hover {
    border-color: var(--color-primary-light, #4db875);
    color: var(--color-primary-light, #4db875);
    background: rgba(77,184,117,0.08);
}

/* ── Divider ── */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent);
    margin: 56px 0 0;
}

/* ── Bottom Bar ── */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 32px;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copyright {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    margin: 0;
}
.footer-back-top {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 50px;
}
.footer-back-top:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

/* ── Floating WhatsApp ── */
.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.floating-wa-btn .floating-wa-label {
    font-size: 0.85rem;
    font-weight: 600;
}
.floating-wa-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .footer-nl-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }
    .footer-nl-desc {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-nl-input-row {
        flex-direction: column;
        border-radius: 14px;
    }
    .footer-nl-input, .footer-nl-btn {
        border-radius: 10px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-trust-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* --------------------------------------------------------------------------
   14. Inner Page Banner & Breadcrumbs
   -------------------------------------------------------------------------- */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 30, 14, 0.9) 0%, 
        rgba(27, 94, 32, 0.86) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 0.75rem;
}

.page-banner-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem;
}

.breadcrumb-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom a {
    color: #ffffff !important;
    font-weight: 500;
}

.breadcrumb-custom a:hover {
    color: var(--accent) !important;
}

.breadcrumb-custom .active {
    color: var(--accent) !important;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   15. Destination Listing Custom Styles
   -------------------------------------------------------------------------- */
.destination-featured-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.destination-featured-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.destination-featured-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.filter-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.filter-btn-pill {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.filter-btn-pill.active,
.filter-btn-pill:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
}

.pagination-custom .page-link {
    border-radius: 50px !important;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    margin: 0 4px;
    transition: var(--transition);
}

.pagination-custom .page-item.active .page-link,
.pagination-custom .page-link:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   16. Destination Details Custom Styles
   -------------------------------------------------------------------------- */
.destination-detail-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 70px;
    color: #ffffff;
}

.destination-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(10, 35, 15, 0.75) 60%, 
        rgba(5, 20, 8, 0.95) 100%);
    z-index: 1;
}

.destination-detail-content {
    position: relative;
    z-index: 2;
}

.destination-gallery-main {
    height: 420px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    position: relative;
}

.destination-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-gallery-main:hover img {
    transform: scale(1.05);
}

.destination-gallery-thumb {
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.destination-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-gallery-thumb:hover img {
    transform: scale(1.08);
}

.quick-facts-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.quick-facts-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.925rem;
}

.quick-facts-item:last-child {
    border-bottom: none;
}

.quick-facts-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-facts-value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

.season-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.season-card.recommended {
    border: 2px solid var(--primary);
    background: rgba(27, 94, 32, 0.02);
}

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.attraction-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.attraction-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   17. Package Details Custom Styles
   -------------------------------------------------------------------------- */
.sticky-booking-card {
    position: sticky;
    top: 90px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.itinerary-day-badge {
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
}

.inclusion-card {
    background: rgba(27, 94, 32, 0.04);
    border: 1px solid rgba(27, 94, 32, 0.15);
    border-radius: var(--radius-card);
    padding: 20px;
}

.exclusion-card {
    background: rgba(220, 53, 69, 0.04);
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-radius: var(--radius-card);
    padding: 20px;
}

/* --------------------------------------------------------------------------
   18. Experiences Page Custom Styles
   -------------------------------------------------------------------------- */
.experience-category-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.experience-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(27, 94, 32, 0.25);
}

.experience-category-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.experience-icon-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-counter-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-counter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   19. Gallery Page Custom Styles
   -------------------------------------------------------------------------- */
.video-card-thumb {
    position: relative;
    height: 220px;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card-thumb:hover img {
    transform: scale(1.08);
}

.play-btn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-card-thumb:hover .play-btn-overlay {
    background: rgba(27, 94, 32, 0.65);
}

.album-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.album-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* --------------------------------------------------------------------------
   20. Blog Page Custom Styles
   -------------------------------------------------------------------------- */
.sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-post-item:last-child {
    border-bottom: none;
}

.sidebar-post-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.blog-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   21. Blog Details Custom Styles
   -------------------------------------------------------------------------- */
.article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.article-body h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.85rem;
    color: var(--text-dark);
}

.article-quote {
    background: rgba(27, 94, 32, 0.04);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    margin: 2rem 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.table-of-contents {
    position: sticky;
    top: 90px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.toc-link {
    display: block;
    color: var(--text-muted);
    padding: 6px 0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.toc-link:hover,
.toc-link.active {
    color: var(--primary);
    font-weight: 600;
    padding-left: 6px;
}

.author-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.comment-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-reply {
    margin-left: 48px;
    padding-left: 16px;
    border-left: 2px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   22. About Us Custom Styles
   -------------------------------------------------------------------------- */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-card-img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--border-color);
    transform: translateX(-50%);
}

@media (max-width: 767.98px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-badge {
    position: absolute;
    top: 0;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
    z-index: 2;
}

@media (max-width: 767.98px) {
    .timeline-badge {
        left: 20px;
    }
}

.timeline-panel {
    width: 45%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-panel {
    margin-left: auto;
}

@media (max-width: 767.98px) {
    .timeline-panel {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
}

.partner-logo-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-logo-box:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   23. Contact Page Custom Styles
   -------------------------------------------------------------------------- */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    color: var(--primary);
    border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   24. FAQ Page Custom Styles
   -------------------------------------------------------------------------- */
.faq-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.faq-category-card:hover,
.faq-category-card.active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
    background: rgba(27, 94, 32, 0.02);
}

/* --------------------------------------------------------------------------
   25. Admin Dashboard & Dark Mode Styles
   -------------------------------------------------------------------------- */
:root[data-bs-theme="dark"] {
    --bg-light: #0d1117;
    --bg-card: #161b22;
    --text-dark: #f0f6fc;
    --text-muted: #8b949e;
    --border-color: #30363d;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.5);
}

/* Admin Layout Shell */
.admin-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background-color: #f4f6f8;
}

[data-bs-theme="dark"] .admin-wrapper {
    background-color: var(--bg-light);
}

/* ---------- Sidebar — aligned to brand primary ---------- */
.admin-sidebar {
    width: 265px;
    background: linear-gradient(180deg, #122b16 0%, #0d2010 100%) !important;
    color: #ffffff !important;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1040;
    box-shadow: 4px 0 20px rgba(0,0,0,0.12);
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.70) !important;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.admin-sidebar .nav-link i {
    font-size: 1rem;
    opacity: 0.8;
}

.admin-sidebar .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(255,255,255,0.10) !important;
    transform: translateX(3px);
}

.admin-sidebar .nav-link.active {
    color: #ffffff !important;
    background-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(27,94,32,0.4);
    font-weight: 600;
}

.admin-sidebar .nav-link.active i {
    opacity: 1;
}

.admin-sidebar .sidebar-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: rgba(255, 255, 255, 0.38) !important;
    padding: 18px 16px 5px 16px;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Admin Main Content Area */
.admin-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: calc(100% - 265px);
    min-width: 0;
}

@media (max-width: 991.98px) {
    .admin-main {
        width: 100%;
    }
}

.admin-content {
    flex: 1 0 auto;
    width: 100%;
}

/* Admin Top Header */
.admin-header {
    height: 70px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

[data-bs-theme="dark"] .admin-header {
    background-color: var(--bg-card);
}

/* ---------- Admin KPI / Stat Cards ---------- */
.stat-kpi-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

[data-bs-theme="dark"] .stat-kpi-card {
    background-color: var(--bg-card);
}

/* ---------- Admin Card standard override ---------- */
.card {
    border-radius: var(--radius-card) !important;
    transition: var(--transition);
}

/* ---------- Admin Table Enhancements ---------- */
.table thead th {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--text-muted);
}

.table tbody tr {
    transition: background 0.15s ease;
}

/* ---------- Button Variants (Admin-specific) ---------- */
.btn-dark-custom {
    background-color: #1A1D20 !important;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--radius-btn);
    border: 2px solid #1A1D20 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-dark-custom:hover {
    background-color: #111315 !important;
    border-color: #111315 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    color: #ffffff !important;
}

.btn-accent-custom {
    background-color: var(--accent) !important;
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--radius-btn);
    border: 2px solid var(--accent) !important;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-accent-custom:hover {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212,160,23,0.35);
    color: #ffffff !important;
}

/* ---------- Colour Utilities (bg-success-soft etc.) ---------- */
.bg-success-soft {
    background-color: rgba(27, 94, 32, 0.10) !important;
}

.bg-primary-soft {
    background-color: rgba(27, 94, 32, 0.06) !important;
}

.bg-warning-soft {
    background-color: rgba(212, 160, 23, 0.10) !important;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.10) !important;
}

.bg-info-soft {
    background-color: rgba(13, 110, 253, 0.08) !important;
}

.bg-light-soft {
    background-color: rgba(248, 249, 250, 0.7) !important;
}

.text-accent {
    color: var(--accent) !important;
}

/* ---------- Font-size Micro Utilities ---------- */
.fs-7  { font-size: 0.825rem !important; }
.fs-8  { font-size: 0.75rem  !important; }
.fs-9  { font-size: 0.68rem  !important; }
.fs-10 { font-size: 0.62rem  !important; }

/* ---------- Admin Form Control Enhancements ---------- */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.12);
}

/* ---------- Admin Pagination ---------- */
.page-item.active .page-link {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.page-link {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    transition: var(--transition);
}

.page-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

/* ---------- Admin Badge Enhancements ---------- */
.badge {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

/* ---------- Admin Breadcrumb ---------- */
.breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.8rem;
}

.breadcrumb-item a {
    color: var(--primary);
    font-weight: 500;
}

/* ---------- Admin Alert Improvements ---------- */
.alert {
    border-radius: 12px;
    border: none;
    font-size: 0.875rem;
}

.alert-success {
    background-color: rgba(27, 94, 32, 0.09);
    color: #1B5E20;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.09);
    color: #b91c1c;
}

/* ---------- Dark Mode Admin Utilities ---------- */
[data-bs-theme="dark"] .bg-white,
[data-bs-theme="dark"] .bg-light {
    background-color: var(--bg-card) !important;
}

[data-bs-theme="dark"] .card {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .table {
    color: var(--text-dark);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background-color: #0d1117;
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-bs-theme="dark"] .text-dark {
    color: var(--text-dark) !important;
}

[data-bs-theme="dark"] .border-bottom {
    border-color: var(--border-color) !important;
}

/* ---------- Micro-animations for admin elements ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.admin-content > * {
    animation: fadeInUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---------- Scrollbar (Webkit) ---------- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(27,94,32,0.25); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }