/* =========================================================
   EXECUTIVE CHAUFFEUR HEADER & FOOTER STYLESHEET
   Harmonized with Midnight Navy (#0A0E1A) & Gold (#F59E0B)
   ========================================================= */

:root {
    --exec-dark: #0A0E1A;
    --exec-navy: #130F40;
    --exec-navy-light: #1E254A;
    --exec-gold: #F59E0B;
    --exec-gold-hover: #D97706;
    --exec-border: rgba(255, 255, 255, 0.12);
    --exec-text-subtle: #94A3B8;
}

/* =========================================================
   TOP CONTACT RIBBON (DISPATCH BAR)
   ========================================================= */
.executive-top-bar {
    background: #060911;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--exec-text-subtle);
    font-size: 0.82rem;
    padding: 8px 0;
}

.executive-top-bar a {
    color: var(--exec-text-subtle);
    text-decoration: none;
    transition: color 0.2s ease;
}

.executive-top-bar a:hover {
    color: var(--exec-gold);
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #10B981;
    font-weight: 700;
}

/* =========================================================
   PREMIUM GLASSMORPHIC NAVBAR
   ========================================================= */
.executive-navbar {
    background: rgba(10, 14, 26, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--exec-border);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    min-height: 72px;
    display: flex;
    align-items: center;
}

.executive-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-white-backdrop {
    filter: invert(1) grayscale(1.5);
    /* background: #ffffff;
    padding: 6px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease; */
}

.executive-brand img {
    max-height: 70px;
    max-width: 263px;
    width: auto;
    object-fit: contain;
    display: block;
}

.executive-brand-text {
    display: flex;
    flex-direction: column;
}

.brand-main-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-sub-title {
    color: var(--exec-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* Navigation Links */
.executive-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.executive-nav-item {
    position: relative;
}

.executive-nav-link {
    color: #ffff !important;
    font-weight: 600;
    font-size: 0.94rem;
    padding: 10px 18px !important;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.executive-nav-link:hover,
.executive-nav-link.active {
    color: var(--exec-gold) !important;
    background: rgba(245, 158, 11, 0.12);
}

/* Right Actions & VIP Profile Button */
.executive-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-exec-login {
    background: transparent;
    border: 1px solid var(--exec-gold);
    color: var(--exec-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-exec-login:hover {
    background: var(--exec-gold);
    color: #000000;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.btn-exec-book {
    background: var(--exec-gold);
    color: #000000;
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-exec-book:hover {
    background: var(--exec-gold-hover);
    color: #000000;
    transform: translateY(-2px);
}

/* VIP Avatar Button */
.vip-avatar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px 6px 6px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.vip-avatar-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--exec-gold);
}

@media (max-width: 991.98px) {
    .executive-header-wrapper {
        top: 8px;
        padding: 0 10px;
    }

    .executive-navbar {
        border-radius: 20px;
        padding: 12px 18px;
    }
}


.vip-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--exec-gold);
}

/* =========================================================
   ULTRA-PREMIUM 4-COLUMN FOOTER
   ========================================================= */
.executive-footer {
    background: #060911;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    padding: 75px 0 0 0;
    position: relative;
}

.footer-col-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--exec-gold);
    border-radius: 2px;
}

.footer-brand-desc {
    color: var(--exec-text-subtle);
    font-size: 0.94rem;
    line-height: 1.7;
    margin: 18px 0 24px 0;
}

/* Footer Link Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--exec-text-subtle);
    text-decoration: none;
    font-size: 0.94rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--exec-gold);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.94rem;
    color: var(--exec-text-subtle);
}

.footer-contact-item i {
    color: var(--exec-gold);
    font-size: 1.15rem;
    margin-top: 3px;
}

/* Social Icon Pills */
.footer-social-bar {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: var(--exec-gold);
    color: #000000;
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding: 25px 0;
    font-size: 0.86rem;
    color: #64748B;
}

/* Responsive adjustments for dynamically balanced logo & compact navbar */
@media (max-width: 1199.98px) {
    .executive-brand img {
        max-height: 56px;
        max-width: 190px;
    }

    .logo-white-backdrop {
        padding: 5px 14px;
    }
}

@media (max-width: 991.98px) {
    .executive-navbar {
        padding: 8px 0;
        min-height: 64px;
    }

    .executive-brand img {
        max-height: 50px;
        max-width: 170px;
    }

    .logo-white-backdrop {
        padding: 4px 12px;
    }

    .brand-main-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .executive-navbar {
        padding: 6px 0;
        min-height: 58px;
    }

    .executive-brand img {
        max-height: 44px;
        max-width: 145px;
    }

    .logo-white-backdrop {
        padding: 4px 10px;
    }
}

/* Service Cards Hover Enhancement */
.executive-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

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