/* ============================================================
   Golden Valley Hotel — Custom Brand Styles
   Brand Colors: #002201 (Emerald Green), #c09142 (Yellow Gold), #8dc120 (Yellow Green)
   ============================================================ */

/* ---- Hero / Slider Section ---- */
.gvh-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #001a00;
}

.gvh-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.gvh-hero-slide.active { opacity: 1; }

.gvh-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
}

.gvh-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.gvh-hero-content .hero-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #c09142;
    margin-bottom: 16px;
}

.gvh-hero-content h1 {
    font-family: 'Gilda Display', serif;
    font-size: clamp(42px, 6vw, 90px);
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
}

.gvh-hero-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 0 32px;
    line-height: 1.7;
}

.gvh-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #c09142;
    color: #fff !important;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 2px solid #c09142;
    transition: all 0.3s;
}

.gvh-btn:hover {
    background: transparent;
    color: #c09142 !important;
}

.gvh-btn-outline {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,0.7);
    margin-left: 12px;
}

.gvh-btn-outline:hover {
    background: #fff;
    color: #002201 !important;
    border-color: #fff;
}

/* ---- Section Common ---- */
.gvh-section    { padding: 50px 0; }
.gvh-section-sm { padding: 50px 0; }

/* First section directly below header — extra top breathing room */
.gvh-section-first { padding-top: 100px !important; padding-bottom: 50px !important; }

/* Last section directly above footer — extra bottom breathing room */
.gvh-section-last  { padding-top: 50px !important;  padding-bottom: 100px !important; }

/* Only section on inner pages (is both first and last) */
.gvh-section-only  { padding-top: 100px !important; padding-bottom: 100px !important; }

.gvh-section-dark { background: #002201; color: #fff; }
.gvh-section-dark h2,
.gvh-section-dark h3,
.gvh-section-dark p { color: #fff; }

.gvh-section-gold { background: #c09142; color: #fff; }
.gvh-section-light { background: #f8f7f5; }

.gvh-section-title {
    font-family: 'Gilda Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    color: #002201;
    margin-bottom: 8px;
    line-height: 1.2;
    text-align: center;
}

.gvh-section-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c09142;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.gvh-divider {
    width: 50px;
    height: 3px;
    background: #c09142;
    margin: 16px auto 24px;
}

.gvh-divider-center { margin: 16px auto 24px; }

/* ================================================================
   QUICK BOOKING BAR — Fixed inputs, alignment, promo field
   ================================================================ */
.gvh-booking-bar {
    background: #002201;
    padding: 28px 0;
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

.gvh-booking-row {
    align-items: flex-end;
    margin-left: -10px;
    margin-right: -10px;
}

.gvh-booking-col {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.gvh-booking-label {
    color: rgba(255,255,255,0.65);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    min-height: 18px;
    font-family: 'Roboto', sans-serif;
}

.gvh-booking-input {
    width: 100% !important;
    height: 46px !important;
    box-sizing: border-box !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.40) !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-family: 'Roboto', sans-serif !important;
    flex-shrink: 0;
}

.gvh-booking-input::placeholder { color: rgba(255,255,255,0.4) !important; }

/* Native date picker — force white text on dark background */
input[type="date"].gvh-booking-input {
    color-scheme: dark;
    color: #fff !important;
}

/* Chrome: style internal date-edit parts explicitly */
input[type="date"].gvh-booking-input::-webkit-datetime-edit            { color: #fff; padding: 0; }
input[type="date"].gvh-booking-input::-webkit-datetime-edit-fields-wrapper { background: transparent; }
input[type="date"].gvh-booking-input::-webkit-datetime-edit-text        { color: rgba(255,255,255,0.45); }
input[type="date"].gvh-booking-input::-webkit-datetime-edit-month-field { color: #fff; }
input[type="date"].gvh-booking-input::-webkit-datetime-edit-day-field   { color: #fff; }
input[type="date"].gvh-booking-input::-webkit-datetime-edit-year-field  { color: #fff; }

input[type="date"].gvh-booking-input::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.7);
    cursor: pointer;
}

.gvh-booking-bar .btn-check-avail {
    width: 100% !important;
    height: 46px !important;
    background: #c09142;
    color: #fff;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gvh-booking-bar .btn-check-avail:hover { background: #a07835; }

@media (max-width: 767px) {
    .gvh-booking-col { margin-bottom: 14px; }
}

/* ---- About Section ---- */
.gvh-about-img {
    position: relative;
    border: 8px solid #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.gvh-about-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.gvh-star-rating {
    color: #c09142;
    font-size: 16px;
    margin: 10px 0;
}

/* ================================================================
   ROOM CARDS — Image background, hover reveal, 500px desktop
   ================================================================ */
.gvh-room-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
    cursor: pointer;
    background: #002201;
}

/* Background image layer */
.gvh-room-card .room-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
    will-change: transform;
}

.gvh-room-card:hover .room-bg {
    transform: scale(1.08);
}

/* Dark overlay — appears on hover */
.gvh-room-card .room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.6s ease;
    z-index: 1;
}

.gvh-room-card:hover .room-overlay {
    background: rgba(0,0,0,0.50);
}

/* Content container — anchored at bottom, grows upward */
.gvh-room-card .room-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    /* Gradient: transparent top → dark bottom */
    background: linear-gradient(
        transparent 0%,
        rgba(0,10,0,0.55) 35%,
        rgba(0,10,0,0.88) 100%
    );
    padding: 56px 22px 20px;
}

/* Room title — always visible at bottom */
.gvh-room-card .room-title {
    font-family: 'Gilda Display', serif;
    font-size: 21px;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gvh-room-card .room-title a {
    color: #fff;
    text-decoration: none;
}

/* Hover content — slides in below title */
.gvh-room-card .room-hover-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.55s ease, opacity 0.45s ease;
    margin-bottom: 0;
}

.gvh-room-card:hover .room-hover-content {
    max-height: 160px;
    opacity: 1;
    margin-bottom: 14px;
}

/* Description — max 3 lines with ellipsis */
.gvh-room-card .room-desc {
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Meta icons row */
.gvh-room-card .room-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.gvh-room-card .room-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.82);
    font-size: 12.5px;
}

.gvh-room-card .room-meta i {
    color: #c09142;
    font-size: 14px;
}

/* Action buttons */
.gvh-room-card .room-btns {
    display: flex;
    gap: 8px;
}

.room-btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: #c09142;
    color: #fff !important;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 1px solid #c09142;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.room-btn-book:hover {
    background: transparent;
    color: #c09142 !important;
}

.room-btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: transparent;
    color: rgba(255,255,255,0.9) !important;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.room-btn-detail:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.85);
    color: #fff !important;
}

