/* ==========================================================================
   Ranthambore National Park & Tour Packages - Master Stylesheet
   Client: GTI Travels
   Author: Senior Autonomous Development
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-forest-dark: #0A1E14;
    --color-forest-footer: #10261C;
    --color-forest-primary: #1E412C;
    --color-forest-active: #234832;
    --color-forest-hover: #163622;
    --color-olive-accent: #5A7050;
    --color-olive-light: #889B80;
    --color-sage-bg: #DFE7D8;
    --color-sage-border: #D1DBC7;
    --color-amber-gold: #CE8639;
    --color-amber-gold-hover: #B87228;

    /* Backgrounds */
    --color-bg-light: #FAF8F4;
    --color-bg-white: #FFFFFF;
    --color-bg-capsule: #F4EFE8;
    --color-border-capsule: #E4DCD0;
    --color-border-card: #ECE5DA;

    /* Typography Colors */
    --color-text-main: #1D2620;
    --color-text-muted: #556257;
    --color-text-subtle: #768278;
    --color-text-white: #FFFFFF;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 16px rgba(18, 36, 24, 0.05);
    --shadow-card-hover: 0 12px 28px rgba(18, 36, 24, 0.12);
    --shadow-capsule: 0 12px 30px -8px rgba(22, 38, 28, 0.16);

    /* Container Max Width */
    --container-max-width: 1200px;
}

/* --------------------------------------------------------------------------
   2. Reset & Baseline
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.section-container {
    width: 92%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   2.5 Top Utility Header Bar (Helpline & Mobile Visible Call Bar)
   -------------------------------------------------------------------------- */
.top-header-bar {
    background-color: #112619;
    color: #D6E4D6;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 101;
}

.top-header-container {
    width: 92%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-support-badge {
    color: #8BA985;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
}

.top-phone-link {
    color: #FFFFFF;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.top-phone-link:hover {
    color: #A3D99B;
}

.top-phone-link i {
    color: #25D366;
    font-size: 12px;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
}

/* Mobile Top Bar Quick Chips */
.mobile-top-phones {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}

.mob-top-lbl {
    color: #8BA985;
    font-size: 10.5px;
    display: inline-flex;
    align-items: center;
    margin-right: 2px;
}

.mob-phone-chip {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.mob-phone-chip:hover {
    color: #A3D99B;
}

.mob-chip-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    margin: 0 1px;
}

.top-email-link {
    color: #C3D4C3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.top-email-link:hover {
    color: #FFFFFF;
}

.top-promo-tag {
    color: #F1B76E;
    font-size: 11.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.top-whatsapp-link:hover {
    background-color: #1EBD5A;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

/* --------------------------------------------------------------------------
   3. Header Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-container {
    width: 92%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo (GTI Travels) */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-symbol {
    display: flex;
    align-items: center;
    width: 220px;
}

.brand-symbol img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 480px) {
    .brand-symbol {
        width: 130px;
    }
}

.logo-safari-jeep {
    width: 32px;
    height: 26px;
    color: var(--color-forest-primary);
}

.logo-paw-accent {
    font-size: 12px;
    color: var(--color-forest-primary);
    margin-right: 1px;
}

.brand-text-gti {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--color-forest-primary);
}

/* Desktop Navigation */
.main-navigation .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: #2D3730;
    padding: 6px 0;
    position: relative;
    letter-spacing: 0.15px;
}

.nav-link:hover {
    color: var(--color-forest-primary);
}

.nav-link.active {
    font-weight: 600;
    color: var(--color-forest-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.2px;
    background-color: var(--color-forest-primary);
    border-radius: 2px;
}

.nav-mobile-icon {
    display: none;
}

.mobile-drawer-footer {
    display: none;
}

/* Floating Sticky Mobile Quick Action Bar (Hidden on desktop) */
.mobile-sticky-bar {
    display: none;
}

/* Header Right Actions (Search, Calls & Mobile Toggle) */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Desktop Dual Call Pill Buttons */
.header-dual-call-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-forest-primary);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(35, 72, 50, 0.2);
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
    border: 1.5px solid transparent;
}

.header-call-btn:hover {
    background-color: var(--color-forest-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(35, 72, 50, 0.32);
}

.header-call-btn i {
    font-size: 11px;
    color: #A3D99B;
}

/* Alternative Style for Line 2 */
.header-call-btn--alt {
    background-color: #FAF8F5;
    color: #1A3525;
    border-color: #2D583B;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header-call-btn--alt:hover {
    background-color: #2D583B;
    color: #FFFFFF;
    border-color: #2D583B;
}

.header-call-btn--alt i {
    color: #2D583B;
}

.header-call-btn--alt:hover i {
    color: #A3D99B;
}

/* Mobile Call Dropdown Component (Interactive UX) */
.mobile-call-dropdown-wrap {
    position: relative;
    display: none;
}

.mobile-call-trigger-btn {
    background-color: var(--color-forest-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(35, 72, 50, 0.25);
    transition: all 0.2s ease;
    font-family: inherit;
}

.mobile-call-trigger-btn:active {
    transform: scale(0.97);
}

.mobile-call-trigger-btn .mob-caret {
    font-size: 9px;
    transition: transform 0.2s ease;
}

.mobile-call-dropdown-wrap.open .mob-caret {
    transform: rotate(180deg);
}

.mobile-call-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 275px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    border: 1px solid #E5E7EB;
    padding: 8px;
    z-index: 1000;
}

.mobile-call-dropdown-wrap.open .mobile-call-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: dropFadeIn 0.2s ease forwards;
}

@keyframes dropFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.mob-menu-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9CA3AF;
    padding: 4px 8px 2px;
}

.mob-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: #F9FAFB;
    border: 1px solid #F3F4F6;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mob-menu-link:active,
.mob-menu-link:hover {
    background-color: #F0FDF4;
    border-color: #DCFCE7;
}

.mob-menu-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #E8F5E9;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.mob-menu-wa .mob-menu-icon {
    background-color: #DCFCE7;
    color: #16A34A;
}

.mob-menu-text {
    display: flex;
    flex-direction: column;
}

.mob-menu-text strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.mob-menu-text span {
    font-size: 10px;
    color: #6B7280;
}

.drawer-phone-btn--secondary {
    background-color: #FAF6F0 !important;
    color: #1A3525 !important;
    border: 1.5px solid #CBD5E1 !important;
}

.nav-search-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38453C;
    font-size: 15px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.nav-search-btn:hover {
    color: var(--color-forest-primary);
    background-color: #F0EDE6;
}

/* Breadcrumb Navigation Trail */
.breadcrumb-trail-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--color-text-subtle);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumb-trail-nav a {
    color: var(--color-forest-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.breadcrumb-trail-nav a:hover {
    color: var(--color-gold-accent);
    text-decoration: underline;
}

.breadcrumb-sep {
    color: #BDC8B7;
    font-size: 11px;
}

.breadcrumb-current {
    color: #5C6B5E;
    font-weight: 600;
}

/* Mobile Hamburger Button */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    padding: 0;
}

.mobile-toggle-btn .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-forest-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   4. Hero Section & Overlapping Capsule Tab Bar (Home Page)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #EAE6DF;
}

.hero-media-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    max-height: 520px;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
}

.hero-tabs-outer {
    position: absolute;
    bottom: -88px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 25;
    padding: 0 16px;
}

.hero-tab-capsule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    width: min(1080px, 100%);
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    gap: 22px;
}

.tab-pill-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-height: 0;
    padding: 14px 14px 20px;
    border-radius: 18px;
    font-size: 17.5px;
    font-weight: 700;
    color: #38423B;
    background-color: var(--color-bg-capsule);
    border: 1.5px solid var(--color-border-capsule);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    text-align: center;
    white-space: nowrap;
    line-height: 1.25;
    overflow: hidden;
    cursor: pointer;
}

.tab-pill-btn .tab-icon {
    width: 100%;
    height: 150px;
    aspect-ratio: auto;
    font-size: 0;
    display: block;
    border-radius: 12px;
    background-color: rgba(35, 72, 50, 0.08);
    color: var(--color-forest-primary);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.tab-pill-btn .tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tab-pill-btn .tab-label {
    max-width: none;
    padding: 0 6px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.tab-pill-btn:hover {
    background-color: var(--color-forest-active);
    border-color: var(--color-forest-active);
    color: var(--color-text-white);
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(22, 50, 33, 0.32);
}

.tab-pill-btn:hover .tab-label {
    color: var(--color-text-white);
}

.tab-pill-btn:hover .tab-icon {
    background-color: transparent;
}

.tab-pill-btn:hover .tab-icon img {
    transform: scale(1.06);
}

.tab-pill-btn.active {
    background-color: var(--color-forest-active);
    border-color: var(--color-forest-active);
    color: var(--color-text-white);
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(22, 50, 33, 0.3);
}

.tab-pill-btn.active .tab-label {
    color: var(--color-text-white);
}

.tab-pill-btn.active .tab-icon {
    background-color: transparent;
    color: var(--color-text-white);
}

/* Home Section 2: Explore Wilderness */
.explore-section {
    padding: 155px 0 80px;
    background-color: var(--color-bg-light);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}

.explore-narrative {
    padding-right: 20px;
}

.eyebrow-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-olive-accent);
    margin-bottom: 12px;
}

.narrative-heading {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: #1A241E;
    line-height: 1.22;
    margin-bottom: 22px;
    letter-spacing: -0.3px;
}

.narrative-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 26px;
    text-align: justify;
}

.decorative-accent-bar {
    width: 58px;
    height: 2.5px;
    background-color: var(--color-olive-light);
    border-radius: 2px;
}

.explore-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--color-sage-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #274D34;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-circle {
    transform: scale(1.06);
    background-color: #D7DFCD;
}

.feature-svg {
    width: 26px;
    height: 26px;
}

.feature-content .feature-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #1A241E;
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-content .feature-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-text-subtle);
}

/* Home Section 3: Glance */
.glance-section {
    padding: 30px 0 85px;
    background-color: var(--color-bg-light);
}

.glance-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.glance-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.glance-main-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: #1A241E;
}

.glance-accent-line {
    display: inline-block;
    width: 38px;
    height: 2px;
    background-color: var(--color-olive-light);
    border-radius: 1px;
}

.glance-discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2D3930;
    transition: var(--transition-smooth);
}

.discover-arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.glance-discover-btn:hover {
    color: var(--color-forest-primary);
}

.glance-discover-btn:hover .discover-arrow {
    transform: translateX(5px);
}

.glance-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.glance-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background-color: #E2DBD0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.glance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(18, 38, 25, 0.15);
}

.card-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glance-card:hover .card-image {
    transform: scale(1.06);
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 20, 12, 0.85) 0%,
        rgba(8, 20, 12, 0.35) 35%,
        rgba(8, 20, 12, 0) 65%
    );
    pointer-events: none;
}

.glance-five-cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.card-caption-wrap {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.card-tag-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    padding: 2px 7px;
    border-radius: 4px;
}

.card-caption-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.25;
}

/* Home Section 4: Banner CTA */
.experience-banner-section {
    position: relative;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
}

.banner-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 20, 13, 0.78) 0%,
        rgba(10, 24, 16, 0.65) 50%,
        rgba(10, 24, 16, 0.45) 100%
    );
}

.banner-content-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1.4fr;
    gap: 50px;
    align-items: center;
    padding: 48px 0;
}

.banner-title-block {
    display: flex;
    align-items: stretch;
    gap: 18px;
}

.banner-vert-line {
    width: 2px;
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 2px;
    flex-shrink: 0;
}

.banner-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 500;
    color: var(--color-text-white);
    line-height: 1.25;
}

.banner-action-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.banner-description {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    max-width: 540px;
}

