:root {
    --bs-body-bg: #0a0a0a;
    --bs-body-color: #f5f0e8;
    --black: #0a0a0a;
    --deep: #111014;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-dark: #9a7a30;
    --cream: #f5f0e8;
    --white: #ffffff;
    --red: #8b1a1a;
    --gray: #888;
    --border: rgba(201,168,76,0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-ui: 'Josefin Sans', sans-serif;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--cream);
    overflow-x: hidden;
    color: var(--bs-body-color); 
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand, .stat-num, .section-head h2, .event-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
}


.visible-xs { display: none!important; }
.hidden-xs { display: block!important; }

.section{ padding: 40px 0; }

/* ─── UTILITIES ─── */
.text-gold { color: var(--gold) !important; }
.text-cream { color: var(--cream) !important; }
.bg-deep { background-color: var(--deep); }
.border-gold { border-color: var(--gold) !important; }

a { text-decoration: none; color: inherit; transition: 0.2s; }



/* ─── NAVBAR ─── */
.navbar {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(10,10,10,0.98);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-brand .brand {
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 1px;
}

.navbar-brand .tagline {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px; 
    text-transform: uppercase;
    color: rgba(255,255,255,0.55) !important;
    margin: 0 10px;
    position: relative;
    padding: 10px 0 !important; 
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { width: 100%; }


.dropdown-toggle::after {
    display: none; 
}
.nav-link .bi-chevron-down {
    font-size: 0.7em;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.nav-link:hover .bi-chevron-down,
.dropdown-toggle.show .bi-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 15px 0;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: 15px; 
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    padding: 8px 25px;
    background: transparent;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.dropdown-item:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.05);
    border-left-color: var(--gold);
    padding-left: 30px; 
}


.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 20px!important; 
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    transition: background 0.2s !important;
    border-radius: 0;
    margin-top: 10px; 
    display: inline-block;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }




.navbar-toggler {
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    padding: 5px;
}
.navbar-toggler:focus { box-shadow: none; }



/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-bg-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(20,15,5,0.55)
    );
    z-index: -2;
}



.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.eyebrow-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px; 
    color: var(--gold);
    text-transform: uppercase;
}

.hero-h1 {
    font-size: 40px;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    max-width: 480px;
}


/* Buttons */
.btn-custom-group {
    display: flex;
    flex-direction: column; 
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 30px; 
    position: relative;
    overflow: hidden;
    display: inline-flex; 
    justify-content: center;
    align-items: center;
    border: none;
    width: 100%;
    text-align: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 0;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px; 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    color: var(--gold);
}

.hero-phone {
    display: none; 
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.phone-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.phone-num {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
}
.phone-num a:hover { color: var(--gold); }


/* Stats Cards */
.stat-card {
    border: 1px solid var(--border);
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s;
    transform-origin: bottom;
}

.stat-card:hover { border-color: var(--gold); }
.stat-card:hover::before { transform: scaleY(1); }

.stat-num { font-size: 32px; color: var(--gold); line-height: 1; margin-bottom: 8px; }

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.stat-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}


/* ─── SECTION HEADERS ─── */
.section-head { text-align: center; margin-bottom: 30px; padding: 0 15px; }
.section-head .eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px; 
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-head h2 em { font-style: italic; color: var(--gold); }

.section-head p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}



/* ─── FLEET ─── */

.fleet-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--deep);
    min-height: 300px; 
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.col-md-8 .fleet-card { min-height: 400px; }
.col-md-4 .fleet-card { min-height: 250px; }

.fleet-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.6s ease;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

.fleet-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.fleet-card:hover .fleet-placeholder { 
    transform: scale(1.05); 
}

.fleet-icon { font-size: 48px; opacity: 0; transition: 0.3s; z-index: 2; }

.fleet-info {
    position: relative;
    z-index: 3;
    padding: 25px;
    transform: translateY(8px);
    transition: transform 0.3s;
}

.fleet-card:hover .fleet-info { transform: translateY(0); }

.fleet-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fleet-name { font-size: 20px; margin-bottom: 4px; }

.fleet-cap {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.fleet-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 4;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.fleet-card:hover .fleet-arrow { opacity: 1; }



/* ─── EVENTS ─── */
.events {background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%); }
.events-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1px; 
    background: var(--border); 
}