@media (max-width: 991.98px) { .gvh-room-card { height: 380px; } }
@media (max-width: 575px)    { .gvh-room-card { height: 320px; } }

/* ================================================================
   SIDEBAR TOGGLE TAB
   ================================================================ */
.gvh-sidebar-tab {
    position: fixed;
    left: 280px;  /* matches open sidebar width */
    top: 80px;
    width: 28px;
    padding: 16px 0;
    background: #c09142;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1025;
    border-radius: 0 5px 5px 0;
    box-shadow: 3px 0 10px rgba(0,0,0,0.2);
    transition: left 0.4s ease, background 0.25s;
    user-select: none;
}

.gvh-sidebar-tab:hover { background: #002201; }

.tab-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}

/* Default: sidebar is OPEN — show "Close" */
.tab-label.tab-open  { display: none; }
.tab-label.tab-close { display: block; }

/* When body has sidebar-closed class — sidebar is CLOSED — show "Menu" */
body.sidebar-closed .gvh-sidebar-tab     { left: 100px; }
body.sidebar-closed .tab-label.tab-open  { display: block; }
body.sidebar-closed .tab-label.tab-close { display: none; }

@media (max-width: 991px) {
    .gvh-sidebar-tab { display: none; }
}

/* ---- Services / Amenities ---- */
.gvh-service-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    height: 100%;
}

.gvh-service-card:hover {
    border-color: #c09142;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(192,145,66,0.15);
}

.gvh-service-icon {
    width: 70px;
    height: 70px;
    background: #f8f0e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #c09142;
    transition: all 0.3s;
}

.gvh-service-card:hover .gvh-service-icon {
    background: #c09142;
    color: #fff;
}

.gvh-service-card h5 { font-size: 18px; color: #002201; margin-bottom: 10px; }

/* ---- Facilities ---- */
.gvh-facility-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.gvh-facility-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s;
}

.gvh-facility-item:hover img { transform: scale(1.06); }

.gvh-facility-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,34,1,0.9));
    padding: 30px 20px 20px;
    color: #fff;
}