.btn-plan-visit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #556E4D;
    color: var(--color-text-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.btn-plan-visit:hover {
    background-color: #455E3D;
    transform: translateY(-2px);
}

/* Responsive Styles for Home Page Sections */
@media screen and (max-width: 992px) {
    .hero-tab-capsule {
        gap: 14px;
        width: 100%;
    }

    .tab-pill-btn {
        padding: 12px 10px 16px;
        font-size: 15.5px;
    }

    .tab-pill-btn .tab-icon {
        height: 125px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .explore-narrative {
        padding-right: 0;
    }

    .narrative-heading {
        font-size: 32px;
    }

    .glance-card-row,
    .glance-five-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .banner-content-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
    }
}

@media screen and (max-width: 600px) {
    .explore-section {
        padding: 80px 0 50px;
    }

    .narrative-heading {
        font-size: 26px;
    }

    .narrative-text {
        font-size: 14px;
        text-align: left;
    }

    .explore-features {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .feature-item {
        flex-direction: row;
        gap: 16px;
        align-items: flex-start;
    }

    .feature-icon-circle {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 46px;
        height: 46px;
    }

    .glance-section {
        padding: 20px 0 60px;
    }

    .glance-heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .glance-main-title {
        font-size: 24px;
    }

    .glance-card-row,
    .glance-five-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card-caption-title {
        font-size: 13px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .banner-heading {
        font-size: 24px;
    }

    .banner-description {
        font-size: 13px;
    }
}

/* --------------------------------------------------------------------------
   5. Tour Common Hero Banner (Tours Listing & Tour Details)
   -------------------------------------------------------------------------- */
.tour-hero-section {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #23362B;
}

.tour-hero-media {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.tour-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 60%,
        rgba(10, 25, 16, 0.3) 100%
    );
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   6. Tour Listing Page Specific Styles (tour-packages.php)
   -------------------------------------------------------------------------- */
.tours-list-section {
    padding: 44px 0 85px;
    background-color: var(--color-bg-light);
}

.tours-header-block {
    text-align: center;
    margin-bottom: 40px;
}

.paw-accent-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.paw-line {
    width: 44px;
    height: 1.5px;
    background-color: var(--color-olive-light);
    border-radius: 1px;
}

.paw-icon {
    font-size: 14px;
    color: var(--color-forest-primary);
}

.tours-page-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: #19291E;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.tours-page-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tour Cards Stack */
.tour-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1020px;
    margin: 0 auto;
}

.tour-item-card {
    display: grid;
    grid-template-columns: 220px 1fr 180px;
    gap: 24px;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    padding: 12px 18px 12px 12px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.tour-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: #D6DEC8;
}

.tour-card-thumb {
    width: 100%;
    height: 132px;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
    background-color: #E2DBD0;
}

.tour-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tour-item-card:hover .tour-card-thumb img {
    transform: scale(1.05);
}

.tour-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: #1A281E;
    line-height: 1.3;
    margin-bottom: 7px;
}

.tour-title a:hover {
    color: var(--color-forest-primary);
}

/* Nights/Days duration badge & Contact Actions integrated below tour package name */
.tour-meta-subrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 9px;
    flex-wrap: wrap;
}

.tour-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F2F6EE;
    color: #1F3F2C;
    border: 1px solid rgba(35, 72, 50, 0.22);
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.tour-duration-badge i {
    color: #9C6328;
    font-size: 12px;
}

.tour-title-contacts {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 0;
}

.square-contact-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 13px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.square-contact-box.phone-box {
    background-color: rgba(35, 72, 50, 0.08);
    color: var(--color-forest-primary);
    border: 1px solid rgba(35, 72, 50, 0.18);
}

.square-contact-box.phone-box:hover {
    background-color: var(--color-forest-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.square-contact-box.whatsapp-box {
    background-color: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.square-contact-box.whatsapp-box:hover {
    background-color: #25D366;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.tour-features-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--color-text-subtle);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #435446;
    font-weight: 500;
}

.feature-tag i {
    color: #6C8165;
    font-size: 11px;
}

.tag-sep {
    color: #D2D9D2;
    font-size: 10px;
}

.tour-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* Tour Card Actions Column */
.tour-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-height: 115px;
    padding-top: 4px;
}

.tour-quick-contacts {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-contact-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.phone-btn {
    background-color: #2D4E38;
}

.phone-btn:hover {
    background-color: #1F3A28;
    transform: scale(1.08);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1EBE5D;
    transform: scale(1.08);
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-forest-active);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 8.5px 22px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(26, 53, 35, 0.18);
}

.btn-view-details:hover {
    background-color: var(--color-forest-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(26, 53, 35, 0.28);
}

.view-arrow {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.btn-view-details:hover .view-arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. Tour Details Page Specific Styles (tour-details.php)
   -------------------------------------------------------------------------- */
.itinerary-query-section {
    padding: 48px 0 75px;
    background-color: var(--color-bg-light);
}

.itinerary-query-grid {
    display: grid;
    grid-template-columns: 1.58fr 1.02fr;
    gap: 40px;
    align-items: start;
}

/* Left Column: Itinerary Header */
.itinerary-header-block {
    margin-bottom: 24px;
}

.itinerary-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-olive-accent);
    margin-bottom: 6px;
}

.itinerary-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #1A281E;
    line-height: 1.25;
    margin-bottom: 6px;
}

.itinerary-duration-badge {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Day Cards Stack */
.itinerary-days-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.itinerary-day-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    padding: 12px 18px 12px 12px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.itinerary-day-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: #D6DEC8;
}

.day-thumb-wrap {
    width: 150px;
    height: 100px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #E2DBD0;
}

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

.itinerary-day-card:hover .day-thumb-wrap img {
    transform: scale(1.05);
}

.day-badge-wrap {
    flex-shrink: 0;
}

.day-number-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #193826;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(16, 40, 24, 0.22);
}

.day-number-circle .day-lbl {
    font-size: 8.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    line-height: 1;
}

.day-number-circle .day-num {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.day-details-body {
    flex: 1;
}

.day-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #1A281E;
    line-height: 1.3;
    margin-bottom: 4px;
}

.day-location-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--color-olive-accent);
    font-weight: 500;
    margin-bottom: 6px;
}

.day-location-meta i {
    font-size: 11px;
}

.day-desc-text {
    font-size: 12.8px;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* Right Column: Sticky Query / Booking Card */
.query-form-column {
    position: relative;
}

.sticky-query-card {
    position: sticky;
    top: 92px;
    background: linear-gradient(170deg, #102B1D 0%, #0B1F15 100%);
    border-radius: 14px;
    padding: 34px 28px 30px;
    color: #FFFFFF;
    box-shadow: 0 16px 36px rgba(10, 28, 18, 0.28);
    overflow: hidden;
    position: relative;
}

.card-tiger-watermark {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.query-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
}

.query-eyebrow {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8CA484;
    margin-bottom: 6px;
}

.query-title {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.2px;
}

/* Query Form Inputs */
.query-booking-form {
    position: relative;
    z-index: 2;
}

.form-group-custom {
    margin-bottom: 16px;
}

.form-label-custom {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.required-star {
    color: #E2A662;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13.5px;
    pointer-events: none;
}

.form-control-custom {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 10.5px 14px 10.5px 38px;
    color: #FFFFFF;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control-custom:focus {
    border-color: var(--color-amber-gold);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(206, 134, 57, 0.2);
}

/* Submit Button */
.form-submit-wrap {
    margin-top: 22px;
}

.btn-submit-query {
    width: 100%;
    background: linear-gradient(135deg, #CF883B 0%, #B87329 100%);
    color: #FFFFFF;
    padding: 12px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(184, 115, 41, 0.35);
    transition: var(--transition-smooth);
}

.btn-submit-query:hover {
    background: linear-gradient(135deg, #DF9442 0%, #C47B2C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(184, 115, 41, 0.48);
}

.submit-arrow {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.btn-submit-query:hover .submit-arrow {
    transform: translateX(4px);
}

/* Form Feedback & Trust Seal */
.form-feedback-message {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12.5px;
    line-height: 1.4;
    text-align: center;
}

.form-feedback-message.success {
    background-color: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #85F5B0;
}

.form-feedback-message.error {
    background-color: rgba(235, 77, 75, 0.2);
    border: 1px solid rgba(235, 77, 75, 0.4);
    color: #FFAAA8;
}

.trust-seal-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.trust-icon {
    color: #8CA484;
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   8. Bottom 5-Column Highlights / Policies Section (tour-details.php)
   -------------------------------------------------------------------------- */
.tour-policies-section {
    background-color: #F8F5EE;
    padding: 55px 0 65px;
    border-top: 1px solid #E8E2D6;
}

.policies-grid-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.policy-item-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.policy-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-sage-bg);
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
}

.policy-item-col:hover .policy-icon-badge {
    transform: scale(1.08);
    background-color: #D3DDCB;
}

.policy-col-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #1B291F;
    margin-bottom: 12px;
    line-height: 1.3;
}

.policy-bullet-list {
    list-style: none;
    padding: 0;
}

.policy-bullet-list li {
    font-size: 12.8px;
    line-height: 1.6;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 14px;
    margin-bottom: 5px;
}

.policy-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-olive-light);
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   9. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-forest-footer);
    color: var(--color-text-white);
    padding: 48px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-brand .footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.logo-safari-jeep-footer {
    width: 32px;
    height: 26px;
}

.footer-paw-icon {
    font-size: 12px;
    color: #8EA784;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-tagline {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.1px;
}

.footer-nav-list,
.footer-destinations-list,
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-nav-list li a,
.footer-destinations-list li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    transition: var(--transition-smooth);
}

.footer-nav-list li a:hover,
.footer-destinations-list li a:hover {
    color: #FFFFFF;
    padding-left: 3px;
}

.contact-item-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item-link i {
    color: #8EA784;
    font-size: 13px;
}

.contact-item-link:hover {
    color: #FFFFFF;
}

.footer-social-circles {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: #FFFFFF;
    color: var(--color-forest-footer);
    transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   10. Responsive Design & Media Queries
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1080px) {
    .itinerary-query-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-query-card {
        position: static;
        max-width: 580px;
        margin: 0 auto;
    }

    .policies-grid-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media screen and (max-width: 860px) {
    .tour-item-card {
        grid-template-columns: 190px 1fr;
        gap: 18px;
    }

    .tour-card-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        padding-top: 12px;
        border-top: 1px solid #EDE7DC;
    }
}

@media screen and (max-width: 768px) {
    /* Safe space for bottom sticky bar */
    body {
        padding-bottom: 64px;
    }

    .header-container {
        height: 62px;
    }

    .brand-symbol {
        width: 150px;
    }

    /* Animated Hamburger Menu Button */
    .mobile-toggle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background-color: rgba(35, 72, 50, 0.06);
        border: none;
        cursor: pointer;
        gap: 5px;
        transition: var(--transition-smooth);
    }

    .mobile-toggle-btn .bar {
        width: 22px;
        height: 2.2px;
        background-color: var(--color-forest-primary);
        border-radius: 2px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    }

    .mobile-toggle-btn.is-active {
        background-color: rgba(35, 72, 50, 0.12);
    }

    .mobile-toggle-btn.is-active .bar:nth-child(1) {
        transform: translateY(7.2px) rotate(45deg);
    }

    .mobile-toggle-btn.is-active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-toggle-btn.is-active .bar:nth-child(3) {
        transform: translateY(-7.2px) rotate(-45deg);
    }

    /* Mobile Navigation Drawer */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top: 1px solid #ECE7DE;
    }

    .main-navigation.is-open {
        max-height: 540px;
        opacity: 1;
        visibility: visible;
        padding: 16px 18px 20px;
        overflow-y: auto;
    }

    .main-navigation .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }

    .main-navigation .nav-item {
        width: 100%;
    }

    .main-navigation .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 14px;
        border-radius: 10px;
        font-size: 14.5px;
        font-weight: 600;
        color: #2D3A31;
        background-color: transparent;
        transition: all 0.2s ease;
        width: 100%;
        text-decoration: none;
    }

    .main-navigation .nav-link:hover,
    .main-navigation .nav-link:active {
        background-color: rgba(35, 72, 50, 0.07);
        color: var(--color-forest-primary);
    }

    .main-navigation .nav-link.active {
        background-color: rgba(35, 72, 50, 0.1);
        color: var(--color-forest-primary);
        font-weight: 700;
    }

    .main-navigation .nav-link.active::after {
        display: none;
    }

    .nav-mobile-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background-color: rgba(35, 72, 50, 0.08);
        color: var(--color-forest-primary);
        font-size: 13.5px;
        flex-shrink: 0;
    }

    .main-navigation .nav-link.active .nav-mobile-icon {
        background-color: var(--color-forest-primary);
        color: #FFFFFF;
    }

    /* Mobile Drawer Quick Action Call / WhatsApp Buttons */
    .mobile-drawer-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #ECE7DE;
    }

    .drawer-phone-btn,
    .drawer-whatsapp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 10px 8px;
        border-radius: 9px;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
        min-height: 44px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.2s ease;
    }

    .drawer-phone-btn:active,
    .drawer-whatsapp-btn:active {
        transform: scale(0.97);
    }

    .drawer-phone-btn {
        background-color: var(--color-forest-primary);
        color: #FFFFFF;
    }

    .drawer-whatsapp-btn {
        background-color: #25D366;
        color: #FFFFFF;
    }

    /* Hero Category Cards & Banner (Mobile: 1 Card per Row) */
    .hero-media-wrapper {
        height: 250px;
        min-height: 220px;
    }

    .hero-tabs-outer {
        position: relative;
        bottom: auto;
        margin-top: -34px;
        margin-bottom: 20px;
        overflow-x: visible;
        padding: 0 16px;
        display: flex;
        justify-content: center;
    }

    .hero-tabs-outer::-webkit-scrollbar {
        display: none;
    }

    .hero-tab-capsule {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 480px;
        gap: 16px;
        box-shadow: none;
        padding: 0;
    }

    .tab-pill-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 0;
        padding: 14px 14px 18px;
        font-size: 16.5px;
        font-weight: 700;
        gap: 12px;
        border-radius: 16px;
        white-space: normal;
        background-color: var(--color-bg-capsule);
        border: 1.5px solid var(--color-border-capsule);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .tab-pill-btn .tab-icon {
        width: 100%;
        height: 160px;
        aspect-ratio: auto;
        font-size: 0;
        border-radius: 12px;
    }

    .tab-pill-btn .tab-label {
        max-width: none;
        padding: 0 4px;
        white-space: normal;
        text-align: center;
    }

    .tab-pill-btn:active {
        background-color: var(--color-forest-active);
        border-color: var(--color-forest-active);
        color: var(--color-text-white);
        transform: scale(0.98);
    }

    .tab-pill-btn:active .tab-label {
        color: var(--color-text-white);
    }

    .explore-section {
        padding-top: 24px;
    }

    /* Floating Sticky Mobile Quick Action Bar (Bottom of Screen) */
    .mobile-sticky-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background-color: #FFFFFF;
        box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.13);
        z-index: 9999;
        border-top: 1px solid #EAE4DA;
    }

    .mobile-bar-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #556358;
        font-size: 10.5px;
        font-weight: 600;
        transition: all 0.2s ease;
        padding: 5px 2px 3px;
        border-right: 1px solid #F6F3ED;
    }

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

    .mobile-bar-btn .bar-icon-wrap {
        font-size: 16px;
        margin-bottom: 2px;
        transition: transform 0.2s ease;
    }

    .mobile-bar-btn:active .bar-icon-wrap {
        transform: scale(0.9);
    }

    .mobile-bar-btn.call-action {
        color: var(--color-forest-primary);
    }

    .mobile-bar-btn.whatsapp-action {
        color: #128C7E;
    }

    .mobile-bar-btn.whatsapp-action:active {
        color: #25D366;
    }

    .mobile-bar-btn.active {
        color: var(--color-forest-primary);
        background-color: rgba(35, 72, 50, 0.06);
        position: relative;
    }

    .mobile-bar-btn.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 20%;
        right: 20%;
        height: 3px;
        background-color: var(--color-forest-primary);
        border-radius: 0 0 3px 3px;
    }

    /* Tour Packages Listing & Detail Responsive Elements */
    .tour-hero-section {
        height: 280px;
    }

    .tours-page-title {
        font-size: 27px;
    }

    .tour-item-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tour-card-thumb {
        height: 180px;
    }

    .itinerary-day-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .day-thumb-wrap {
        width: 100%;
        height: 180px;
    }

    .policies-grid-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* --------------------------------------------------------------------------
   11. Hotel Listing Page Styles (hotels.php)
   -------------------------------------------------------------------------- */
