/* Custom Properties / Variables */
:root {
    /* Colors */
    --bg-dark: #0f1115;
    --bg-darker: #08090b;
    --bg-light: #1a1d24;
    
    /* BMW Inspired Colors */
    --bmw-blue: #0066b1;
    --bmw-light-blue: #8eb1e5;
    --bmw-red: #e7222e;
    
    --text-primary: #f0f2f5;
    --text-secondary: #a0aabf;
    
    --accent: var(--bmw-blue);
    --accent-hover: #004d85;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

input, textarea {
    user-select: auto;
    -webkit-user-select: auto;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.subtitle {
    display: block;
    color: var(--bmw-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--bmw-blue);
    border-radius: 2px;
}

.section-title.left {
    text-align: left;
}

.section-title.left h2::after {
    left: 0;
    transform: none;
}

.highlight {
    color: var(--bmw-blue);
    position: relative;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
    gap: 8px;
}

.btn-primary {
    background-color: var(--bmw-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 177, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 177, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.05);
    border-color: white;
}

.w-100 { width: 100%; }

/* Top Bar */
.top-bar {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
    padding: 8px 0;
    color: var(--text-secondary);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a:hover {
    color: white;
}

.top-bar i {
    color: var(--bmw-blue);
    margin-right: 4px;
}

.social-mini {
    display: flex;
    gap: 12px;
    border-left: 1px solid var(--glass-border);
    padding-left: 16px;
}

.social-mini a:hover {
    color: var(--bmw-blue);
}

/* Header & Nav */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(15, 17, 21, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(15, 17, 21, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-bold {
    font-weight: 800;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--bmw-blue);
    margin-top: 4px;
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bmw-blue);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8,9,11,0.95) 0%, rgba(8,9,11,0.7) 50%, rgba(8,9,11,0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 102, 177, 0.2);
    border: 1px solid var(--bmw-blue);
    color: var(--bmw-light-blue);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-buttons .btn-primary {
    background-color: #25D366; /* WhatsApp Green */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.hero-buttons .btn-primary:hover {
    background-color: #1ebe58;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Features */
.features {
    background-color: var(--bg-darker);
    padding: 60px 0;
    border-bottom: 1px solid var(--glass-border);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 177, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 102, 177, 0.2);
}

.feature-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--bmw-blue);
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    margin: 0;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bmw-blue), var(--bmw-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 177, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--bmw-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--bmw-blue);
    color: white;
    transform: rotateY(180deg);
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-list {
    margin: 20px 0 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: white;
}

.about-list i {
    color: var(--bmw-blue);
}

.stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bmw-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--bmw-blue);
    border-radius: 20px;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--bmw-blue);
    color: white;
    padding: 20px;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px 30px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-info h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--bmw-blue);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper, .contact-info-card {
    padding: 40px;
    background: var(--bg-dark) !important;
    border: 1px solid var(--glass-border) !important;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-desc {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark); /* Matches site background */
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bmw-blue);
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    padding: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(0, 102, 177, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmw-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-list strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.info-list span, .contact-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--bmw-blue);
}

.map-container {
    height: 100%;
    min-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.map-container iframe {
    display: block;
}

/* Comprehensive Footer */
.footer {
    background-color: #050608;
    border-top: 1px solid var(--glass-border);
}

.footer-newsletter {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--glass-border);
    padding: 50px 0;
}

.newsletter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    margin-bottom: 8px;
}
.newsletter-text p {
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: var(--font-main);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--bmw-blue);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 80px 24px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bmw-blue);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--bmw-blue);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--bmw-blue);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--bmw-blue);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--bmw-blue);
    color: white !important;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-legal a:hover {
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe58;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Custom Interaction & Hover Animations */
.hover-link { position: relative; transition: color 0.3s ease; }
.hover-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -2px; left: 0; background-color: var(--bmw-blue); transition: width 0.3s ease; }
.hover-link:hover::after { width: 100%; }

.hover-bounce { transition: transform 0.3s ease, color 0.3s ease; }
.hover-bounce:hover { transform: translateY(-5px); color: var(--bmw-blue) !important; }

.hover-scale { transition: transform 0.3s ease; }
.hover-scale:hover { transform: scale(1.05); }

