:root { 
    --red: #f60c0c; --gold: #C5A059; --dark: #7a1a1a; 
    --card-bg: #0D0D0D; --border: rgba(255,255,255,0.08); --text-gray: #A0A0A0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark); color: #fff; font-family: 'Outfit', sans-serif; overflow-x: hidden; scroll-behavior: smooth; }
.red-text { color: var(--red); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 20px 0;
    z-index: 2000; background: rgba(5,5,5,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Syncopate', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: 4px; cursor: pointer; }
.nav-links { display: flex; gap: 25px; list-style: none; align-items: center; }
.nav-links li { cursor: pointer; font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.nav-links li:hover { color: var(--red); }

.nav-cta { 
    background: var(--red); color: #fff; padding: 10px 20px; 
    font-weight: 800; font-size: 0.75rem; border-radius: 4px; 
    border:none; cursor: pointer; font-family: 'Syncopate'; transition: 0.3s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(212,0,0,0.4); }

/* --- HERO --- */
.hero { height: 85vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('hero-car.jpg.jpeg'); background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.hero h1 { font-family: 'Syncopate', sans-serif; font-size: clamp(2rem, 7vw, 4.5rem); margin-bottom: 20px; }
.hero p { letter-spacing: 3px; font-weight: 300; color: var(--text-gray); font-size: 0.9rem; }

/* --- SECTIONS --- */
.section-header { padding: 100px 0 40px; text-align: center; }
.section-header h2 { font-family: 'Syncopate', sans-serif; font-size: 2rem; letter-spacing: 4px; }

/* --- SERVICES GRID --- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { background: #0a0a0a; padding: 40px; border: 1px solid var(--border); border-radius: 12px; text-align: center; transition: 0.3s ease; position: relative; overflow: hidden; }
.service-card:hover { border-color: var(--red); transform: translateY(-5px); }
.service-icon { font-size: 2.5rem; color: var(--red); margin-bottom: 20px; height: 60px; display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-family: 'Syncopate'; font-size: 0.85rem; margin-bottom: 15px; letter-spacing: 1px; }
.service-card p { font-size: 0.85rem; color: #888; line-height: 1.6; }

/* --- FLEET GRID (MODIFIED FOR 5 COLUMNS) --- */
.fleet-grid { 
    display: grid; 
    /* Ek line mein 5 boxes lane ke liye */
    grid-template-columns: repeat(5, 1fr); 
    gap: 12px; 
}

.fleet-box { 
    /* Padding thori kam ki hai taake content tight na lage */
    padding: 35px 10px; 
    border: 1px solid var(--border); 
    background: linear-gradient(145deg, #0f0f0f, #050505); 
    border-radius: 8px; 
    text-align: center; 
    cursor: pointer; 
    transition: 0.4s; 
}

.fleet-box:hover { 
    border-color: var(--red); 
    transform: translateY(-8px); 
}

.fleet-box i { 
    font-size: 2.2rem; 
    color: var(--red); 
    margin-bottom: 20px; 
}

.fleet-box h3 { 
    font-family: 'Syncopate'; 
    font-size: 0.7rem; 
    margin-bottom: 15px; 
    letter-spacing: 1px;
}

/* --- RESPONSIVE SETTINGS (Zaroori hai taake mobile par khichri na bane) --- */
@media (max-width: 1250px) {
    .fleet-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .fleet-grid { grid-template-columns: 1fr; }
}
/* --- REVIEWS --- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.review-card { background: #0a0a0a; padding: 35px; border-top: 2px solid var(--red); border-radius: 4px; }
.stars { color: var(--gold); margin-bottom: 12px; font-size: 0.75rem; }
.reviewer { font-family: 'Syncopate'; font-size: 0.65rem; color: var(--red); margin-top: 15px; }

/* --- MODALS --- */
.modal { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); overflow-y: auto; }
.modal-content { background: #0a0a0a; margin: 5% auto; padding: 40px; border: 1px solid var(--border); width: 90%; max-width: 650px; border-radius: 12px; position: relative; border-top: 3px solid var(--red); text-align: center; }
.close { position: absolute; right: 25px; top: 20px; font-size: 30px; cursor: pointer; color: #555; }

/* --- FORMS (ICON FIXED) --- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { text-align: left; margin-bottom: 25px; position: relative; }

.form-group input, .form-group select { 
    width: 100%; 
    background: #000; 
    border: 1px solid rgba(255,255,255,0.05); 
    padding: 12px 15px; 
    color: #fff; 
    border-radius: 6px; 
    font-family: 'Outfit'; 
    transition: 0.3s; 
    outline: none; 
    font-size: 0.85rem;
}

/* 1. Browser ka apna kala icon hide karna */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 2; /* Ye pure box ko clickable bana dega */
}

/* 2. Apna Custom White Icon lagana (Pseudo-element) */
/* Custom White Icon for Calendar */
.form-group:has(#bDate)::after {
    content: '\f133'; /* FontAwesome Calendar Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    bottom: 12px;
    color: #ffffff; /* Red se White kar diya */
    pointer-events: none;
    font-size: 1rem;
    opacity: 0.8; /* Thora premium look ke liye halki transparency */
}

/* Browser  default icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Calendar box  */
input[type="date"] {
    color-scheme: dark;
}

/* Pickup Date wale dabba ko focus karne par red shadow */
.form-group input:focus { 
    border-color: var(--red); 
    box-shadow: 0 0 10px rgba(212,0,0,0.2); 
}

/* Dark mode for the popup */
input[type="date"] {
    color-scheme: dark;
}               

.form-group input:focus, .form-group select:focus { 
    border-color: var(--red); 
    box-shadow: 0 0 10px rgba(212,0,0,0.2); 
}
.form-group input:focus, .form-group select:focus { border-color: var(--red); box-shadow: 0 0 10px rgba(212,0,0,0.2); }





input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
/* /* --- HERO LOGO STYLING --- */
.main-hero-logo {
    width: 100%;
    max-width: 450px; /* Laptop par bada size */
    height: auto;
    filter: drop-shadow(0 0 25px rgba(212,0,0,0.3)); /* Premium Red Glow */
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-slogan {
    letter-spacing: 5px;
    font-weight: 600;
    color: var(--gold); /* Gold color for stars matching */
    font-family: 'Syncopate', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 10px;
}

.location-tag {
    letter-spacing: 10px;
    font-size: 0.65rem;
    color: #fff;
    opacity: 0.6;
    margin-top: 15px;
    font-family: 'Syncopate', sans-serif;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
    display: inline-block;
}

/* /* Mobile Responsive  */
@media (max-width: 768px) {
    .main-hero-logo {
        max-width: 280px; /* Mobile par chota size */
    }
    .hero-slogan {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }
    body, .hero {
    /* background-color : red; */
}
} 

/* Mobile par popup calendar ko dark theme mein dikhane ke liye */
input[type="date"] {
    color-scheme: dark;
}
/* --- BUTTONS & FOOTER --- */
.social-btns { display: flex; justify-content: center; gap: 15px; margin-top: 25px; }
.social-btn { color: #fff; text-decoration: none; font-size: 0.7rem; font-family: 'Syncopate'; border: 1px solid #222; padding: 10px 15px; border-radius: 4px; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.social-btn:hover { background: var(--red); border-color: var(--red); }

.policy-list { text-align: left; margin: 20px 0; max-height: 400px; overflow-y: auto; padding-right: 10px; }
.policy-item { margin-bottom: 15px; border-bottom: 1px solid #111; padding-bottom: 10px; display: flex; gap: 15px; align-items: flex-start; }
.policy-item i { color: var(--red); margin-top: 4px; font-size: 0.8rem; }
.policy-item p { font-size: 0.85rem; color: #ccc; line-height: 1.5; }

.map-container { width: 100%; max-width: 1100px; margin: 0 auto; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; height: 450px; background: #111; position: relative; }

footer { background: #000; padding: 80px 0 0; border-top: 1px solid #111; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-links { list-style: none; font-size: 0.85rem; color: #777; line-height: 2.2; }
.footer-links li { cursor: pointer; transition: 0.3s; }
.footer-links li:hover { color: var(--red); padding-left: 5px; }

.copyright { border-top: 1px solid #111; padding: 30px 0; background: #050505; color: #444; font-size: 0.7rem; letter-spacing: 1px; }

.wa-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff !important; z-index: 9999; box-shadow: 0 10px 20px rgba(0,0,0,0.3); transition: 0.3s; }
.wa-float:hover { transform: scale(1.1); }

@media (max-width: 768px) { .nav-links { display: none; } .container { padding: 0 20px; } .form-row { grid-template-columns: 1fr; gap: 0; } }

/* Gallery Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s all ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: #e61e25; /* Red Border on Hover */
}

.image-box {
    position: relative;
    height: 180px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e61e25;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 4px;
    font-family: 'Syncopate';
}

.item-info {
    padding: 15px;
}

.item-info h4 {
    font-family: 'Syncopate';
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 0.75rem;
    color: #888;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}