.hotels-list-section {
    padding: 44px 0 85px;
    background-color: var(--color-bg-light);
}

.hotels-header-block {
    margin-bottom: 38px;
}

.hotels-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-olive-accent);
    margin-bottom: 8px;
}

.hotels-page-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: #19291E;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.hotels-page-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 680px;
    line-height: 1.6;
}

/* Check-in & Check-out Quick Dates Search Bar */
.hotel-dates-filter-wrap {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
}

.hotel-dates-filter-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr auto;
    gap: 16px;
    align-items: flex-end;
}

.date-filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-filter-lbl {
    font-size: 11.5px;
    font-weight: 600;
    color: #2F3E34;
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-filter-lbl i {
    color: var(--color-forest-primary);
}

.date-filter-input,
.date-filter-select {
    border: 1px solid #D8D2C5;
    border-radius: 8px;
    padding: 8.5px 12px;
    font-size: 13px;
    color: #2D3930;
    background-color: #FAF8F5;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    width: 100%;
}

.date-filter-input:focus,
.date-filter-select:focus {
    border-color: var(--color-forest-primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 2px rgba(35, 72, 50, 0.15);
}

.btn-filter-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-forest-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    height: 38px;
}

.btn-filter-search:hover {
    background-color: var(--color-forest-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(35, 72, 50, 0.25);
}

/* 7 Hotel Horizontal Cards Stack */
.hotels-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 1060px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Filter & Sort Bar (Hotels Listing Page)
   -------------------------------------------------------------------------- */
.hotels-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    padding: 12px 18px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.hotels-found-count {
    font-size: 14.5px;
    color: #334155;
}

.hotels-found-count strong {
    color: #0F172A;
    font-weight: 700;
}

.hotels-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-label {
    font-size: 13.5px;
    color: #64748B;
    font-weight: 500;
}

.sort-select-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.sort-select-pill:hover {
    border-color: #94A3B8;
}

.sort-select-pill i {
    font-size: 11px;
    color: #64748B;
}

/* --------------------------------------------------------------------------
   Hotel Cards Stack (Reference Design: Media + 4 Thumbs + Perks + More Room)
   -------------------------------------------------------------------------- */
.hotels-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-item-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px;
    align-items: stretch;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 4px;
}

.hotel-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    border-color: #CBD5E1;
}

/* Media Wrap: Single Big Photo */
.hotel-card-media-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.hotel-card-thumb-main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 230px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #E2E8F0;
}

.hotel-card-thumb-main a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.hotel-item-card:hover .hotel-card-thumb-main img {
    transform: scale(1.04);
}

.hotel-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #16A34A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 3.5px 10px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hotel-card-gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 100%;
}

.gallery-thumb-item {
    position: relative;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    background-color: #E2E8F0;
    display: block;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-thumb-more {
    position: relative;
}

.gallery-more-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.65);
    color: #FFFFFF;
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.2s ease;
}

.gallery-thumb-more:hover .gallery-more-overlay {
    background-color: rgba(15, 23, 42, 0.8);
}

/* Card Info: Left Section + Right Pricing Section */
.hotel-card-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 6px 8px 6px 4px;
    width: 100%;
}

.hotel-info-left {
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    min-width: 0;
}

.hotel-title-rating-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel-title {
    font-family: var(--font-heading);
    font-size: 18.5px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    margin: 0;
}

.hotel-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hotel-title a:hover {
    color: var(--color-forest-primary);
}

.hotel-star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2.5px;
    color: #F59E0B;
    font-size: 12.5px;
}

.hotel-location-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

.hotel-location-row i {
    font-size: 12px;
    color: #94A3B8;
}

.hotel-perks-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
}

.hotel-perk-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #15803D;
}

.perk-check {
    font-size: 11.5px;
    color: #16A34A;
}

.hotel-proximity-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px;
    color: #475569;
    line-height: 1.4;
    margin-top: 2px;
}

.proximity-icon {
    font-size: 11px;
    color: #64748B;
    margin-top: 2px;
    flex-shrink: 0;
}

.hotel-title-contacts {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

/* Right Section: Pricing & More Room CTA */
.hotel-pricing-cta-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    text-align: right;
    min-width: 140px;
    flex-shrink: 0;
}

.hotel-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.price-original {
    font-size: 12.5px;
    font-weight: 600;
    color: #DC2626;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-main-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hotel-pricing-cta-col .price-val {
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    font-family: var(--font-body);
    letter-spacing: -0.5px;
}

.price-taxes {
    font-size: 11px;
    color: #64748B;
    margin-top: 3px;
    font-weight: 500;
}

.price-period {
    font-size: 11.5px;
    color: #64748B;
    font-weight: 500;
}

.btn-more-room {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1B7A38;
    color: #FFFFFF;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(27, 122, 56, 0.25);
    min-width: 115px;
    text-align: center;
}

.btn-more-room:hover {
    background-color: #145C2A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 122, 56, 0.35);
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   12. Featured Hotels Grid Section (hotels.php alternate showcase)
   -------------------------------------------------------------------------- */
.featured-hotels-grid-section {
    background-color: #F8F5EE;
    padding: 60px 0 75px;
    border-top: 1px solid #E8E2D6;
}

.featured-heading-center {
    text-align: center;
    margin-bottom: 38px;
}

.leaf-accent-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.leaf-line {
    width: 40px;
    height: 1.5px;
    background-color: var(--color-olive-light);
    border-radius: 1px;
}

.leaf-icon {
    font-size: 13px;
    color: var(--color-forest-primary);
}

.featured-main-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 8px;
}

.featured-main-subtitle {
    font-size: 13.5px;
    color: var(--color-text-muted);
}

.featured-grid-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.featured-hotel-card {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.featured-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(18, 36, 24, 0.1);
    border-color: #D6DEC8;
}

.featured-card-media {
    width: 100%;
    height: 155px;
    overflow: hidden;
    background-color: #E2DBD0;
}

.featured-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-hotel-card:hover .featured-card-media img {
    transform: scale(1.06);
}

.featured-card-content {
    padding: 16px;
}

.featured-hotel-title {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 5px;
    line-height: 1.3;
}

.featured-hotel-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--color-olive-accent);
    margin-bottom: 12px;
}

.featured-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.feat-contact-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.feat-phone {
    background-color: var(--color-forest-active);
}

.feat-wa {
    background-color: #25D366;
}

.feat-contact-btn:hover {
    transform: scale(1.08);
}

.featured-view-btn {
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid var(--color-forest-active);
    color: var(--color-forest-active);
    font-size: 12px;
    font-weight: 600;
    padding: 7px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.featured-view-btn:hover {
    background-color: var(--color-forest-active);
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   13. Hotel Details Page Styles (hotel-details.php)
   -------------------------------------------------------------------------- */
.hotel-hero-panorama-section {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background-color: #1B2920;
}

.resort-hero-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.resort-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(10, 24, 16, 0.45) 100%
    );
    pointer-events: none;
}

.hotel-content-section {
    padding: 40px 0 80px;
    background-color: var(--color-bg-light);
}

/* Hotel Overview Card */
.hotel-overview-card {
    display: grid;
    grid-template-columns: 240px 1fr 200px;
    gap: 28px;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    padding: 16px 22px 16px 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 44px;
}

.overview-thumb-wrap {
    width: 100%;
    height: 135px;
    border-radius: 9px;
    overflow: hidden;
    background-color: #E2DBD0;
}

.overview-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-hotel-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #192A1E;
    margin-bottom: 7px;
    line-height: 1.25;
}

.overview-hotel-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.overview-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.rating-stars-badge {
    background-color: #F7F5EE;
    border: 1px solid #E6E0D4;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.stars-gold {
    color: #E6A734;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.rating-score {
    font-size: 13px;
    font-weight: 700;
    color: #1F2E23;
}

.rating-reviews-lbl {
    font-size: 11px;
    color: var(--color-text-subtle);
}

/* Rooms & Suites Section Header */
.rooms-suites-header {
    margin-bottom: 24px;
}

.rooms-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 6px;
}

.rooms-accent-bar {
    width: 48px;
    height: 2px;
    background-color: var(--color-olive-light);
    border-radius: 1px;
}

/* Rooms List Stack */
.rooms-list-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}

.room-item-card {
    display: grid;
    grid-template-columns: 240px 1fr 180px;
    gap: 28px;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    padding: 14px 22px 14px 14px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.room-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: #D4DEC8;
}

.room-card-thumb {
    width: 100%;
    height: 140px;
    border-radius: 9px;
    overflow: hidden;
    background-color: #E2DBD0;
}

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

