/* CSS Variables for Theme */
:root {
    --primary-black: #050505;
    --secondary-black: #111111;
    --accent-red: #E60000;
    --accent-red-hover: #ff1a1a;
    --text-white: #ffffff;
    --text-gray: #ffffff;
    /* User requested all texts in white */
    --whatsapp-green: #25D366;
    --font-heading: 'Michroma', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: var(--primary-black);
}

.text-white {
    color: var(--text-white);
}

.text-red {
    color: var(--accent-red);
}

.w-100 {
    width: 100%;
}

/* Top Alert Bar */
.top-bar {
    background-color: var(--secondary-black);
    color: var(--text-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #333;
}

.top-bar i {
    color: var(--accent-red);
    margin-right: 5px;
}

/* Header */
.header {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    max-height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: fadeInLogo 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4));
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Advanced Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 0;
    transform: skewX(-15deg);
    /* Boxier and slanted for automotive racing feel */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--accent-red);
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Neon Hover Effect */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: transparent;
    transition: all 0.5s ease;
    z-index: -1;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-primary:hover::before {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-black);
    color: var(--accent-red);
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.8), inset 0 0 10px rgba(230, 0, 0, 0.5);
    border-color: var(--accent-red);
    transform: skewX(-15deg) translateY(-3px);
}

/* WhatsApp White Primary Button Modifier */
.btn-whatsapp {
    background-color: var(--text-white);
    color: var(--primary-black);
    border-color: var(--text-white);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--primary-black);
    color: var(--text-white);
    border-color: var(--text-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-white);
    /* White for dark theme */
    padding: 12px 35px;
    border-radius: 0;
    transform: skewX(-15deg);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--text-white);
    margin-top: 30px;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transform: skewX(-15deg) translateY(-3px);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--text-white);
    color: var(--primary-black);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
    color: var(--primary-black);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hero Section with Carousel */
.hero {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 5px solid var(--accent-red);
    z-index: 10;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Carousel Styles */
.hero-carousel {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

/* Services Section */
.services {
    background-color: var(--primary-black);
    color: var(--text-white);
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #cccccc;
    /* Lighter gray for readability on black */
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--accent-red);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
    width: 100%;
    height: 250px;
    /* Fixed height to keep cards uniform */
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 2px solid #222;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    position: relative;
    background-color: var(--secondary-black);
}

.bg-glass {
    text-align: center;
    margin-bottom: 50px;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--accent-red);
    color: var(--text-white);
    padding: 8px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #222;
    margin-bottom: 20px;
    /* Space between items vertically */
    break-inside: avoid;
    /* Prevent images from splitting across columns */
    display: inline-block;
    /* Required for column-count to work properly with margin */
    width: 100%;
    cursor: pointer;
    /* Indicate it's clickable */
}

.gallery-item img {
    width: 100%;
    height: auto;
    /* Preserve natural aspect ratio */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item.hidden {
    display: none !important;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--primary-black) 0%, #1a0000 100%);
    border-top: 1px solid #333;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-red);
    flex: 1;
    min-width: 300px;
    text-align: left;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card .stars {
    color: #fbbc05;
    /* Google Gold Color */
    background-color: #ffffff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-white);
}

.testimonial-card h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: linear-gradient(to right, var(--primary-black), #1a0000);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}

.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--secondary-black);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-red);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-red);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Location / Maps Section */
.location-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #333;
    margin-top: 40px;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.contact-wrapper {
    max-width: 600px;
    margin: 40px auto 0 auto;
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 5px solid var(--accent-red);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--primary-black);
    color: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 8px rgba(230, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: var(--text-white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-red);
    transform: translateY(-5px);
}

.footer-contact h2 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.8rem;
    border-top: 1px solid #222;
    padding-top: 20px;
    width: 100%;
}

/* Lightbox Styling */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border: 3px solid var(--accent-red);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(230, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-red);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Before / After Slider Section */
.before-after-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #333;
    aspect-ratio: 16/9;
}

.ba-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--text-white);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
}

.ba-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-red);
    border: 3px solid var(--text-white);
    border-radius: 50%;
    z-index: 11;
}

.ba-handle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    z-index: 12;
    font-size: 1.2rem;
    pointer-events: none;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-white);
    color: var(--primary-black);
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sticky-mobile-cta:hover,
.sticky-mobile-cta:active {
    background-color: var(--primary-black);
    color: var(--text-white);
    border-top: 2px solid var(--text-white);
}

.sticky-mobile-cta i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    /* Below mobile CTA if present */
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background-color: rgba(0, 0, 0, 0.9);
    border-left: 4px solid var(--accent-red);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    animation: slideInLeft 0.5s ease forwards;
    pointer-events: auto;
    max-width: 300px;
}

.toast.fade-out {
    animation: slideOutLeft 0.5s ease forwards;
}

.toast i {
    color: #25D366;
    /* Green checkmark */
    font-size: 1.2rem;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .sticky-mobile-cta {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        border-right: none;
        border-bottom: 5px solid var(--accent-red);
        padding: 20% 5%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-carousel {
        height: 400px;
    }

    .contact-wrapper {
        padding: 20px;
    }
}

/* Smartphone Optimization */
@media (max-width: 600px) {

    /* Top Bar & Header */
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 5%;
    }

    .navbar-logo {
        max-height: 55px;
        width: auto;
    }

    /* Hero Typography & Adjustments */
    .hero-content {
        padding: 25% 5% 15%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-carousel {
        height: 300px;
    }

    /* Section Spacing */
    .services,
    .gallery,
    .testimonials,
    .before-after-section,
    .faq-section,
    .location-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Services Grid */
    .service-card {
        padding: 25px;
        min-width: 100%;
    }

    /* Gallery Grid & Filters */
    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        column-count: 2;
        /* 2 columns is optimal for phone screens in masonry */
        column-gap: 10px;
    }

    .gallery-item {
        margin-bottom: 10px;
    }

    /* Statistics Grid - 2x2 layout instead of wrapping weirdly */
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item h2 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    /* Before/After Slider */
    .ba-slider {
        aspect-ratio: 1 / 1;
        /* Square is much better on vertical mobile screens */
    }

    .ba-handle::after {
        width: 30px;
        height: 30px;
    }

    /* Footer / Testimonials */
    .testimonial-card {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Remove the floating WhatsApp button on mobile because we have the Sticky Mobile CTA */
    .floating-whatsapp {
        display: none !important;
    }

    /* Ensure Toast doesn't overlap excessively */
    .toast-container {
        bottom: 70px;
        /* Above the sticky CTA */
    }
}