:root {
    --hero-outline-color: rgba(255, 255, 255, 0.45);
    --hero-overlay-opacity: 0.55;
    --header-height: 105px;
    /* Adjusted for announcement bar + nav */
}

::selection {
    background: #034b29;
    color: #fff;
}

/* ========================================
   HEADER STYLES
   ======================================== */
.announcement-bar {
    background: #e67e22;
    /* Deep Navy Blue */
    font-size: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1040;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.announcement-bar a:hover {
    color: #fff !important;
    text-decoration: none !important;
    opacity: 0.9;
}

/* Fixed header at top with solid dark background */
#header.fixed-top {
    top: 0;
    background-color: #ffffff !important;
    /* Solid white background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

/* Show dropdown on hover for desktop */
@media (min-width: 1200px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Fix active nav link visibility on light header */
/* Improved Nav Link Styles */
#header.fixed-top .nav-link {
    color: var(--bs-body-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

#header.fixed-top .nav-link:hover,
#header.fixed-top .nav-link.active {
    color: var(--bs-primary) !important;
}

/* Underline cleaning hover effect */
#header.fixed-top .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--bs-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#header.fixed-top .nav-link:hover::after,
#header.fixed-top .nav-link.active::after {
    width: 25px;
}

#header .btn-primary {
    background-color: #e67e22;
    border-color: #ffffff;
    color: #ffffff;
}

#header .btn-primary:hover {
    background-color: #02381e;
    border-color: #02381e;
    color: #ffffff;
}

/* Push body content down so it starts after header */
body {
    padding-top: var(--header-height);
}

/* ========================================
   HERO CAROUSEL STRUCTURE
   ======================================== */
.hero-video {
    position: relative;
    overflow: hidden;
}

/* Hero carousel dimensions */
#heroCarousel {
    height: 70vh;
    min-height: 600px;
    max-height: 700px;
    max-width: 1400px;
    margin: 1rem auto 0;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient Overlay: Transparent Top to Dark Bottom for readability */
    background: linear-gradient(180deg, rgba(2, 33, 22, 0.1) 0%, rgba(2, 33, 22, 0.6) 100%);
    z-index: 2;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.hero-slide-content h4 {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
}

.hero-slide-content p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-highlight {
    color: #e67e22;
    /* Vibrant Orange */
    background: #e67e22;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    font-weight: 600;
}

/* ========================================
   CAROUSEL NAVIGATION BUTTONS
   ======================================== */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-nav-icon,
.carousel-control-next:hover .carousel-nav-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 25px;
    z-index: 10;
}

#heroCarousel .carousel-indicators button {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: scale(1.2);
}

/* ========================================
   HERO CTA BUTTONS
   ======================================== */
.hero-cta-group .btn-primary {
    background: #e67e22;
    /* Vibrant Orange */
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-group .btn-primary:hover {
    background: #d35400;
    /* Darker Orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.hero-cta-group .btn-outline-light {
    color: var(--bs-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    /* Glassmorphism */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-group .btn-outline-light:hover,
.hero-cta-group .btn-outline-light:focus-visible {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 991.98px) {
    #heroCarousel {
        height: 60vh;
        min-height: 450px;
        border-radius: 1.5rem;
        margin-top: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .hero-slide-content h4 {
        font-size: 1.75rem;
    }

    .hero-slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    #heroCarousel {
        height: 60vh;
        min-height: 425px;
        border-radius: 1.25rem;
        margin-top: 0.75rem;
    }

    .hero-slide-content h4 {
        font-size: 1.5rem;
    }

    .hero-slide-content p {
        font-size: 1rem;
    }

    .hero-cta-group .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    #heroCarousel .carousel-indicators {
        bottom: 15px;
    }
}

/* ========================================
   ORIGINAL STYLES (kept for compatibility)
   ======================================== */
.bg-overlay-green::before {
    background: rgba(21, 16, 46, 0.62);
}