.room-item-card:hover .room-card-thumb img {
    transform: scale(1.05);
}

.room-title {
    font-family: var(--font-heading);
    font-size: 19.5px;
    font-weight: 600;
    color: #1A281E;
    line-height: 1.3;
    margin-bottom: 4px;
}

.room-subtitle {
    font-size: 12.8px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 14px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #4C5C4F;
    font-weight: 500;
}

.amenity-item i {
    color: #6C8165;
    font-size: 11.5px;
}

.room-card-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

.price-amount-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #19291E;
}

.price-unit {
    font-size: 12px;
    color: var(--color-text-subtle);
}

.btn-book-room {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-forest-active);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 8.5px 22px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 10px rgba(26, 53, 35, 0.18);
}

.btn-book-room:hover {
    background-color: var(--color-forest-hover);
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(26, 53, 35, 0.28);
}

.book-arrow {
    font-size: 15px;
    transition: transform 0.25s ease;
}

.btn-book-room:hover .book-arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   14. Hotel Booking Policy 5-Column Card (hotel-details.php)
   -------------------------------------------------------------------------- */
.hotel-policies-wrapper {
    width: 100%;
}

.hotel-booking-policy-card {
    background-color: #F5F2EA;
    border: 1px solid #E6DFD2;
    border-radius: 12px;
    padding: 26px 28px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: center;
}

.policy-header-col {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid #E0D8C8;
    padding-right: 24px;
}

.policy-main-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: #DFE7D8;
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 4px;
}

.policy-subtitle {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.policy-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.policy-data-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.policy-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #DFE7D8;
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 8px;
}

.policy-item-title {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: #1B291F;
    margin-bottom: 4px;
}

.policy-item-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   15. Custom Modal Dialog (Room Booking)
   -------------------------------------------------------------------------- */
.custom-modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 26, 18, 0.72);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.custom-modal-backdrop.is-open {
    display: flex;
}

.custom-modal-dialog {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.32);
    position: relative;
    animation: modalPop 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
    scrollbar-width: thin;
    scrollbar-color: #CAD5C8 #F7F5F0;
    box-sizing: border-box;
}

.custom-modal-dialog::-webkit-scrollbar {
    width: 6px;
}

.custom-modal-dialog::-webkit-scrollbar-track {
    background: #F7F5F0;
    border-radius: 10px;
}

.custom-modal-dialog::-webkit-scrollbar-thumb {
    background: #CAD5C8;
    border-radius: 10px;
}

.custom-modal-dialog::-webkit-scrollbar-thumb:hover {
    background: #9DB09A;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header-custom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-card);
}

.modal-title-wrap {
    display: flex;
    flex-direction: column;
}

.modal-eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-forest-active);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.modal-title-custom {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    color: #1A281E;
    line-height: 1.2;
    margin: 0;
}

.modal-subtitle-custom {
    font-size: 12px;
    color: var(--color-text-subtle);
    margin: 3px 0 0;
}

.modal-close-btn {
    font-size: 28px;
    line-height: 1;
    color: var(--color-text-subtle);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    margin-left: 12px;
}

.modal-close-btn:hover {
    color: #E74C3C;
    transform: scale(1.1);
}

/* Modal Form Layout & Form Controls */
.modal-booking-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.form-label-custom {
    font-size: 12.5px;
    font-weight: 600;
    color: #213224;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.required-star {
    color: #E74C3C;
    font-weight: bold;
    font-size: 13px;
    line-height: 1;
}

.form-control-custom {
    width: 100%;
    height: 42px;
    padding: 8px 13px;
    background-color: #FAF8F4;
    border: 1.5px solid #D8D1C3;
    border-radius: 8px;
    font-size: 13.5px;
    color: #1A281E;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-control-custom::placeholder {
    color: #97A398;
    font-size: 12.5px;
}

.form-control-custom:focus {
    background-color: #FFFFFF;
    border-color: var(--color-forest-active);
    outline: none;
    box-shadow: 0 0 0 3px rgba(25, 56, 38, 0.14);
}

select.form-control-custom {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23193826' d='M6 8.5L1.5 4h9L6 8.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
}

textarea.form-control-custom {
    height: auto;
    min-height: 60px;
    padding: 9px 13px;
    line-height: 1.5;
    resize: vertical;
}

/* Modal Selected Room Display Badge */
.modal-room-display-pill {
    display: flex;
    align-items: center;
    background-color: #EDF4EA;
    border: 1.5px solid #C1D8BC;
    border-radius: 8px;
    padding: 0 12px;
    gap: 10px;
    height: 42px;
    box-sizing: border-box;
}

.modal-room-display-pill i {
    color: var(--color-forest-active);
    font-size: 15px;
    flex-shrink: 0;
}

.modal-room-display-pill input.form-control-custom {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    height: 100% !important;
    box-shadow: none !important;
    font-weight: 700;
    color: #193826 !important;
    font-size: 14.5px;
    cursor: default;
}

.modal-dates-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-submit-modal-booking {
    width: 100%;
    background-color: var(--color-forest-active);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(26, 53, 35, 0.2);
    transition: var(--transition-smooth);
    margin-top: 6px;
    cursor: pointer;
    border: none;
}

.btn-submit-modal-booking:hover {
    background-color: var(--color-forest-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 53, 35, 0.28);
}

.modal-feedback-box {
    margin: 8px 0;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12.5px;
    text-align: center;
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #157A3C;
}

/* --------------------------------------------------------------------------
   16. Additional Responsive Styles for Hotels
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1080px) {
    .hotel-booking-policy-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-header-col {
        border-right: none;
        border-bottom: 1px solid #E0D8C8;
        padding-right: 0;
        padding-bottom: 16px;
    }

    .policy-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media screen and (max-width: 860px) {
    .hotel-item-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 12px;
    }

    .hotel-card-thumb-main {
        height: 220px;
    }

    .hotel-card-gallery-strip {
        gap: 4px;
    }

    .gallery-thumb-item {
        height: 60px;
    }

    .hotel-overview-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .overview-rating-wrap {
        align-items: flex-start;
    }

    .room-item-card {
        grid-template-columns: 190px 1fr;
        gap: 20px;
    }

    .room-card-pricing {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #EAE4DA;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile View Exactly Matching Reference Image */
    .hotel-item-card {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 10px 10px 12px;
        border-radius: 14px;
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
        margin-bottom: 16px;
    }

    .hotel-card-thumb-main {
        height: 220px;
        min-height: 220px;
        border-radius: 10px;
    }

    .hotel-card-gallery-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
    }

    .gallery-thumb-item {
        height: 52px;
        border-radius: 5px;
    }

    .gallery-more-overlay {
        font-size: 11px;
    }

    .hotel-card-info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 12px;
        padding: 4px 4px 2px;
    }

    .hotel-info-left {
        flex: 1;
        min-width: 0;
        gap: 5px;
    }

    .hotel-title {
        font-size: 15.5px;
        line-height: 1.25;
    }

    .hotel-star-rating {
        font-size: 11.5px;
    }

    .hotel-location-row {
        font-size: 11.5px;
        gap: 4px;
    }

    .hotel-perks-list {
        gap: 3px;
        margin-top: 2px;
    }

    .hotel-perk-item {
        font-size: 11.5px;
        gap: 5px;
    }

    .perk-check {
        font-size: 10.5px;
    }

    .hotel-proximity-note {
        font-size: 11px;
        line-height: 1.35;
        gap: 5px;
    }

    .proximity-icon {
        font-size: 10px;
    }

    .hotel-pricing-cta-col {
        min-width: 110px;
        flex-shrink: 0;
        align-items: flex-end;
        gap: 8px;
    }

    .price-original {
        font-size: 11.5px;
    }

    .hotel-pricing-cta-col .price-val {
        font-size: 21px;
    }

    .price-taxes {
        font-size: 10px;
    }

    .price-period {
        font-size: 10.5px;
    }

    .btn-more-room {
        font-size: 12.5px;
        padding: 7.5px 14px;
        min-width: 96px;
        border-radius: 7px;
    }

    .hotels-filter-bar {
        padding: 10px 14px;
        margin-bottom: 16px;
    }

    .hotels-found-count {
        font-size: 13.5px;
    }

    .sort-select-pill {
        padding: 5px 10px;
        font-size: 12px;
    }

    .room-item-card {
        grid-template-columns: 1fr;
    }

    .room-card-thumb {
        height: 180px;
    }

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

    .policy-details-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hotel-card-thumb-main {
        height: 180px;
    }

    .gallery-thumb-item {
        height: 48px;
    }

    .hotel-title {
        font-size: 14.5px;
    }

    .hotel-pricing-cta-col .price-val {
        font-size: 19.5px;
    }

    .btn-more-room {
        font-size: 12px;
        padding: 6.5px 12px;
        min-width: 88px;
    }
}

@media screen and (max-width: 380px) {
    .hotel-card-info {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hotel-pricing-cta-col {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-top: 1px dashed #E2E8F0;
        padding-top: 10px;
    }

    .hotel-price-block {
        align-items: flex-start;
        text-align: left;
    }
}

/* --------------------------------------------------------------------------
   17. Room Details & Gallery Page (hotel-details.php new reference)
   -------------------------------------------------------------------------- */
.room-details-page-main {
    background-color: var(--color-bg-light);
}

/* Room Hero Banner with Back Button & Counter */
.room-hero-gallery-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background-color: #162B1F;
}

.room-hero-media-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.room-hero-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transition: opacity 0.4s ease;
}

.room-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(10, 26, 17, 0.45) 100%
    );
    pointer-events: none;
}

/* Floating Back Button */
.hero-back-link {
    position: absolute;
    top: 24px;
    left: 28px;
    z-index: 15;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(10, 28, 18, 0.78);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-back-link:hover {
    background-color: var(--color-forest-active);
    transform: translateX(-3px);
}

/* Photo Counter Badge (1/10) */
.hero-photo-counter {
    position: absolute;
    bottom: 22px;
    right: 28px;
    z-index: 15;
    background-color: rgba(10, 28, 18, 0.85);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-photo-counter i {
    font-size: 12px;
    opacity: 0.8;
}

/* Resort Info Header Block */
.resort-info-header-section {
    padding: 34px 0 24px;
    background-color: var(--color-bg-light);
}

.resort-title-rating-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.resort-name-main {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #192A1E;
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.resort-loc-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-olive-accent);
    font-weight: 500;
    margin-top: 5px;
}

.resort-loc-meta i {
    font-size: 12px;
}

.resort-rating-badge-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.rating-dark-pill {
    background-color: #193826;
    color: #FFFFFF;
    padding: 4.5px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(22, 50, 33, 0.2);
}

.rating-star-icon {
    color: #E6A734;
    font-size: 12px;
}

.reviews-count-text {
    font-size: 11px;
    color: var(--color-text-subtle);
}

.hotel-star-category-badge {
    background-color: #FFFFFF;
    border: 1px solid #DFD9CD;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
}

.hotel-star-category-badge .star-cat-label {
    font-size: 13px;
    font-weight: 700;
    color: #1A281E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-star-category-badge .stars-gold {
    display: flex;
    gap: 3px;
    color: #E6A734;
    font-size: 13px;
}

.hotel-star-category-badge .star-cat-sub {
    font-size: 11px;
    color: var(--color-text-subtle);
}

.hotel-highlights-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hotel-highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: #384A3B;
    line-height: 1.5;
}

.hotel-highlights-list li i {
    color: var(--color-forest-active);
    font-size: 14px;
    flex-shrink: 0;
}

.resort-narrative-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 800px;
    margin-bottom: 22px;
}

/* 4 Amenities Capsule Badges Row */
.resort-amenity-pills-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity-capsule-badge {
    background-color: #F1ECE3;
    border: 1px solid #E2D9CB;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #38453D;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.amenity-capsule-badge i {
    color: #556D4E;
    font-size: 13px;
}

.amenity-capsule-badge:hover {
    background-color: #DFE8D7;
    border-color: #C6D6BB;
    color: var(--color-forest-primary);
}

/* Room Categories Section */
.room-categories-section {
    padding: 10px 0 55px;
}

.room-categories-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 20px;
}

.room-cards-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 960px;
}

