:root {
    --primary-color: #87CEEB; /* Pastel sky blue */
    --secondary-color: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
    --accent-color: #343a40;
    --call-bg: #f8f9fa;        /* light gray bg */
    --call-accent: #87CEEB;    /* pastel sky blue */
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: transform 0.2s ease, color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu.show {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    width: auto;
    max-width: 800px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/tunning.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    transition: background-position 0.2s;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.btn-primary:hover {
    background-color: #5fb8e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.btn-sm {
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* About Section */
.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    transition: all 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonial-section {
    background-color: var(--secondary-color);
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.2rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: var(--text-light);
    padding: 1.2rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: var(--text-light);
}

.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    border: 1px solid #ced4da;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
}

/* Special Offers */
.offer-card {
    background: linear-gradient(135deg, var(--primary-color), #5fb8e0);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.offer-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.offer-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.offer-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -75px;
    right: -75px;
}

.offer-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Slide-in animation */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to   { opacity: 1; transform: translateX(0); }
}
.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

/* New: Pastel overlay & hover animations */
.flash-hero {
    position: relative;
    background: url('img/engine-tuning.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.flash-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(135,206,235,0.5); /* pastel sky blue */
}
.flash-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}
.flash-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    animation: fadeInUp 1s ease-out;
}
.flash-hero-content .btn-flash {
    background-color: #fff;
    color: var(--primary-color);
    padding: .8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: transform .3s, box-shadow .3s;
}
.flash-hero-content .btn-flash:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Service cards */
.flash-cards .card {
    border: none;
    border-radius: 10px;
    padding: 2rem;
    background: #fff;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    position: relative;
}
.flash-cards .card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    animation: pulse .8s ease-in-out;
}

/* Bounce-in for benefit points */
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(.3) translateY(-200px); }
  50%  { opacity: 1; transform: scale(1.05) translateY(20px); }
  70%  { transform: scale(.9) translateY(-10px); }
  100% { transform: scale(1) translateY(0); }
}
.benefit-item {
    opacity: 0;
}
.benefit-item.aos-animate {
    animation: bounceIn .8s forwards;
}

/* Floating WhatsApp prominent pulse */
.floating-whatsapp {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        outline: none;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .dropdown-menu.show {
        display: block;
        max-width: 100%;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        height: 60vh;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* WhatsApp CTA in navbar */
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: #fff;
}

/* Floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1050;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
}
.floating-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

/* ADD: Call-Now Section */
.call-section {
    background-color: var(--call-bg);
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 1s ease-out;
}
.call-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.call-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.call-btn {
    background-color: var(--call-accent);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounceIn 1s infinite alternate;
    text-decoration: none;
    transition: transform 0.3s;
}
.call-btn:hover {
    transform: scale(1.05);
}
@keyframes fadeInUp { /* existing */ }
@keyframes bounceIn { /* existing */ }