.hover-glow { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.hover-glow:hover { box-shadow: 0 0 15px rgba(0, 102, 177, 0.6); transform: translateY(-2px); }

.hover-float { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-float:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.hover-lift { transition: transform 0.3s ease; }
.hover-lift:hover { transform: translateY(-8px); }
.hover-lift:hover .feature-icon-wrapper { background: var(--bmw-blue); color: white; }
.hover-lift:hover .feature-icon-wrapper i { color: white; }

.hover-card-glow { transition: all 0.4s ease; border: 1px solid transparent; }
.hover-card-glow:hover { border-color: rgba(0,102,177,0.5); box-shadow: 0 10px 30px rgba(0,102,177,0.15); transform: translateY(-10px); }

.hover-slide-right { transition: transform 0.3s ease, color 0.3s ease; }
.hover-slide-right:hover { transform: translateX(8px); color: var(--bmw-blue); }

.hover-scale-up { transition: transform 0.3s ease; }
.hover-scale-up:hover { transform: scale(1.1); }

.hover-image-zoom { transition: transform 0.6s ease; }
.about-image-wrapper:hover .hover-image-zoom { transform: scale(1.05); }

.hover-card-lift { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s; }
.hover-card-lift:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 15px 35px rgba(0,0,0,0.3); z-index: 10; border-color: rgba(0,102,177,0.3); }

.hover-glow-border { transition: border-color 0.4s ease; }
.hover-glow-border:hover { border-color: rgba(0,102,177,0.4); }

.hover-lift-small { transition: transform 0.2s ease; }
.hover-lift-small:hover { transform: translateY(-3px); }

.icon-spin-hover { transition: transform 0.5s ease; }
.hover-lift:hover .icon-spin-hover { transform: rotate(180deg); }

.icon-pulse-hover { transition: transform 0.3s ease; }
.hover-lift:hover .icon-pulse-hover { animation: miniPulse 0.5s infinite alternate; }

@keyframes miniPulse {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 177, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 177, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 177, 0); }
}
.pulse-animation { animation: pulse 2s infinite; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-animation { animation: float 3s ease-in-out infinite; }

.hover-pulse:hover { animation: pulse 1s infinite; }

.input-animate:focus {
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(0,102,177,0.2);
}

/* Google Reviews Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.google-review-card {
    width: 350px;
    padding: 25px;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.google-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0,102,177,0.4);
}
.google-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.google-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bmw-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}
.google-user-info h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}
.google-user-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.google-logo {
    width: 24px;
    height: 24px;
}
.google-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.google-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-container, .contact-container {
        grid-template-columns: 1fr;
    }
    .image-accent, .experience-badge { display: none; }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; } /* Hide top bar on mobile */
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 17, 21, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav .btn-primary { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    
    .form-row { flex-direction: column; gap: 0; }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* --- New Premium Additions --- */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
#preloader img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--bmw-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 102, 177, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(0, 102, 177, 0.6);
}

/* Fix mobile nav clip-path issue */
@media (max-width: 768px) {
    .nav-links {
        clip-path: none !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: var(--glass-shadow);
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .hero-badge { font-size: 0.75rem; }
     /* Above whatsapp float */
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: #ff4500;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 10px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff4500;
    border-radius: 50%;
    animation: pulse-dot-anim 1.5s infinite;
}
@keyframes pulse-dot-anim {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* Trustindex Mobile Alignment Fix */
.ti-widget {
    margin: 0 auto !important;
}
@media (max-width: 768px) {
    .ti-widget {
        transform: scale(0.95);
        transform-origin: top center;
    }
    .trustindex-wrapper {
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
    }
}

/* Custom Mobile Footer Layout */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .footer-bottom p {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .footer-legal {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .footer-legal a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }
    
    .footer-legal a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Newsletter mobile fix */
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
    }
}

/* =========================================
   NEW CONTENT SECTIONS (Why Us, Models, FAQ, Process)
   ========================================= */

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.why-us-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    transition: transform 0.3s;
}
.why-us-card:hover {
    transform: translateY(-10px);
}
.why-us-icon {
    font-size: 3rem;
    color: var(--bmw-blue);
    margin-bottom: 20px;
}
.why-us-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.why-us-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Models Section */
.models-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
    position: relative;
}
.models-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.model-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 180px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}
.model-card:hover {
    border-color: var(--bmw-blue);
    box-shadow: 0 5px 20px rgba(0, 102, 177, 0.2);
}
.model-card h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}
.model-card span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: background 0.3s;
}
.faq-question:hover {
    background: rgba(255,255,255,0.02);
}
.faq-question i {
    color: var(--bmw-blue);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    padding: 0 25px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
    opacity: 1;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 30px;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--bmw-blue);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -55px auto 20px;
    border: 5px solid var(--bg-darker);
}
.process-step h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Error Pages */
.error-page {
    padding: 180px 0 120px;
    text-align: center;
    background-color: var(--bg-dark);
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error-page h1 {
    font-size: 8rem;
    color: var(--bmw-blue);
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 0 10px 40px rgba(0, 102, 177, 0.4);
    line-height: 1;
}
.error-page h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}
.error-page p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