.room-category-card {
    display: grid;
    grid-template-columns: 210px 1fr 130px;
    gap: 24px;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-card);
    border-radius: 12px;
    padding: 12px 18px 12px 12px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.room-category-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
    border-color: #D4DEC8;
}

.room-cat-thumb {
    width: 100%;
    height: 130px;
    border-radius: 9px;
    overflow: hidden;
    background-color: #E2DBD0;
}

.room-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-category-card:hover .room-cat-thumb img {
    transform: scale(1.05);
}

.room-cat-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.room-cat-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.room-cat-heading {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: #1A281E;
    margin: 0;
}

.room-price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.room-price-val {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #193826;
}

.room-price-lbl {
    font-size: 12px;
    color: var(--color-text-subtle);
    font-weight: 500;
}

.room-cat-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.room-amenities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    margin-top: 6px;
}

.room-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #F6F4EE;
    border: 1px solid #E6E0D4;
    border-radius: 6px;
    padding: 3.5px 9px;
    font-size: 11.5px;
    color: #384A3B;
    font-weight: 500;
}

.room-tag i {
    color: var(--color-forest-active);
    font-size: 11px;
}

.room-cat-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.room-contact-btns-pair {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-contact-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.room-contact-icon-btn.phone {
    background-color: #1C3E2A;
}

.room-contact-icon-btn.phone:hover {
    background-color: #132D1E;
    transform: scale(1.08);
}

.room-contact-icon-btn.whatsapp {
    background-color: #25D366;
}

.room-contact-icon-btn.whatsapp:hover {
    background-color: #1EBD5A;
    transform: scale(1.08);
}

.btn-select-room {
    background-color: #193826;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 7.5px 22px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 3px 8px rgba(22, 50, 33, 0.18);
}

.btn-select-room:hover {
    background-color: #11271A;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(22, 50, 33, 0.28);
}

/* Gallery Section (10 Photos Grid Matching Image) */
.resort-gallery-section {
    padding: 20px 0 85px;
    background-color: var(--color-bg-light);
}

.gallery-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 20px;
}

.gallery-photos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.gallery-photo-item {
    position: relative;
    aspect-ratio: 1 / 0.85;
    border-radius: 10px;
    overflow: hidden;
    background-color: #E2DBD0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-photo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 38, 25, 0.15);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 42, 28, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

/* Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(6, 18, 12, 0.88);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.gallery-lightbox-modal.is-open {
    display: flex;
}

.lightbox-content-box {
    position: relative;
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    position: relative;
    max-height: 80vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image-container img {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-counter-label {
    position: absolute;
    bottom: 14px;
    left: 18px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    color: #FFFFFF;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close-btn:hover {
    color: #E74C3C;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.lightbox-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-arrow.prev {
    left: -60px;
}

.lightbox-arrow.next {
    right: -60px;
}

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

    .lightbox-arrow.prev {
        left: 10px;
    }

    .lightbox-arrow.next {
        right: 10px;
    }
}

@media screen and (max-width: 768px) {
    .room-hero-gallery-banner {
        height: 320px;
    }

    .resort-title-rating-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .resort-rating-badge-block {
        align-items: flex-start;
        margin-top: 8px;
    }

    .resort-name-main {
        font-size: 26px;
    }

    .room-category-card {
        grid-template-columns: 1fr;
    }

    .room-cat-thumb {
        height: 180px;
    }

    .room-cat-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid #EAE4DA;
        width: 100%;
    }

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

/* --------------------------------------------------------------------------
   17.1 Hotel Policies, Facilities & Reviews Sections (hotel-details.php)
   -------------------------------------------------------------------------- */

/* Booking Policies Section */
.resort-policies-section {
    padding: 55px 0 40px;
    background-color: #F8F5EE;
    border-top: 1px solid #EAE3D6;
}

.policies-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 24px;
}

.policies-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.policy-item-box {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD2;
    border-radius: 10px;
    padding: 20px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.policy-item-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
    border-color: #D4DEC8;
}

.policy-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background-color: #EBF2E8;
    color: var(--color-forest-active);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.policy-content {
    flex: 1;
}

.policy-name {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 5px;
}

.policy-desc {
    font-size: 12.5px;
    color: #4C5C4F;
    line-height: 1.5;
    margin: 0;
}

.policy-desc strong {
    color: #1A281E;
}

/* Facilities & Amenities Section */
.resort-facilities-section {
    padding: 55px 0;
    background-color: #FFFFFF;
    border-top: 1px solid #EAE3D6;
}

.facilities-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 24px;
}

.facilities-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.facility-card {
    background-color: #F8F6F0;
    border: 1px solid #EAE4DA;
    border-radius: 10px;
    padding: 22px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.facility-card:hover {
    transform: translateY(-3px);
    border-color: #C8D7BE;
    background-color: #F3EFE6;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.facility-icon {
    font-size: 26px;
    color: var(--color-forest-active);
    margin-bottom: 12px;
}

.facility-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 6px;
}

.facility-desc {
    font-size: 11.5px;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin: 0;
}

/* Guest Reviews Section */
.resort-reviews-section {
    padding: 55px 0 85px;
    background-color: #F8F5EE;
    border-top: 1px solid #EAE3D6;
}

.reviews-header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.reviews-section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: #1A281E;
    margin: 0;
}

.overall-rating-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #FFFFFF;
    border: 1px solid #DFD9CD;
    border-radius: 10px;
    padding: 10px 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.rating-big-score {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #193826;
    line-height: 1;
}

.rating-stars-and-count {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rating-summary-text {
    font-size: 11.5px;
    color: var(--color-text-subtle);
    font-weight: 500;
}

.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guest-review-card {
    background-color: #FFFFFF;
    border: 1px solid #E5DFD2;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.review-top-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #193826;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #1A281E;
    margin: 0 0 2px;
}

.review-date {
    font-size: 11.5px;
    color: var(--color-text-subtle);
}

.review-rating-stars {
    color: #E6A734;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.review-body {
    font-size: 13.5px;
    color: #384A3B;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Responsive queries for hotel details extra sections */
@media screen and (max-width: 1080px) {
    .policies-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media screen and (max-width: 768px) {
    .hotel-star-category-badge {
        align-items: flex-start;
        width: 100%;
    }

    .policies-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .reviews-cards-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header-block {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .facilities-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   14. Safari Booking Page Specific Styles (safari-booking.php - Reference Design)
   -------------------------------------------------------------------------- */
.safari-booking-page-main {
    background-color: #FAF8F5;
}

.safari-booking-main-section {
    position: relative;
    padding: 32px 0 44px;
    background-color: #FAF8F5;
}

.safari-booking-container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.safari-booking-layout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.88fr;
    gap: 26px;
    align-items: start;
}

/* ==========================================================================
   LEFT COLUMN: Compare Rates & Safari Prices (from ranthamborenationalpark.in)
   ========================================================================== */
.safari-details-left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Section Title */
.booking-section-head {
    margin-bottom: 2px;
}

.booking-section-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.2px;
    line-height: 1.3;
    margin: 0;
}

.booking-section-title .gold {
    color: #C2542D;
    position: relative;
}

/* Alert Banner */
.booking-alert {
    background-color: #0E3823;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(14, 56, 35, 0.12);
}

.booking-alert-ic {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #22C55E;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.booking-alert-text {
    font-size: 12.5px;
    font-weight: 500;
    color: #F0FDF4;
    margin: 0;
    line-height: 1.4;
}

.booking-alert-text strong {
    color: #86EFAC;
    font-weight: 700;
}

/* Equal Safari Cards Container */
.safari-cards-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Both Equal Cards */
.sc-card {
    background-color: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    outline: none;
}

.sc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.sc-card.active {
    border-color: #C2542D;
    box-shadow: 0 6px 20px rgba(194, 84, 45, 0.15);
}

.sc-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1B4D3E, #2D6A4F);
}

.sc-accent--gold {
    background: linear-gradient(90deg, #D97706, #F59E0B);
}

/* Card Internal Layout: Left 240px, Right 1fr */
.sc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    flex: 1;
    align-items: stretch;
}

/* Left Pricing Block */
.sc-pricing {
    padding: 16px 18px;
    background-color: #FCFBF9;
    border-right: 1px solid #F0ECE6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.sc-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sc-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-icon--gold {
    background: #FEF3C7;
}

.sc-icon img {
    max-width: 32px;
    max-height: 24px;
    object-fit: contain;
}

.sc-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sc-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1B4D3E;
    background: rgba(27, 77, 62, 0.08);
    padding: 2px 7px;
    border-radius: 4px;
}

.sc-tag--gold {
    color: #B45309;
    background: rgba(180, 83, 9, 0.1);
}

.sc-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.25;
}

/* Prices */
.sc-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px dashed #E5E0D8;
}

.sc-price {
    display: flex;
    flex-direction: column;
}

