/* --- ECHELON EXECUTIVE LUXURY THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --gold-primary: #d4af37;
    --gold-gradient: linear-gradient(90deg, #b8860b 0%, #ffdf80 50%, #b8860b 100%);
    --card-bg: linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    --card-border: 1px solid rgba(212, 175, 55, 0.4);
    --glow-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    --text-light: #f4f4f4;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }

body {
    background: #050505 url('./assets/executive-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- CENTERED NAVIGATION HEADER --- */
header {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    height: 90px;
    display: flex;
    justify-content: space-between; /* Keeps Logo Left, Button Right */
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0; 
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.logo img { 
    height: 60px; 
    width: auto; 
    filter: brightness(1.1);
}

/* Absolute Positioning for True Centering */
nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Right-Aligned Book Button */
.nav-book-btn {
    background: var(--gold-gradient);
    color: #000 !important;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(90deg, #ffdf80 0%, #b8860b 100%);
}

/* --- SECTION STYLING --- */
.section-padding { padding: 100px 20px; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; text-align: center; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 20px rgba(255, 215, 0, 0.15);
}

.divider { height: 1px; width: 100px; background: var(--gold-gradient); margin: 30px auto; opacity: 0.6; }

/* --- DISTINCT PREMIUM SERVICES SECTION --- */
#premium-services {
    /* Solid distinct background to separate from fleet */
    background: linear-gradient(180deg, #151515 0%, #050505 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.4); 
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10;
}

/* --- GRID SYSTEMS --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; padding: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; padding: 0 20px; }

/* --- FLEET CARD --- */
.fleet-card {
    background: var(--card-bg);
    border: var(--card-border);
    border-radius: 12px;
    padding: 0 0 30px 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-shadow);
    border-color: rgba(212, 175, 55, 0.9);
}

.card-img {
    width: 100%;
    height: 220px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 25px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.6));
    transition: var(--transition);
}

.fleet-card:hover .card-img { transform: scale(1.05); }

#sedan-img { background-image: url('./assets/sedan.jpg'); }
#suv-img { background-image: url('./assets/suv.jpg'); }
#van-img { background-image: url('./assets/image-Mercedes-benz-V-Class-XL-5202-1-47570\ \(1\).webp'); }

.card-content { padding: 0 30px; text-align: center; width: 100%; }

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 15px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-subtitle {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    display: inline-block;
    width: 80%;
}

.fleet-features {
    display: flex; justify-content: center; gap: 20px;
    list-style: none; padding: 0; margin-bottom: 30px; flex-wrap: wrap;
}

.fleet-features li {
    display: flex; flex-direction: column; align-items: center;
    font-size: 0.75rem; color: #ccc; gap: 8px;
}

.list-icon {
    width: 24px; height: 24px; object-fit: contain;
    filter: brightness(0) saturate(100%) invert(73%) sepia(66%) saturate(632%) hue-rotate(359deg) brightness(91%) contrast(88%);
}

/* --- SERVICE CARD (Icon Alignment Fix) --- */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* Horizontally centers content */
    justify-content: flex-start;
    text-align: center;
    padding: 40px 25px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold-primary);
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
}

.asset-icon {
    width: 60px;        /* Fixed Width */
    height: 60px;       /* Fixed Height */
    object-fit: contain;
    margin-bottom: 25px;
    display: block;
}

.service-card h4 {
    color: #fff; margin-bottom: 15px;
    text-transform: uppercase; letter-spacing: 1px; font-size: 1.1rem;
}

.service-card p { font-size: 0.85rem; color: #aaa; line-height: 1.6; }

/* --- GOLD BUTTON --- */
.btn-gold-block {
    background: var(--gold-gradient);
    width: 90%; padding: 15px 0;
    border-radius: 6px; color: #000;
    font-weight: 700; text-transform: uppercase;
    text-decoration: none; letter-spacing: 1px;
    text-align: center; display: inline-block;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.btn-gold-block:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* --- FOOTER (Distinct Section) --- */
footer {
    padding: 80px 0;
    background: #000; /* Solid Black */
    border-top: 4px solid #d4af37; /* Gold Line Separator */
    text-align: center;
    position: relative;
    z-index: 20;
}

.footer-logo img { height: 50px; opacity: 0.7; margin-bottom: 20px; }
.copyright { font-size: 0.75rem; color: #666; letter-spacing: 2px; text-transform: uppercase; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #25d366; color: #fff;
    padding: 15px 25px; border-radius: 50px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-weight: 600; transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.05); background: #20ba5a; }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    header {
        flex-direction: column; height: auto; padding: 20px; gap: 20px;
        background: rgba(0,0,0,0.95);
    }
    nav {
        position: static; transform: none;
        display: flex; flex-wrap: wrap; justify-content: center; width: 100%; gap: 15px;
    }
    nav a { margin: 5px; font-size: 0.8rem; }
    .nav-book-btn { width: 100%; text-align: center; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .whatsapp-text { display: none; }
}
/* --- COMPACT FOOTER --- */
footer {
    padding: 30px 0; /* Reduced from 80px to 30px */
    background: #000;
    border-top: 4px solid #d4af37;
    text-align: center;
    position: relative;
    z-index: 20;
}

/* Optional: Adjust logo margin if it still feels too tall */
.footer-logo img { 
    height: 40px; /* Slightly smaller logo */
    margin-bottom: 15px; 
    opacity: 0.7; 
}
#why-choose {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), url('./assets/why-choose-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

#why-choose .service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}/* --- Hero Slideshow CSS --- */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: transitionSlides 15s infinite; /* 15s total for 3 images */
}

/* Delay for each slide */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes transitionSlides {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.1); } /* Subtle zoom effect */
    100% { opacity: 0; }
}