.btn-glow {
    position: relative;
    box-shadow: 0 12px 30px rgba(35, 92, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-glow:hover,
.btn-glow:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(35, 92, 255, 0.4);
}

@media (max-width: 1199.98px) {

    /* Only keep hamburger button styling */
    .navbar-toggler {
        padding: 0.5rem;
        border-color: transparent;
        transition: all 0.2s ease-in-out;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon {
        transition: all 0.2s ease;
    }

    .navbar-toggler:hover .navbar-toggler-icon {
        transform: scale(1.1);
    }
}

/* Removed offcanvas-related styles */

@media (max-width: 575.98px) {
    /* Removed offcanvas-related styles */
}


.btn-get-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
}

.btn-get-quote i {
    font-size: 1rem;
}

.hero-video .hero-cta-group {
    margin-top: 1.75rem !important;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

/* Desktop check-room placement and width fix */
.hero-cta-wrapper {
    position: static;
    width: 100%;
    max-width: 730px;
    margin: 2.25rem auto 0 auto;
    z-index: 2;
}

/* Desktop check-room placement and width fix */
.check-room.d-lg-block {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    z-index: 20;
    margin-top: 1.25rem;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    background: none;
    box-shadow: none;
}

.card-check-room {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.18);
    background: rgba(24, 24, 24, 0.88);
    position: relative;
    z-index: 21;
}

.card-check-room .card-body {
    padding: 1.5rem 1.75rem 1.25rem !important;
}

.card-check-room .row.g-2>[class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.hero-cta-wrapper .card-check-room {
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.18);
    background: rgba(24, 24, 24, 0.88);
}

@media (max-width: 991.98px) {
    .hero-cta-wrapper .check-room.d-lg-block {
        display: none !important;
    }
}

.hero-video .hero-cta-group {
    margin-top: 1.75rem !important;
}

.hero-video .hero-cta-group .btn {
    box-shadow: 0 0.75rem 2.5rem rgba(12, 12, 12, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-video .hero-cta-group .btn:hover,
.hero-video .hero-cta-group .btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 1.1rem 2.75rem rgba(12, 12, 12, 0.28);
}

.hero-video .hero-cta-group .btn-outline-light {
    color: var(--bs-white);
    border-color: var(--hero-outline-color);
    background-color: rgba(255, 255, 255, 0.06);
}

/* Featured package cards */
.package-highlights {
    display: grid;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--bs-body-secondary);
}

.package-highlights li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.package-highlights li i {
    color: var(--bs-primary);
    font-size: 1rem;
    line-height: 1.1;
    margin-top: 0.1rem;
}

.package-highlights li span {
    line-height: 1.55;
}

.package-summary {
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-video .hero-cta-group .btn-outline-light:hover,
.hero-video .hero-cta-group .btn-outline-light:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

#quoteModal .modal-content {
    background: var(--bs-body-bg);
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1.5rem 3rem rgba(33, 37, 41, 0.18);
}

#quoteModal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#quoteModal .modal-body {
    padding-top: 1.25rem;
    padding-bottom: 1.5rem;
}

.hero-form-checklist {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bs-light-bg-subtle, rgba(248, 249, 250, 0.8));
}

.hero-form-checklist .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

#quoteSuccess {
    gap: 0.5rem;
}

/* Compact Quote Modal Text */
#quoteModal .modal-title {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

#quoteModal label {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

#quoteModal .form-control,
#quoteModal .form-select {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.75rem;
}

#quoteModal .form-control::placeholder {
    font-size: 0.8rem;
    text-transform: none;
}

#quoteModal .nav-link {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.5rem;
}

@media (min-width: 992px) {
    .hero-video .hero-cta-group {
        margin-top: 3rem !important;
    }

    .hero-video .video-caption {
        top: 55% !important;
    }
}

@media (min-width: 1400px) {
    .hero-video .video-caption {
        top: 58% !important;
    }
}

@media (max-width: 575.98px) {
    .hero-video .hero-cta-group .btn {
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
    }

    .hero-video .hero-cta-group {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .btn-get-quote {
        padding: 0.55rem;
        width: 44px;
        height: 44px;
        border-radius: 999px;
        gap: 0;
    }

    .btn-get-quote i {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {

    #header .navbar-brand .logo,
    .offcanvas-header .logo-light,
    #ocRightInfo .logo-light {
        height: auto;
        width: auto;
    }
}

@media (max-width: 991.98px) {
    .about-section-wrapper {
        justify-content: center !important;
        text-align: center;
    }

    .about-section-content {
        padding: 2.25rem 1.5rem;
    }

    .about-section-content .btn {
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    #about {
        padding-top: 3.6rem !important;
    }
}

#locationSelect option {
    background: rgba(24, 24, 24, 0.95);
    color: white;
}

.testimonial-slider .splide__slide figure {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    background-color: var(--bs-body-bg, #fff);
}

.testimonial-slider .splide__slide figure blockquote {
    margin-bottom: 2rem;
}

.testimonial-slider .splide__slide figure img {
    margin-bottom: 1.75rem;
}

/* Custom Hero Height for Desktop (Taxi Page) */
@media (min-width: 992px) {
    #pageTitle {
        min-height: 60vh !important;
    }
}