/* --- Basic Reset --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Arial', sans-serif; 
}

body { 
    overflow-x: hidden; 
    background: #f8f8f8; 
}

/* --- Header Section --- */
header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 10px 5%; 
    background: white; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo h1 { font-size: 20px; font-weight: bold; }
.logo span { color: #e31e24; }
.header-actions { display: flex; gap: 15px; align-items: center; }

.call-btn-top { 
    background: black; 
    color: white; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 5px; 
    text-decoration: none; 
}

.menu-btn { 
    background: none; 
    border: none; 
    font-size: 24px; 
    cursor: pointer; 
}

/* --- Sidebar & Menu Icons --- */
.sidebar { 
    position: fixed; 
    top: 0; 
    right: -300px; 
    width: 280px; 
    height: 100%; 
    background: #1e2d2f; 
    z-index: 2000; 
    transition: 0.4s; 
    padding: 50px 20px; 
}

.sidebar.active { right: 0; }

.sidebar-logo { 
    color: white; 
    font-size: 22px; 
    font-weight: bold; 
    margin-bottom: 30px;
}

.sidebar ul { list-style: none; }

.sidebar ul li { 
    padding: 15px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.sidebar ul li a { 
    color: white; 
    text-decoration: none; 
    font-size: 18px; 
    display: flex; 
    align-items: center; 
}

/* Menu Icons Styling */
.sidebar ul li a i {
    margin-right: 15px;
    width: 25px;
    color: #e31e24;
    text-align: center;
}

.close-x { 
    position: absolute; 
    top: 15px; 
    right: 20px; 
    font-size: 30px; 
    color: white; 
    background: none; 
    border: none; 
    cursor: pointer; 
}

/* Overlay Background */
.overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.6); 
    display: none; 
    z-index: 1500; 
}

.overlay.active { display: block; }

/* --- Hero Section --- */
.hero { 
    height: 60vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1350&q=80') center/cover; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    text-align: center; 
}

.hero h2 { font-size: 32px; }

.book-now-hero { 
    background: #e31e24; 
    color: white; 
    border: none; 
    padding: 12px 25px; 
    margin-top: 20px; 
    border-radius: 5px; 
    cursor: pointer; 
    font-weight: bold; 
}

/* --- Car Section --- */
.car-section { padding: 40px 5%; }

.car-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px; 
}

.car-card { 
    background: white; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    text-align: center; 
    transition: 0.3s; 
}

.car-card:hover { transform: translateY(-5px); }

.car-title-bar { 
    background: #e31e24; 
    color: white; 
    padding: 10px; 
    font-weight: bold; 
    font-size: 14px; 
    text-transform: uppercase; 
}

.car-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: contain; 
    padding: 15px; 
    display: block;
    margin: 0 auto;
}

.car-name { font-weight: bold; font-size: 18px; margin: 10px 0; color: #333; }

.book-btn-car { 
    background: #e31e24; 
    color: white; 
    border: none; 
    padding: 12px 0; 
    width: 85%; 
    margin-bottom: 20px; 
    border-radius: 5px; 
    font-weight: bold; 
    cursor: pointer; 
}

/* --- WhatsApp Button --- */
.wa-float { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background: #25d366; 
    color: white; 
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 30px; 
    z-index: 1000; 
    text-decoration: none; 
}

/* --- Footer Section --- */
.site-footer {
    background: #1e2d2f; 
    color: #fff;
    padding: 60px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-box h3 { font-size: 24px; margin-bottom: 20px; }
.footer-box h3 span { color: #e31e24; }
.footer-box h4 { font-size: 18px; margin-bottom: 20px; color: #e31e24; text-transform: uppercase; }
.footer-box p { line-height: 1.6; color: #ccc; font-size: 14px; margin-bottom: 10px; }
.footer-box p i { margin-right: 10px; color: #e31e24; }

.footer-box ul { list-style: none; }
.footer-box ul li { margin-bottom: 10px; }
.footer-box ul li a { color: #ccc; text-decoration: none; transition: 0.3s; font-size: 14px; }
.footer-box ul li a:hover { color: #fff; padding-left: 5px; }

.social-links { display: flex; gap: 15px; margin-top: 15px; }
.social-links a {
    width: 35px; height: 35px; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; border-radius: 5px; transition: 0.3s;
}
.social-links a:hover { background: #e31e24; transform: translateY(-3px); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .footer-container { text-align: center; }
    .social-links { justify-content: center; }
    .hero h2 { font-size: 26px; }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo left */
  height: 70px;
  padding: 0 20px;
  background: #fff;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  background: #fff;
}

.site-logo {
  height: 55px;
  width: auto;
}