.event-card {
    background: #0a0a0ac9;
    padding: 40px 25px; 
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 250px; 
}

.event-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.event-card:hover { background: #0e0e12; }
.event-card:hover::after { opacity: 1; }

.event-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: rgba(201,168,76,0.08);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    font-weight: 900;
    transition: color 0.3s;
}



.event-card:hover .event-num { color: var(--gold); }

.event-icon { font-size: 32px; margin-bottom: 22px; color: var(--gold); }

.event-title { font-size: 18px; margin-bottom: 14px; line-height: 1.2; }

.event-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s;
}

.event-card:hover .event-link { opacity: 1; transform: translateY(0); }



/* ─── TRUST / WHY US ─── */
.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.trust-point:first-child { padding-top: 0; }

.trust-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--gold);
    transition: all 0.3s;
}

.trust-point:hover .trust-icon { background: var(--gold); border-color: var(--gold); color: var(--black); }

.trust-point-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.trust-point-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.trust-quote-block {
    border: 1px solid var(--border);
    padding: 40px 30px; 
    position: relative;
    background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
}

.trust-quote-block::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 25px;
}

.review-badge {
    border: 1px solid var(--border); 
    padding: 25px 20px; 
    text-align: left; 
    cursor: pointer;
    transition: border-color 0.2s; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}
.review-badge:hover { border-color: var(--gold); }

.review-badge-content {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
.review-badge-img {
    height: 35px;
    width: auto;
    transition: all 0.3s;
}
.review-badge-text-right {
    flex-direction: column;
    align-items: flex-end; 
}

.review-badge-name { font-size: 9px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 4px; }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* ─── SERVICE AREAS ─── */
.areas { background: var(--deep); }

.areas-grid { display: grid; gap: 1px; background: var(--border); margin-top: 40px; }
.areas-grid { grid-template-columns: 1fr; }

.area-col { background: var(--deep); padding: 30px 25px; }

.area-state {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}


.area-cities-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}



.area-cities { 
    list-style: none; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}

.area-cities li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    padding-left: 12px;
    border-left: 1px solid transparent;
    transition: all 0.2s;
}

.area-cities li:hover { 
    color: var(--cream); 
    border-left-color: var(--gold); 
    padding-left: 16px; 
}

@media (max-width: 600px) {
    .area-cities-wrap {
        grid-template-columns: 1fr;
    }
}




/* ─── BOOKING FORM ─── */
.booking-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.booking-sub { font-family:'Cormorant Garamond',serif; font-size:15px; color:rgba(255,255,255,0.45); line-height:1.6; }
.booking-contact { margin-top:40px; padding-top:30px; border-top:1px solid var(--border); }
.booking-phone { font-family:'Playfair Display',serif; font-size:24px; color:var(--gold); }

.perk { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.perk-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.booking-form {
    background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
    border: 1px solid var(--border);
    padding: 30px 20px; 
}

.form-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px; 
    padding: 12px 15px; 
}

.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: none;
}

.form-select { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5'/%3E%3C/svg%3E"); 
    background-repeat: no-repeat; 
    background-position: right 16px center; 
}



/* ─── FOOTER ─── */
footer { background: #060606; border-top: 1px solid var(--border); padding: 50px 0 30px; }

.footer-brand .brand-name { font-size: 24px; color: var(--gold); margin-bottom: 6px; text-decoration: none; display: inline-block;}

.footer-brand .brand-sub { font-size: 9px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.25); text-transform: uppercase; margin-bottom: 20px; }
.footer-brand p { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: rgba(255,255,255,0.38); line-height: 1.6; margin-bottom: 20px; }

.footer-phone { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); }
.footer-phone:hover { color: var(--gold); }

.footer-top { border-bottom: 1px solid var(--border); }

.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.25); text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--gold); }

.footer-hours { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: rgba(255,255,255,0.4); line-height: 2; }

.copyright { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-link { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.2); text-transform: uppercase; }



/* ─── FLOATING CTA ─── */
.float-cta { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; gap: 10px; }

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.float-call { background: var(--gold); color: var(--black); }
.float-call:hover { background: var(--gold-light); color: var(--black); }
.float-quote { background: var(--red); color: var(--white); }
.float-quote:hover { background: #a82020; color: var(--white); }


/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }





/*mobile menu*/