.sc-price-lbl {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.sc-price strong {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.sc-price-unit {
    font-size: 10.5px;
    color: #9CA3AF;
    font-weight: 500;
}

/* Right Details Block */
.sc-details {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FFFFFF;
}

.sc-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;
}

.sc-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.sc-detail-ic {
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.sc-detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sc-detail-content strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.2;
}

.sc-detail-content p {
    font-size: 11.5px;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

.sc-tags {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sc-tags span {
    font-size: 10.5px;
    color: #C2542D;
    font-weight: 600;
    background: #FEF3F0;
    padding: 1px 6px;
    border-radius: 3px;
    display: inline-block;
    align-self: flex-start;
    white-space: nowrap;
}

/* Bottom Inclusions Strip */
.sc-includes-wrap {
    background-color: #FAF8F5;
    border-top: 1px solid #EFEAE3;
    padding: 8px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sc-includes {
    font-size: 11px;
    color: #4B5563;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.35;
}

/* 3 Policy Items Strip */
.booking-info-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.booking-foot-item {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 9px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.bf-ic {
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.booking-foot-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-foot-item b {
    font-size: 12px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.25;
}

.booking-foot-item span {
    font-size: 10.5px;
    color: #6B7280;
    line-height: 1.35;
}

/* ==========================================================================
   RIGHT COLUMN: Booking Card, Calendar & Form
   ========================================================================== */
.safari-booking-right-col {
    position: sticky;
    top: 90px;
}

.book-safari-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Header Bar */
.book-card-header-bar {
    padding: 16px 20px 14px;
    border-bottom: 1px solid #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.book-header-title {
    font-family: var(--font-heading), 'Outfit', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.book-header-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.from-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
}

.from-amount {
    font-size: 16.5px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    font-family: var(--font-heading), 'Outfit', sans-serif;
}

.book-card-inner-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Calendar Section */
.cal-start-date-label {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 2px;
}

.safari-calendar-box {
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 14px;
    background-color: #FFFFFF;
}

.cal-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-nav-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    background-color: #FFFFFF;
    color: #374151;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.cal-nav-btn:hover {
    background-color: #F3F4F6;
    border-color: #D1D5DB;
}

.cal-month-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
}

.cal-weekdays-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
    text-align: center;
}

.cal-weekdays-row span {
    font-size: 10px;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cal-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px 4px;
    margin-bottom: 10px;
    justify-items: center;
}

.cal-day-cell {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.15s ease;
    cursor: default;
    user-select: none;
    box-sizing: border-box;
}

.cal-day-cell.faded {
    color: #CBD5E1;
    background: transparent;
    cursor: not-allowed;
}

.cal-day-cell.available {
    background-color: #E8F7EE;
    color: #166534;
    cursor: pointer;
    font-weight: 700;
}

.cal-day-cell.available:hover {
    background-color: #CBF2D8;
    transform: scale(1.05);
}

.cal-day-cell.booked {
    color: #EA580C;
    background-color: #FFEDD5;
    cursor: not-allowed;
}

.cal-day-cell.closed {
    color: #EF4444;
    background: transparent;
    cursor: not-allowed;
}

.cal-day-cell.active {
    background-color: #C2542D !important;
    color: #FFFFFF !important;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(194, 84, 45, 0.35);
    transform: scale(1.08);
}

.cal-legend-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 10.5px;
    color: #6B7280;
    padding: 6px 0 4px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.dot-available {
    background-color: #22C55E;
}

.dot-booked {
    background-color: #F97316;
}

.dot-closed {
    background-color: #EF4444;
}

.cal-status-pill {
    background-color: #ECFDF5;
    border: 1px solid #D1FAE5;
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    font-size: 11.5px;
    font-weight: 600;
    color: #065F46;
    margin-top: 6px;
    transition: all 0.25s ease;
}

/* Booking Form Elements */
.safari-booking-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-fields-dual-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field-group.full-width {
    width: 100%;
}

.field-label {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.booking-select-input,
.booking-text-input {
    width: 100%;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    color: #1F2937;
    background-color: #FFFFFF;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.booking-select-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 9px center;
    padding-right: 24px;
    cursor: pointer;
}

.booking-select-input:focus,
.booking-text-input:focus {
    border-color: #C2542D;
    box-shadow: 0 0 0 2px rgba(194, 84, 45, 0.15);
}

/* Rust Terracotta CTA Button */
.form-submit-row {
    margin-top: 2px;
}

.btn-book-now-rust {
    width: 100%;
    background-color: #C2542D;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(194, 84, 45, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-book-now-rust:hover {
    background-color: #AF441F;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(194, 84, 45, 0.35);
}

.form-child-disclaimer {
    font-size: 10.5px;
    color: #6B7280;
    text-align: center;
    margin: 4px 0 0;
    line-height: 1.35;
}

.safari-form-feedback {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

.safari-form-feedback.success {
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.safari-form-feedback.error {
    background-color: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

/* ==========================================================================
   SAFARI BOOKING RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 992px) {
    .safari-booking-main-section {
        padding: 24px 0 36px;
    }

    .safari-booking-container {
        padding: 0 16px;
    }

    .safari-booking-layout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .safari-booking-right-col {
        position: static;
        order: 1;
        width: 100%;
    }

    .safari-details-left-col {
        order: 2;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .safari-booking-main-section {
        padding: 18px 0 28px;
    }

    .safari-booking-container {
        padding: 0 12px;
    }

    .booking-section-title {
        font-size: 20px;
    }

    .book-card-inner-body {
        padding: 14px 12px 18px;
    }

    /* Mobile View: Strictly 2 inputs in one row */
    .form-fields-dual-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .form-field-group {
        gap: 2px;
        min-width: 0;
    }

    .field-label {
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .booking-select-input,
    .booking-text-input {
        padding: 7px 6px;
        font-size: 11px;
        border-radius: 5px;
        height: 33px;
        box-sizing: border-box;
    }

    .booking-select-input {
        padding-right: 16px;
        background-position: right 4px center;
        background-size: 8px 8px;
    }

    .btn-book-now-rust {
        padding: 10px 12px;
        font-size: 12.5px;
    }
}

@media (max-width: 768px) {
    .sc-layout {
        grid-template-columns: 1fr;
    }

    .sc-pricing {
        border-right: none;
        border-bottom: 1px solid #F0ECE6;
    }

    .sc-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-info-foot {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ---- Safari Page Content Sections ---- */
.safari-section-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: #1A3328;
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.safari-section-sub {
    font-size: 14px;
    color: #5A685E;
    line-height: 1.55;
    margin: 0;
    max-width: 640px;
}

.safari-section-header {
    margin-bottom: 28px;
}

.safari-section-header.center {
    text-align: center;
}

.safari-section-header.center .safari-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.safari-about-section {
    padding: 64px 0 56px;
    background: #FAF8F5;
}

.safari-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.safari-about-text {
    font-size: 14.5px;
    color: #3A4840;
    line-height: 1.7;
    margin: 0 0 14px;
}

.safari-fact-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.safari-fact-item {
    background: #FFFFFF;
    border: 1px solid #E6E0D4;
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
}

.safari-fact-item .fact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #6B756C;
    margin-bottom: 4px;
}

.safari-fact-item .fact-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #1A3328;
}

.safari-about-media {
    border-radius: 14px;
    overflow: hidden;
    height: 340px;
    box-shadow: 0 12px 28px rgba(18, 36, 24, 0.12);
}

.safari-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.safari-plan-section {
    padding: 56px 0 60px;
    background: #FFFFFF;
}

.safari-plan-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.safari-plan-step {
    background: #FAF8F5;
    border: 1px solid #E8E3D8;
    border-radius: 12px;
    padding: 22px 18px 20px;
}

.plan-step-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #C86B45;
    margin-bottom: 10px;
}

.safari-plan-step h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #1A3328;
    margin: 0 0 8px;
}

.safari-plan-step p {
    font-size: 13.5px;
    color: #556257;
    line-height: 1.55;
    margin: 0;
}

.safari-zones-section {
    padding: 56px 0 52px;
    background: #F3F0E9;
}

.safari-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.safari-zone-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px 16px;
    border: 1px solid #E4DFD5;
}

.zone-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #E8F0E4;
    color: #1E412C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.safari-zone-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #1A3328;
    margin: 0 0 4px;
}

.zone-time {
    font-size: 12px;
    font-weight: 700;
    color: #C86B45;
    margin: 0 0 8px;
}

.safari-zone-card p:last-child {
    font-size: 13px;
    color: #556257;
    line-height: 1.5;
    margin: 0;
}

.safari-zone-note {
    margin: 18px 0 0;
    font-size: 12.5px;
    color: #5C4A2E;
    background: #FBF6E8;
    border: 1px solid #EAD9B0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.safari-zone-note i {
    color: #9A6B2F;
    margin-top: 2px;
}

.safari-why-section {
    padding: 56px 0 52px;
    background: #FFFFFF;
}

.safari-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.safari-why-card {
    text-align: center;
    background: #FAF8F5;
    border: 1px solid #E8E3D8;
    border-radius: 12px;
    padding: 24px 16px 22px;
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #1E412C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.safari-why-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #1A3328;
    margin: 0 0 8px;
}

.safari-why-card p {
    font-size: 13px;
    color: #556257;
    line-height: 1.5;
    margin: 0;
}

.safari-faq-section {
    padding: 56px 0 60px;
    background: #FAF8F5;
}

.safari-faq-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.safari-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    background: #1E412C;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.safari-faq-cta:hover {
    background: #163622;
    color: #FFFFFF;
}

.safari-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safari-faq-item {
    background: #FFFFFF;
    border: 1px solid #E6E0D4;
    border-radius: 10px;
    padding: 0 16px;
}

.safari-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    color: #1A3328;
    padding: 14px 0;
    position: relative;
    padding-right: 24px;
}

.safari-faq-item summary::-webkit-details-marker {
    display: none;
}

.safari-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #1E412C;
    font-weight: 500;
}

.safari-faq-item[open] summary::after {
    content: '−';
}

.safari-faq-item p {
    margin: 0 0 14px;
    font-size: 13.5px;
    color: #556257;
    line-height: 1.6;
    padding-bottom: 2px;
}

/* Legacy vehicle section (unused on redesigned page) */
.safari-vehicles-section {
    padding: 20px 0 65px;
    background-color: #FAF8F5;
}

.vehicles-header-block {
    margin-bottom: 24px;
}

.vehicles-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.vehicle-header-icon {
    font-size: 26px;
    color: #1E2E20;
}

.vehicles-main-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: #1E2E20;
    letter-spacing: -0.2px;
}

.vehicles-subtitle {
    font-size: 13.5px;
    color: #647065;
}

.vehicles-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vehicle-card-item {
    background-color: #FFFFFF;
    border: 1px solid #E4DFD5;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.vehicle-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(22, 38, 25, 0.1);
    border-color: #D2DCBA;
}

.vehicle-card-thumb {
    height: 195px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background-color: #E2DBD0;
}

.vehicle-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vehicle-card-item:hover .vehicle-card-thumb img {
    transform: scale(1.06);
}

.vehicle-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #1C2B1D;
    margin-bottom: 8px;
}

.vehicle-meta-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #556254;
    margin-bottom: 14px;
}

.vehicle-meta-tags .meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vehicle-meta-tags .meta-tag i {
    font-size: 11px;
    color: #6D7F6B;
}

.vehicle-meta-tags .tag-divider {
    color: #CDD4CC;
    font-size: 10px;
}

.vehicle-price-row {
    margin-top: auto;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.vehicle-price-row .price-val {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;
    color: #1B291D;
}

.vehicle-price-row .price-lbl {
    font-size: 12px;
    color: #728072;
}

/* Section 3: Panoramic Bottom Callout Banner */
.safari-destination-banner {
    position: relative;
    min-height: 130px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #122217;
}

.destination-banner-bg {
    position: absolute;
    inset: 0;
}

.dest-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-bg-darkener {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 28, 18, 0.94) 0%, rgba(14, 28, 18, 0.88) 55%, rgba(14, 28, 18, 0.72) 100%);
}

.dest-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    gap: 30px;
}

.dest-location-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.dest-pin-icon {
    color: #A6C4A0;
    font-size: 18px;
}

.dest-main-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: -0.2px;
}

.dest-main-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    line-height: 1.5;
}

.btn-explore-packages {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.btn-explore-packages:hover {
    background-color: #FFFFFF;
    color: #182C1D;
    border-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-explore-packages .btn-arrow {
    transition: transform 0.25s ease;
}

.btn-explore-packages:hover .btn-arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   15. Sleek Unified Master Footer (Matching Reference Detail Pages)
   -------------------------------------------------------------------------- */
.site-footer.master-sleek-footer,
.site-footer.safari-compact-footer {
    background-color: #0E1D13;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sleek-footer-container,
.compact-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sleek-footer-brand,
.compact-footer-brand {
    text-decoration: none;
    flex-shrink: 0;
}

.sleek-logo-mark,
.compact-logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.elephant-svg-logo {
    width: 42px;
    height: 28px;
}

.sleek-logo-text,
.compact-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name-gti {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-sub-travels {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    margin-top: 2px;
}

.sleek-footer-divider,
.compact-footer-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.22);
    margin: 0 10px;
}

.sleek-footer-nav,
.compact-footer-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
}

.sleek-footer-nav a,
.compact-footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.sleek-footer-nav a:hover,
.sleek-footer-nav a.active,
.compact-footer-nav a:hover,
.compact-footer-nav a.active {
    color: #FFFFFF;
    font-weight: 600;
}

.sleek-footer-nav .sep-bar,
.compact-footer-nav .sep-bar {
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
}

.sleek-footer-socials,
.compact-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.social-circle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #0E1D13;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background-color: #A6C4A0;
    color: #0E1D13;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sleek-footer-bottom-bar {
    max-width: 1200px;
    margin: 14px auto 0;
    padding: 12px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.sleek-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

/* Safari Booking Responsive Breakpoints */
@media screen and (max-width: 1080px) {
    .safari-booking-layout-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
        margin: 0 auto;
    }

    .safari-card-body-stack {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .safari-booking-main-section {
        padding: 24px 0 32px;
    }

    .safari-about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .safari-about-media {
        height: 260px;
    }

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

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

    .safari-faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

@media screen and (max-width: 820px) {
    .safari-card-body-stack {
        grid-template-columns: 1fr;
    }

    .safari-options-grid {
        grid-template-columns: 1fr;
    }

    .safari-rules-grid {
        grid-template-columns: 1fr;
    }

    .vehicles-cards-grid {
        grid-template-columns: 1fr;
    }

    .dest-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-explore-packages {
        width: 100%;
        justify-content: center;
    }

    .sleek-footer-container,
    .compact-footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding: 24px 16px;
    }

    .sleek-footer-divider,
    .compact-footer-divider {
        display: none;
    }

    .sleek-footer-nav,
    .compact-footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 12px;
    }

    .sleek-footer-nav .sep-bar,
    .compact-footer-nav .sep-bar {
        opacity: 0.35;
    }

    .sleek-footer-socials,
    .compact-footer-socials {
        margin-left: 0;
    }
}