.gvh-facility-caption h4 { color: #fff; margin: 0 0 4px; font-size: 22px; }
.gvh-facility-caption p  { color: rgba(255,255,255,0.8); font-size: 13px; margin: 0; }

/* ---- Gallery ---- */
.gvh-gallery-item {
    position: relative;
    overflow: hidden;
    height: 260px;
    margin-bottom: 4px;
}

.gvh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gvh-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,34,1,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gvh-gallery-item:hover .gvh-gallery-overlay { opacity: 1; }
.gvh-gallery-overlay i { color: #fff; font-size: 32px; }

/* ---- CTA Banner ---- */
.gvh-cta {
    background: linear-gradient(135deg, #002201 0%, #004403 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gvh-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png') center/auto repeat;
    opacity: 0.04;
}

.gvh-cta h2 { color: #fff; font-size: 38px; margin-bottom: 12px; }
.gvh-cta p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 32px; }

/* ---- Page Banner (Inner Pages) ---- */
.gvh-page-banner {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #002201;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

@media (max-width: 991.98px) {
    .gvh-page-banner { height: 300px; }
}

@media (max-width: 767px) {
    .gvh-page-banner { height: 300px; }
}

.gvh-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,20,0,0.55);
}

.gvh-page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.gvh-page-banner-content h1 {
    color: #fff;
    font-size: clamp(28px, 5vw, 52px);
    margin: 0 0 10px;
}

.gvh-breadcrumb { color: rgba(255,255,255,0.75); font-size: 14px; }
.gvh-breadcrumb a { color: #c09142; }

/* ---- Testimonials ---- */
.gvh-testimonial {
    background: #fff;
    border-left: 4px solid #c09142;
    padding: 30px;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gvh-testimonial p { flex: 1; }

.gvh-testimonial p { font-style: italic; color: #555; margin-bottom: 16px; line-height: 1.7; }
.gvh-testimonial-author { font-size: 14px; color: #002201; font-weight: 700; }
.gvh-testimonial-stars  { color: #c09142; font-size: 14px; margin-bottom: 8px; }

/* ---- Stats Counter (kept for other pages that may use it) ---- */
.gvh-stat {
    text-align: center;
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.gvh-stat:last-child { border-right: none; }
.gvh-stat .number { font-family: 'Gilda Display', serif; font-size: 52px; color: #c09142; line-height: 1; }
.gvh-stat .label  { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ---- Contact Form Area ---- */
.gvh-contact-info li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gvh-contact-info li .icon {
    width: 44px;
    height: 44px;
    background: #f8f0e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c09142;
    flex-shrink: 0;
}

/* ================================================================
   FOOTER — Full-width background, visible logo, clean layout
   ================================================================ */
.gvh-footer {
    background: #002201;
    border-top: 3px solid #c09142;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
}

.gvh-footer-inner {
    width: 100%;
}

.gvh-footer .footer-widgets {
    padding: 70px 0 50px;
}

.gvh-footer .footer-logo {
    display: block;
    height: 90px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 18px;
}

.gvh-subfooter {
    border-top: 1px solid rgba(255,255,255,0.12);
    background: #001500;
    padding: 18px 0;
}

/* ================================================================
   SIDEBAR HEADER — CRITICAL VISIBILITY FIXES
   Reference theme's main.js does three things we replicate here via CSS:
   1. $('header > div').removeClass('container') — removes Bootstrap constraints
   2. header.addClass('loaded-header')            — changes display:none → block
   3. menu visibility via animation              — we override directly
   ================================================================ */

/* 1. Make header visible (main.css hides it until JS adds 'loaded-header') */
header.vertical-header {
    display: block !important;
}

/* 2. Remove Bootstrap .container constraints inside the sidebar header */
header.vertical-header > .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 3. Force menu visible when sidebar is open — don't rely on animation */
header.vertical-header.open-header .main-menu {
    visibility: visible !important;
    opacity: 1 !important;
}

/* ================================================================
   SIDEBAR SUBMENU — desktop flyout (position:fixed escapes overflow clips)
   ================================================================ */

/* Desktop (≥992px): flyout to the right using position:fixed */
@media (min-width: 992px) {
    header.vertical-header .main-menu .submenu {
        position: fixed !important;
        left: 280px !important;      /* right edge of open sidebar */
        top: 0;                      /* overridden per-item by JS */
        z-index: 9999 !important;
        width: 220px !important;
        min-width: 220px !important;
        float: none !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        background: #fff !important;
        border-radius: 0 4px 4px 0 !important;
        box-shadow: 4px 4px 24px rgba(0,0,0,0.18) !important;
        border: none !important;
        border-left: 3px solid #c09142 !important;
        display: none;
        animation: none !important;
        -webkit-animation: none !important;
    }

    /* Show on hover — submenu is DOM child of .dropdown so hover is maintained */
    header.vertical-header .main-menu .dropdown:hover > .submenu {
        display: block !important;
    }

    /* Remove the flyout arrow bridges (not needed with fixed) */
    header.vertical-header .main-menu .menu .dropdown .submenu::before,
    header.vertical-header .main-menu .menu .dropdown .submenu::after {
        display: none !important;
    }
}

/* Mobile (<992px): inline expand with click toggle */
@media (max-width: 991.98px) {
    header.vertical-header .main-menu .submenu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        float: none !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        width: 100% !important;
        min-width: auto !important;
        background: #f5f5f0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        border: none !important;
        border-top: 1px solid #e8e8e0 !important;
        display: none;
        animation: none !important;
        -webkit-animation: none !important;
    }

    /* Show when parent has .open class (click-toggled by JS) */
    header.vertical-header .main-menu .dropdown.open > .submenu {
        display: block !important;
    }

    /* Sidebar gets vertical scroll when content overflows on mobile */
    header.vertical-header > .container {
        overflow-y: auto !important;
    }
}

/* Submenu link styles — shared across breakpoints */
header.vertical-header .main-menu .submenu li {
    border-bottom: 1px solid #f0f0eb !important;
}
header.vertical-header .main-menu .submenu li:last-child {
    border-bottom: none !important;
}
header.vertical-header .main-menu .submenu li a {
    padding: 10px 16px 10px 24px !important;
    font-size: 13px !important;
    color: #333 !important;
    display: block !important;
    text-decoration: none !important;
    transition: color 0.2s, background 0.2s, padding-left 0.2s !important;
}
header.vertical-header .main-menu .submenu li a:hover {
    color: #002201 !important;
    background: #f8f7f3 !important;
    padding-left: 28px !important;
}

/* Sidebar closed — hide logo and Book Now button */
body.sidebar-closed header.vertical-header .brand,
body.sidebar-closed header.vertical-header .gvh-sidebar-booknow {
    display: none !important;
}

/* ================================================================
   ROOM IMAGE SLIDER (page-accommodations.php)
   ================================================================ */
.gvh-room-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: #e8e8e0;
}
.gvh-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}
.gvh-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.gvh-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gvh-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 34, 1, 0.6);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gvh-slide-btn:hover { background: #c09142; }
.gvh-slide-prev { left: 0; }
.gvh-slide-next { right: 0; }
.gvh-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.gvh-dot {
    width: 9px;
    height: 9px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(255,255,255,0.3);
}
.gvh-dot.active { background: #c09142; border-color: #c09142; }

/* Dropdown arrow: FA4 font-family → FA5 */
header.vertical-header .main-menu .menu-item.dropdown:after {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: '\f107' !important;   /* fa-chevron-down */
    bottom: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 11px !important;
}

/* ================================================================
   SIDEBAR LAYOUT — flex column for logo + scrollable menu + Book Now
   ================================================================ */
header.vertical-header > .container {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Brand (logo area) — reduced gap: 30px between logo bottom and menu */
header.vertical-header .brand {
    flex-shrink: 0;
    padding: 20px 16px 30px !important;
}

header.vertical-header .brand .logo img {
    height: 56px !important;
    max-width: 210px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Menu fills remaining space, pushing Book Now to bottom */
header.vertical-header .main-menu {
    flex: 1 1 auto;
    top: 0 !important;
    width: 100% !important;
}

/* Book Now button — pinned at bottom of sidebar */
.gvh-sidebar-booknow {
    flex-shrink: 0;
    padding: 16px 20px 28px;
    text-align: center;
}

.gvh-sidebar-btn-book {
    display: block;
    background: #c09142;
    color: #fff !important;
    padding: 13px 20px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    border: 2px solid #c09142;
    transition: background 0.3s, color 0.3s;
}

.gvh-sidebar-btn-book:hover {
    background: #002201;
    border-color: #002201;
    color: #fff !important;
}

/* ---- Animations ---- */
.gvh-fade-in { animation: gvhFadeIn 0.8s ease both; }

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

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .gvh-hero   { height: 80vh; }
    .gvh-section { padding: 60px 0; }
    .gvh-stat   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 767px) {
    .gvh-hero              { height: 70vh; min-height: 480px; }
    .gvh-hero-content h1   { font-size: 32px; }
    .gvh-btn-outline       { margin-left: 0; margin-top: 10px; }
    .gvh-section           { padding: 50px 0; }
}
