:root {
    --primary: #d32f2f;      /* Automotive Red */
    --primary-dark: #b71c1c;
    --dark-bg: #121212;
    --dark-card: #1e1e1e;
    --light-bg: #f8f9fa;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --text-muted: #aaa;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: var(--font-body); }
body { background: #fff; color: var(--text-dark); line-height: 1.6; }

/* Global Utilities */
.container { width: 90%; max-width: 1200px; margin: auto; }
.max-width-800 { max-width: 800px; }
.section { padding: 80px 0; }
.bg-dark { background: var(--dark-bg); color: var(--text-light); }
.text-center { text-center: center; text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; font-family: var(--font-heading); font-weight: 700; text-decoration: none; border-radius: 4px; transition: var(--transition); border: none; cursor: pointer; text-transform: uppercase; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-secondary { background: #333; color: #fff; }
.btn-secondary:hover { background: #555; }
.btn-lg { padding: 15px 35px; font-size: 1.1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.full-width { width: 100%; display: block; text-align: center; }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; background: rgba(18,18,18,0.95); z-index: 1000; padding: 15px 0; transition: var(--transition); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: var(--primary); }
.nav-menu { display: flex; gap: 20px; align-items: center; }
.nav-link { color: #fff; text-decoration: none; font-weight: 600; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 15px; }
.nav-phone { color: #fff; text-decoration: none; font-weight: 700; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger .bar { width: 25px; height: 3px; background: #fff; }
.mobile-cta { display: none; }

/* Hero */
.hero { position: relative; height: 90vh; min-height: 600px; background: url('../images/hero/hero-bg.jpg') center/cover no-repeat; display: flex; align-items: center; text-align: center; color: #fff; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.75); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; }
.hero p { font-size: 1.25rem; margin-bottom: 30px; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.hero-trust-line { display: flex; justify-content: center; gap: 25px; font-weight: 600; color: var(--text-muted); }

/* About */
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.section-tag { color: var(--primary); font-weight: 700; font-family: var(--font-heading); }
.about-text h2 { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 15px; }
.about-list { list-style: none; margin: 20px 0; }
.about-list li { margin-bottom: 10px; font-weight: 600; }
.about-list i { color: var(--primary); margin-right: 10px; }
.company-block { background: var(--light-bg); padding: 15px; border-left: 4px solid var(--primary); margin-bottom: 20px; }

/* Services */
.section-header { margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.service-card { background: var(--dark-card); padding: 30px; border-radius: 8px; transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); }
.service-card .icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.service-card h3 { font-family: var(--font-heading); margin-bottom: 10px; color: #fff; }
.service-card p { color: var(--text-muted); margin-bottom: 15px; font-size: 0.95rem; }
.btn-link { color: var(--primary); text-decoration: none; font-weight: 700; }

/* Services CTA Banner */
.services-cta { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 60px 0; }
.services-cta h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.package-card { border: 1px solid #ddd; padding: 40px 30px; border-radius: 8px; text-align: center; position: relative; background: #fff; }
.package-card.featured { border: 2px solid var(--primary); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.package-card .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 15px; font-size: 0.8rem; font-weight: 700; border-radius: 20px; }
.pkg-price { font-size: 1.5rem; font-weight: 800; margin: 15px 0; font-family: var(--font-heading); }
.pkg-features { list-style: none; margin: 20px 0; text-align: left; }
.pkg-features li { margin-bottom: 10px; font-size: 0.95rem; }
.pkg-features i { color: var(--primary); margin-right: 8px; }
.pkg-note { display: block; font-size: 0.85rem; color: #666; margin-bottom: 20px; }

/* Vehicles */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.vehicle-card { position: relative; border-radius: 8px; overflow: hidden; height: 250px; }
.vehicle-card img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }

/* Why Us */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.feature-card { text-align: center; padding: 30px; border: 1px solid #eee; border-radius: 8px; }
.feature-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; }

/* Before & After Slider */
.ba-slider-container { max-width: 800px; margin: 0 auto; }
.ba-slider { position: relative; width: 100%; height: 400px; overflow: hidden; border-radius: 8px; }
.ba-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-resize-img { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-resize-img img { width: 800px; height: 400px; max-width: none; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 4px; height: 100%; background: var(--primary); cursor: ew-resize; }

/* Gallery */
.gallery-filters { margin-bottom: 30px; }
.filter-btn { background: none; border: 1px solid #ddd; padding: 8px 18px; margin: 0 4px; border-radius: 4px; cursor: pointer; font-weight: 600; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; height: 200px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.testimonial-card { background: var(--dark-card); padding: 30px; border-radius: 8px; color: #fff; }
.stars { color: #ffc107; margin-bottom: 10px; }

/* FAQ */
.faq-accordion { display: flex; flex-direction: column; gap: 15px; }
.faq-item { border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.faq-question { width: 100%; padding: 18px; background: none; border: none; text-align: left; font-weight: 700; font-family: var(--font-heading); display: flex; justify-content: space-between; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 18px; background: #fdfdfd; }
.faq-answer p { padding: 15px 0; color: #555; }

/* Forms */
.custom-form { display: flex; flex-direction: column; gap: 15px; background: #fff; padding: 30px; border-radius: 8px; color: var(--text-dark); }
.bg-dark .custom-form { background: var(--dark-card); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-body); }
.bg-dark .form-group input, .bg-dark .form-group select, .bg-dark .form-group textarea { background: #2b2b2b; border-color: #444; color: #fff; }

/* Contact Info */
.info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.info-item i { color: var(--primary); font-size: 1.2rem; margin-top: 4px; }
.contact-actions { display: flex; gap: 15px; margin-top: 25px; }

/* Footer */
.footer { background: #0a0a0a; color: var(--text-muted); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h3, .footer-col h4 { color: #fff; font-family: var(--font-heading); margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); text-decoration: none; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; font-size: 0.85rem; }

/* Thank You Wrapper */
.thank-you-wrapper { height: 100vh; display: flex; align-items: center; justify-content: center; }