@media screen and (max-width: 600px) {
    .safari-calendar-booking-card,
    .safari-info-options-card {
        border-radius: 14px;
        padding: 18px 14px 16px;
    }

    .safari-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .safari-header-title {
        font-size: 22px;
    }

    .form-dual-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cal-day-cell {
        min-height: 34px;
        font-size: 12px;
        max-width: 34px;
    }

    .cal-legend-row {
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .btn-book-vehicle {
        width: 100%;
        justify-content: center;
    }

    .safari-section-heading {
        font-size: 24px;
    }

    .safari-fact-strip,
    .safari-plan-steps,
    .safari-zones-grid,
    .safari-why-grid {
        grid-template-columns: 1fr;
    }

    .safari-about-section,
    .safari-plan-section,
    .safari-zones-section,
    .safari-why-section,
    .safari-faq-section {
        padding: 44px 0 40px;
    }
}

/* --------------------------------------------------------------------------
   16. Contact Us & Get a Quote Page Specific Styles (contact.php)
   -------------------------------------------------------------------------- */
.contact-page-main {
    background-color: #FAF8F5;
    min-height: 100vh;
}

/* Contact Hero Banner */
.contact-hero-banner {
    position: relative;
    padding: 70px 0 60px;
    color: #FFFFFF;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 30, 20, 0.92) 0%, rgba(18, 42, 28, 0.85) 60%, rgba(10, 24, 15, 0.9) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.contact-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.contact-breadcrumbs a:hover {
    color: #A6C4A0;
}

.crumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.crumb-current {
    color: #A6C4A0;
    font-weight: 500;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Quick Contact Cards Grid (4 Columns) */
.contact-cards-section {
    padding: 35px 0 20px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card-item {
    background-color: #FFFFFF;
    border: 1px solid #E6E1D5;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 4px 16px rgba(20, 38, 26, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.contact-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(20, 38, 26, 0.1);
    border-color: #CAD5BD;
}

.contact-icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.phone-bubble {
    background-color: #EBF4EC;
    color: var(--color-forest-primary);
}

.whatsapp-bubble {
    background-color: #E8F8EE;
    color: #25D366;
}

.email-bubble {
    background-color: #F8EFEA;
    color: #C86B38;
}

.location-bubble {
    background-color: #EBF1F7;
    color: #2F6F9F;
}

.contact-card-item:hover .contact-icon-bubble {
    transform: scale(1.08);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: #1A291E;
    margin-bottom: 6px;
    line-height: 1.3;
}

.contact-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    flex: 1;
}

.contact-card-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.phone-action {
    color: var(--color-forest-primary);
}

.phone-action:hover {
    color: #12281C;
}

.whatsapp-action {
    color: #1DA851;
}

.whatsapp-action:hover {
    color: #127A38;
}

.email-action {
    color: #BA5A25;
}

.email-action:hover {
    color: #8C3E14;
}

.contact-card-action-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.contact-card-action-link:hover i {
    transform: translateX(4px);
}

.contact-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #556658;
    background-color: #F3EFE7;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* Main Section: Form (Left) & Guarantees (Right) */
.contact-form-guarantees-section {
    padding: 40px 0 65px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Left Column: Quote Form Card */
.contact-form-card {
    background-color: #FFFFFF;
    border: 1px solid #E8E3D8;
    border-radius: 16px;
    padding: 36px 34px;
    box-shadow: 0 4px 20px rgba(20, 38, 26, 0.04);
}

.contact-form-header {
    margin-bottom: 26px;
}

.form-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-forest-primary);
    margin-bottom: 6px;
}

.form-main-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: #1A281E;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.form-desc {
    font-size: 13.5px;
    color: #667266;
    line-height: 1.55;
}

.contact-quote-form {
    display: flex;
    flex-direction: column;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.form-row-single {
    margin-bottom: 16px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #203123;
    margin-bottom: 6px;
}

.field-label .required {
    color: #C0392B;
}

.input-with-icon,
.select-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: #7B8B7B;
    font-size: 13.5px;
    pointer-events: none;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid #D5CFC3;
    border-radius: 8px;
    padding: 10.5px 14px;
    font-size: 13.5px;
    color: #222222;
    background-color: #FFFFFF;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-with-icon .form-input {
    padding-left: 40px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23445544' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 95px;
    line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #2F5628;
    box-shadow: 0 0 0 2px rgba(47, 86, 40, 0.15);
}

.form-row-submit {
    margin-top: 10px;
}

.btn-quote-submit {
    width: 100%;
    background-color: var(--color-forest-primary);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 13.5px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(35, 72, 50, 0.25);
}

.btn-quote-submit:hover {
    background-color: var(--color-forest-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(35, 72, 50, 0.35);
}

.btn-quote-submit i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.btn-quote-submit:hover i {
    transform: translateX(4px);
}

.contact-feedback-box {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.contact-feedback-box.success {
    background-color: #E8F8EE;
    border: 1px solid #A3E4C0;
    color: #126338;
}

.contact-feedback-box.error {
    background-color: #FDE8E8;
    border: 1px solid #F8B4B4;
    color: #9B1C1C;
}

/* Right Column: Guarantees & Hotline Callout */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-guarantees-card {
    background-color: #EDE8DD;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 4px 16px rgba(20, 38, 26, 0.04);
}

.trust-card-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 600;
    color: #1A291E;
    margin-bottom: 8px;
}

.trust-card-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #556355;
    margin-bottom: 22px;
}

.guarantees-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.guarantee-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #DCE7D4;
    color: var(--color-forest-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-content {
    flex: 1;
}

.guarantee-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #1A291E;
    margin-bottom: 3px;
}

.guarantee-text {
    font-size: 12.5px;
    color: #586658;
    line-height: 1.5;
}

/* Direct Hotline Callout Card */
.direct-callout-card {
    background: linear-gradient(135deg, #11291B 0%, #0A1B12 100%);
    border-radius: 16px;
    padding: 26px 24px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 28, 18, 0.25);
}

.callout-tiger-graphic {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.callout-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.callout-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 18px;
    line-height: 1.5;
}

.btn-call-hotline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 10.5px 22px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-call-hotline:hover {
    background-color: #1EBD5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

/* FAQ Section */
.contact-faq-section {
    padding: 40px 0 75px;
    background-color: #FAF8F5;
}

.faq-header-block {
    text-align: center;
    margin-bottom: 36px;
}

.faq-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-forest-primary);
    margin-bottom: 6px;
    display: block;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #1A291E;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.faq-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
}

.faq-accordion-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card-item {
    background-color: #FFFFFF;
    border: 1px solid #E4DFD5;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(20, 38, 26, 0.03);
}

.faq-card-item:hover {
    border-color: #CCD6C0;
}

.faq-question-btn {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: #1A291E;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question-btn:hover {
    background-color: #FBF9F6;
    color: var(--color-forest-primary);
}

.faq-arrow {
    font-size: 13px;
    color: #7D8A7D;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.faq-card-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-forest-primary);
}

.faq-answer-panel {
    display: none;
    padding: 0 22px 20px;
    font-size: 13.5px;
    line-height: 1.65;
    color: #556255;
    border-top: 1px solid #F0ECE4;
    padding-top: 14px;
}

/* Responsive Styles for Contact Page and Mobile Header */
@media screen and (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-column {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .top-header-container {
        height: 34px;
        padding: 0 8px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
    }

    .mobile-top-phones {
        display: inline-flex !important;
    }

    .mobile-call-dropdown-wrap {
        display: inline-flex !important;
    }

    .top-whatsapp-link {
        padding: 3px 9px;
        font-size: 10.5px;
    }

    .contact-hero-banner {
        padding: 50px 0 45px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-cards-section {
        margin-top: -15px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

    .form-row-dual {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-main-title {
        font-size: 24px;
    }

    .faq-question-btn {
        font-size: 15.5px;
        padding: 16px 18px;
    }
}

@media screen and (max-width: 480px) {
    .mob-phone-chip {
        font-size: 10px;
    }

    .mobile-call-trigger-btn {
        padding: 5px 9px;
        font-size: 11px;
    }

    .top-header-container {
        justify-content: space-between;
    }
}

/* ==========================================================================
   17. Terms & Conditions Page Styles (terms-and-conditions.php)
   ========================================================================== */
.legal-page-main {
    min-height: 80vh;
    background-color: #FAF8F5;
}

.legal-hero-banner {
    position: relative;
    padding: 70px 0 60px;
    background-color: #142C1D;
    color: #FFFFFF;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.legal-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 44, 29, 0.88) 0%, rgba(15, 30, 20, 0.95) 100%);
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.legal-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.legal-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-breadcrumbs a:hover {
    color: #F7D488;
}

.legal-breadcrumbs .crumb-sep {
    opacity: 0.5;
}

.legal-breadcrumbs .crumb-current {
    color: #F7D488;
    font-weight: 500;
}

.legal-hero-title {
    font-family: var(--font-heading, serif);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 14px;
}

.legal-hero-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
}

.legal-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    color: #F3EBDD;
}

.legal-meta-badge i {
    color: #F7D488;
}

.legal-content-section {
    padding: 50px 0 80px;
}

.legal-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

.legal-nav-sidebar {
    position: sticky;
    top: 90px;
}

.legal-nav-card {
    background: #FFFFFF;
    border: 1px solid #E6E0D5;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.legal-nav-heading {
    font-size: 15px;
    font-weight: 700;
    color: #142C1D;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ECE7DD;
}

.legal-nav-heading i {
    color: #9C6328;
}

.legal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-nav-list li a {
    display: block;
    font-size: 13px;
    color: #3C4A3E;
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 6px;
    transition: all 0.2s;
    line-height: 1.4;
}

.legal-nav-list li a:hover,
.legal-nav-list li a.active {
    background-color: #F0F5EC;
    color: #1A4D2E;
    font-weight: 600;
    padding-left: 14px;
}

.legal-sidebar-help {
    margin-top: 22px;
    background: #F4F7F1;
    border: 1px solid #DCE6D5;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.legal-sidebar-help .help-icon {
    width: 36px;
    height: 36px;
    background: #1A4D2E;
    color: #FFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 8px;
}

.legal-sidebar-help h4 {
    font-size: 14px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 6px;
}

.legal-sidebar-help p {
    font-size: 12px;
    color: #4A5B4C;
    margin-bottom: 12px;
    line-height: 1.4;
}

.sidebar-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1A4D2E;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s;
}

.sidebar-call-btn:hover {
    background: #123620;
    color: #FFF;
}

.legal-body-content {
    background: #FFFFFF;
    border: 1px solid #E6DFD5;
    border-radius: 14px;
    padding: 36px 40px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.legal-block {
    margin-bottom: 36px;
    padding-bottom: 30px;
    border-bottom: 1px solid #F0ECE4;
}

.legal-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.clause-num {
    background: #1F3F2C;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 5px;
}

.legal-block-title {
    font-family: var(--font-heading, serif);
    font-size: 21px;
    font-weight: 700;
    color: #142C1D;
    line-height: 1.3;
}

.legal-block p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #374338;
    margin-bottom: 12px;
}

.legal-bullet-list {
    padding-left: 20px;
    margin: 14px 0;
}

.legal-bullet-list li {
    font-size: 14px;
    line-height: 1.65;
    color: #374338;
    margin-bottom: 8px;
}

.legal-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 13.5px;
    line-height: 1.5;
}

.legal-alert-box.alert-warning {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    color: #92400E;
}

.legal-alert-box.alert-warning i {
    font-size: 18px;
    margin-top: 2px;
    color: #D97706;
}

.legal-table-wrapper {
    overflow-x: auto;
    margin: 18px 0;
    border-radius: 8px;
    border: 1px solid #E2DDD5;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}

.legal-table th {
    background: #1F3F2C;
    color: #FFFFFF;
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
}

.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #EDE7DE;
    color: #333F34;
}

.legal-table tr:nth-child(even) td {
    background: #FAF8F5;
}

.badge-danger {
    display: inline-block;
    background: #FEE2E2;
    color: #991B1B;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.badge-warning {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.badge-success {
    display: inline-block;
    background: #DCFCE7;
    color: #166534;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.legal-contact-card {
    background: #FAF7F2;
    border: 1px solid #E5DFD5;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 14px;
}

.legal-contact-card .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.legal-contact-card .contact-line i {
    color: #1F3F2C;
    font-size: 16px;
    margin-top: 3px;
}

.legal-contact-card .contact-line a {
    color: #1F3F2C;
    font-weight: 600;
    text-decoration: none;
}

.legal-contact-card .contact-line a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   18. Pay Now Page Styles (pay-now.php)
   ========================================================================== */
.payment-page-main {
    min-height: 80vh;
    background-color: #FAF8F5;
}

.payment-hero-banner {
    position: relative;
    padding: 70px 0 60px;
    background-color: #142C1D;
    color: #FFFFFF;
    overflow: hidden;
}

.payment-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.payment-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
}

.payment-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 44, 29, 0.88) 0%, rgba(15, 30, 20, 0.96) 100%);
}

.payment-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.payment-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.payment-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.payment-breadcrumbs a:hover {
    color: #F7D488;
}

.payment-breadcrumbs .crumb-current {
    color: #F7D488;
    font-weight: 500;
}

.payment-hero-title {
    font-family: var(--font-heading, serif);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 14px;
}

.payment-hero-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
}

.payment-badges-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pay-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12.5px;
    color: #F3EBDD;
}

.pay-trust-badge i {
    color: #F7D488;
}

.payment-portal-section {
    padding: 50px 0 80px;
}

.payment-layout-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 36px;
    align-items: start;
}

.payment-form-card {
    background: #FFFFFF;
    border: 1px solid #E6DFD5;
    border-radius: 14px;
    padding: 34px 38px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pay-card-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #ECE6DB;
    padding-bottom: 18px;
}

.pay-card-eyebrow {
    font-size: 11px;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: #8C5B23;
    display: block;
    margin-bottom: 6px;
}

.pay-card-title {
    font-family: var(--font-heading, serif);
    font-size: 23px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 6px;
}

.pay-card-sub {
    font-size: 13.5px;
    color: #556658;
}

.highlight-amount-group {
    background: #F2F7EF;
    border: 1px solid #CFE2C7;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.amount-input-wrap {
    position: relative;
}

.rupee-prefix {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: #1F3F2C;
}

.amount-input {
    padding-left: 36px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1F3F2C !important;
    height: 48px;
}

.amount-hint {
    display: block;
    font-size: 12px;
    color: #4D634F;
    margin-top: 6px;
}

.payment-methods-block {
    margin: 26px 0;
    background: #FAF8F5;
    border: 1px solid #E6DFD5;
    border-radius: 12px;
    padding: 22px;
}

.methods-title {
    font-size: 16px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 14px;
}

.method-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.method-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1px solid #D8D2C7;
    border-radius: 8px;
    padding: 12px 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    font-weight: 600;
    color: #405042;
}

.method-tab-btn i {
    font-size: 17px;
    color: #9C6328;
}

.method-tab-btn:hover {
    border-color: #1F3F2C;
    background: #F4F7F2;
}

.method-tab-btn.active {
    background: #1F3F2C;
    border-color: #1F3F2C;
    color: #FFFFFF;
}

.method-tab-btn.active i {
    color: #F7D488;
}

.method-tab-pane {
    display: none;
}

.method-tab-pane.active {
    display: block;
}

.upi-method-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: center;
}

.upi-qr-card {
    text-align: center;
}

.qr-frame {
    background: #FFFFFF;
    border: 1px solid #E1DBD1;
    border-radius: 10px;
    padding: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qr-caption {
    display: block;
    font-size: 11px;
    color: #6C7A6E;
    margin-top: 6px;
    line-height: 1.3;
}

.upi-id-box {
    background: #FFFFFF;
    border: 1px solid #E2DCD2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.upi-label {
    font-size: 12px;
    color: #667768;
    display: block;
    margin-bottom: 4px;
}

.upi-copy-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upi-code {
    font-family: monospace;
    font-size: 15px;
    font-weight: 700;
    color: #1F3F2C;
    background: #F0F4EC;
    padding: 4px 10px;
    border-radius: 5px;
}

.btn-copy-upi {
    background: #1F3F2C;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy-upi:hover {
    background: #142C1D;
}

.upi-apps-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.app-chip {
    font-size: 11.5px;
    background: #FFFFFF;
    border: 1px solid #DDD6CB;
    padding: 4px 10px;
    border-radius: 20px;
    color: #374438;
}

.upi-note {
    font-size: 12.5px;
    color: #556658;
    margin-bottom: 10px;
    line-height: 1.4;
}

.cards-accepted-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #556658;
}

.cards-accepted-row i {
    font-size: 22px;
    color: #142C1D;
}

.rupay-badge {
    background: #005A9C;
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.bank-radio-card {
    background: #FFFFFF;
    border: 1px solid #D8D2C7;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.bank-radio-card:hover {
    border-color: #1F3F2C;
    background: #F4F7F2;
}

.bank-radio-card input:checked + .bank-name {
    color: #1F3F2C;
    font-weight: 700;
}

.neft-details-card {
    background: #FFFFFF;
    border: 1px solid #E1DBD2;
    border-radius: 10px;
    padding: 18px;
}

.neft-title {
    font-size: 15px;
    font-weight: 700;
    color: #142C1D;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.neft-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.neft-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px dashed #EDE8E0;
}

.neft-lbl {
    color: #6C7A6D;
}

.neft-val {
    font-weight: 600;
    color: #142C1D;
}

.neft-note {
    font-size: 12px;
    color: #4A5B4C;
    background: #F4F8F1;
    padding: 10px 12px;
    border-radius: 6px;
    line-height: 1.4;
}

.pay-agreement-wrap {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #4A584C;
    line-height: 1.45;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 2px;
}

.checkbox-label a {
    color: #1F3F2C;
    font-weight: 600;
}

.btn-proceed-payment {
    width: 100%;
    background: linear-gradient(135deg, #1F3F2C 0%, #2A5A3D 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 16.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(31, 63, 44, 0.25);
    transition: all 0.2s;
}

.btn-proceed-payment:hover {
    background: linear-gradient(135deg, #163021 0%, #224931 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(31, 63, 44, 0.35);
}

.payment-feedback-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: 10px;
    padding: 18px;
    margin-top: 20px;
}

.payment-feedback-alert .feedback-icon {
    font-size: 24px;
    color: #16A34A;
}

.payment-feedback-alert h4 {
    font-size: 16px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 6px;
}

.payment-feedback-alert p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #15803D;
    margin: 0;
}

.payment-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.payment-summary-card,
.payment-help-card,
.payment-mini-faq {
    background: #FFFFFF;
    border: 1px solid #E6DFD5;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.side-card-title {
    font-family: var(--font-heading, serif);
    font-size: 17px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 16px;
    border-bottom: 1px solid #ECE7DE;
    padding-bottom: 10px;
}

.assurance-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.assurance-item:last-child {
    margin-bottom: 0;
}

.assurance-icon {
    width: 36px;
    height: 36px;
    background: #F2F7EF;
    color: #1F3F2C;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.assurance-text strong {
    display: block;
    font-size: 13.5px;
    color: #142C1D;
    margin-bottom: 2px;
}

.assurance-text p {
    font-size: 12px;
    color: #556658;
    line-height: 1.4;
    margin: 0;
}

.help-tiger-icon {
    width: 44px;
    height: 44px;
    background: #1F3F2C;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.help-title {
    font-size: 16px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 6px;
}

.help-desc {
    font-size: 13px;
    color: #556658;
    line-height: 1.45;
    margin-bottom: 16px;
}

.help-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-side-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1F3F2C;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-side-call:hover {
    background: #142C1D;
    color: #FFF;
}

.btn-side-call.secondary-phone {
    background: #F0F4ED;
    color: #1F3F2C;
    border: 1px solid #CFDCC9;
}

.btn-side-call.secondary-phone:hover {
    background: #E2EBDD;
}

.btn-side-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-side-whatsapp:hover {
    background: #1EBE5D;
    color: #FFF;
}

.pay-faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ECE7DE;
    padding-bottom: 10px;
}

.pay-faq-item summary {
    font-size: 13.5px;
    font-weight: 600;
    color: #142C1D;
    cursor: pointer;
    outline: none;
}

.pay-faq-item p {
    font-size: 12.5px;
    color: #556658;
    line-height: 1.45;
    margin-top: 6px;
}

/* ==========================================================================
   19. About Us Page Styles (about-us.php)
   ========================================================================== */
.about-page-main {
    min-height: 80vh;
    background-color: #FFFFFF;
}

.about-hero-banner {
    position: relative;
    padding: 70px 0 60px;
    background-color: #142C1D;
    color: #FFFFFF;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 44, 29, 0.88) 0%, rgba(15, 30, 20, 0.96) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.about-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.about-breadcrumbs a:hover {
    color: #F7D488;
}

.about-breadcrumbs .crumb-current {
    color: #F7D488;
    font-weight: 500;
}

.about-hero-tag {
    font-size: 11.5px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #F7D488;
    display: inline-block;
    margin-bottom: 10px;
}

.about-hero-title {
    font-family: var(--font-heading, serif);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 14px;
}

.about-hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.about-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 16px 14px;
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-heading, serif);
    font-size: 30px;
    font-weight: 800;
    color: #F7D488;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
}

.about-story-section {
    padding: 70px 0;
    background-color: #FFFFFF;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.section-badge {
    font-size: 11.5px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #9C6328;
    display: block;
    margin-bottom: 8px;
}

.section-heading {
    font-family: var(--font-heading, serif);
    font-size: 30px;
    font-weight: 700;
    color: #142C1D;
    line-height: 1.3;
    margin-bottom: 18px;
}

.story-lead {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #263628;
    margin-bottom: 14px;
}

.about-story-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #4A584C;
    margin-bottom: 14px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #142C1D;
}

.highlight-item i {
    color: #1E6B3B;
    font-size: 16px;
}

.about-story-media {
    position: relative;
}

.media-stack {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.stack-img-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.media-card-floating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(20, 44, 29, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
}

.media-card-floating .float-icon {
    font-size: 24px;
    color: #F7D488;
}

.media-card-floating strong {
    display: block;
    font-size: 14px;
}

.media-card-floating span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.about-pillars-section {
    padding: 70px 0;
    background-color: #FAF7F2;
    border-top: 1px solid #EDE7DD;
    border-bottom: 1px solid #EDE7DD;
}

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

.section-subtext {
    font-size: 15px;
    color: #556658;
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid #E6E0D5;
    border-radius: 14px;
    padding: 30px 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #D3C9B8;
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    background: #F2F7EF;
    border: 1px solid #CFE2C7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1F3F2C;
    margin-bottom: 18px;
}

.pillar-title {
    font-family: var(--font-heading, serif);
    font-size: 18px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 10px;
}

.pillar-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #556658;
    margin: 0;
}

.about-conservation-section {
    padding: 60px 0;
}

.conservation-banner {
    background: linear-gradient(135deg, #142C1D 0%, #1F3F2C 100%);
    border-radius: 16px;
    padding: 44px 50px;
    color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(20, 44, 29, 0.2);
}

.banner-badge {
    font-size: 11.5px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #F7D488;
    display: inline-block;
    margin-bottom: 12px;
}

.banner-title {
    font-family: var(--font-heading, serif);
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.3;
}

.banner-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 820px;
    margin-bottom: 24px;
}

.banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-banner-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C49746;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-banner-primary:hover {
    background: #AC8239;
    color: #FFF;
}

.btn-banner-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 8px;
    transition: background 0.2s;
}

.btn-banner-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #FFF;
}

.about-contact-strip {
    padding: 0 0 70px;
}

.contact-strip-card {
    background: #FFFFFF;
    border: 2px solid #E4DCCE;
    border-radius: 14px;
    padding: 30px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.strip-title {
    font-family: var(--font-heading, serif);
    font-size: 21px;
    font-weight: 700;
    color: #142C1D;
    margin-bottom: 6px;
}

.strip-desc {
    font-size: 13.5px;
    color: #556658;
    margin: 0;
}

.strip-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.strip-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1F3F2C;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.strip-phone-btn:hover {
    background: #142C1D;
    color: #FFF;
}

.strip-phone-btn.secondary {
    background: #F0F4ED;
    color: #1F3F2C;
    border: 1px solid #CFDCC9;
}

.strip-phone-btn.secondary:hover {
    background: #E2EBDD;
}

.strip-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: background 0.2s;
}

.strip-wa-btn:hover {
    background: #1EBE5D;
    color: #FFF;
}

/* Responsive adjustments for Terms, Pay Now, and About Us */
@media screen and (max-width: 992px) {
    .legal-layout-grid,
    .payment-layout-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-nav-sidebar {
        position: static;
    }

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

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

    .contact-strip-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .strip-right {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .legal-hero-title,
    .payment-hero-title,
    .about-hero-title {
        font-size: 28px;
    }

    .legal-body-content,
    .payment-form-card {
        padding: 24px 18px;
    }

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

    .upi-method-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .upi-copy-row {
        justify-content: center;
    }

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

    .about-stats-strip {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .conservation-banner {
        padding: 30px 22px;
    }
}


