/* 
   Rei do Óleo SJC - Modern Premium Design 
   Theme: Dark Luxury & Performance
*/


:root {
    --primary-gold: #FFD700;
    --primary-gold-dim: #C5A000;
    --accent-gold: #FDB931;
    --bg-dark: #050505;
    --bg-card: #121212;
    --bg-card-hover: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #111111;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    --gradient-dark: linear-gradient(to bottom, #050505, #121212);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.2);
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Black Ops One', cursive;
    font-weight: 400;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    display: block;
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-glass);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    font-weight: 400;
    /* Black Ops One is naturally bold */
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    border-bottom: none;
    line-height: 1;
    /* Fix vertical alignment */
}

.logo-icon {
    height: 32px;
    /* Match text size roughly */
    width: auto;
    object-fit: contain;
    margin-top: -4px;
    /* Slight optical adjustment */
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    /* Fix vertical alignment of button and text */
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 100%;
    z-index: 2;
}

.hero h1 {
    font-family: 'Black Ops One', cursive;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
}

.hero-line-1 {
    font-size: 4.2rem;
    color: #ffffff;
    display: block;
}

.hero-line-2 {
    font-size: 3.8rem;
    display: block;
}

.crown-letter {
    position: relative;
    display: inline-block;
}

.title-crown {
    position: absolute;
    top: -25px;
    right: -10px;
    transform: rotate(25deg);
    font-size: 2rem;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Hero Visual (Slider) */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.stats-slider {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Custom Hero Buttons Styling */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-buttons .btn {
    min-width: 200px;
    text-align: center;
}

/* Make primary look like outline in hero */
.hero-buttons .btn-primary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: none;
}

/* Glow effect on hover for both hero buttons */
.hero-buttons .btn:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.6);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    text-shadow: none;
    font-weight: 700;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* New Hero Stats Card */
.hero-stats-card {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--primary-gold);
    text-align: center;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
}

.stats-divider {
    width: 2px;
    height: 50px;
    background-color: var(--primary-gold);
    opacity: 0.5;
}

.stats-text-sm {
    font-family: 'Black Ops One', cursive;
    color: var(--text-gray);
    font-size: 1.2rem;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter-wrapper-sm {
    font-family: 'Black Ops One', cursive;
    color: var(--primary-gold);
    font-size: 2.5rem;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.stats-label-sm {
    font-family: 'Black Ops One', cursive;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 2px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-white);
}

.badge-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
        /* Increased top padding for mobile header */
        padding-bottom: 4rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-line-1 {
        font-size: 3.2rem;
        /* Further reduced from 4.2rem */
    }

    .hero-line-2 {
        font-size: 2.8rem;
        /* Further reduced from 3.8rem */
    }

    .title-crown {
        font-size: 1.2rem;
        top: -12px;
        right: -5px;
    }

    .hero p {
        margin: 0 auto 2.5rem;
        font-size: 1.3rem;
    }

    .hero-buttons {
        justify-content: center;
        display: flex;
        flex-direction: column;
        /* Stack buttons on mobile */
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        /* Full width buttons */
        max-width: 300px;
    }

    .hero-badges {
        justify-content: center;
        gap: 1rem;
    }

    .badge-item {
        font-size: 0.9rem;
    }

    .hero-visual {
        margin-top: 3rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-slider {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-line-1 {
        font-size: 3.0rem;
        /* Further reduced from 3.2rem */
    }

    .hero-line-2 {
        font-size: 3.0rem;
        /* Further reduced from 2.8rem */
    }

    .title-crown {
        font-size: 1rem;
        top: -10px;
    }

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

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--primary-gold);
    border-radius: 0;
    color: var(--text-gray);
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.tab-btn:hover {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.05);
}

.tab-btn.active {
    background: var(--primary-gold);
    color: var(--text-dark);
    border-color: transparent;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

#oils .services-grid {
    grid-template-columns: repeat(2, minmax(300px, 400px));
    justify-content: center;
}

/* Compact Grid for Filters */
.services-grid.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.service-card {
    background: var(--bg-card);
    border: var(--border-glass);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card.compact {
    padding: 1.5rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.compact .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-white);
}

.compact h3 {
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Special Cards */
.layout-special {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.service-card.featured-gold {
    border: 1px solid var(--primary-gold);
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent);
}

.service-card.featured-gold .btn {
    margin-top: 2rem;
    width: fit-content;
    border-radius: 30px;
    padding-left: 3rem;
    padding-right: 3rem;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: #000;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
}

.service-list li i {
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .layout-special {
        grid-template-columns: 1fr;
    }
}

/* Maintenance Section */
.maintenance {
    padding: 6rem 0;
    background: linear-gradient(to top, var(--bg-dark), #0a0a0a);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.video-card {
    width: 100%;
    max-width: 350px;
    height: 620px;
    background: #000;
    /* Force black background */
    border: var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    transform: translateZ(0);
    /* Fix for Webkit Border Radius/Iframe bug */
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.video-card iframe,
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    position: relative;
    z-index: 10;
    /* Ensure video is on top */
    background: #000;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(to right, var(--bg-dark) 50%, #0f0f0f 50%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-gold);
    border-radius: 12px;
    z-index: -1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

/* Reviews Widget Section */
.reviews-widget-section {
    padding: 2rem 0 5rem 0;
    text-align: center;
}



.google-review-widget {
    background: rgba(20, 20, 20, 0.6);
    /* Dark Glassmorphism */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget-stars {
    color: #fbbc04;
    /* Google Star Yellow */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.widget-header p {
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.widget-google-logo {
    height: 40px;
    filter: none;
}

/* Reviews Slider */
/* Reviews Slider */
.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 60px;
    /* Space for arrows */
}

.reviews-slider-container {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    scroll-behavior: smooth;
    width: 100%;
    z-index: 10;
}

.reviews-slider-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    /* Absolute positioning */
    z-index: 50;
    /* High z-index to ensure clickability */
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

.slider-arrow:hover {
    background: #000;
    border-color: #ffd700;
    color: #ffd700;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-slide {
    flex: 0 0 300px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.review-slide:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.slide-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
}

.avatar-initials {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.reviewer-avatar {
    /* Keeping this class for backward compatibility if needed, but initials replace it */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #ffd700;
}

.slide-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.slide-info span {
    font-size: 0.75rem;
    color: #888;
}

.small-g-logo {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 0;
    top: 5px;
    opacity: 0.8;
}

.slide-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2px;
}

.verify-icon {
    color: #4285f4;
    font-size: 0.8rem;
    margin-left: 5px;
}

.slide-text {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Locations */
.locations {
    padding: 6rem 0;
    background-color: #080808;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: var(--border-glass);
}

.map-container {
    height: 300px;
    width: 100%;
}

.location-details {
    padding: 2rem;
}

.location-details h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.location-info {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.location-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.whatsapp-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: var(--primary-gold);
}

/* Footer */
footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: var(--border-glass);
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}



.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 1rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    background-color: black;
    padding: 1.5rem 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {

    .about-container,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .about {
        background: var(--bg-dark);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem 0;
        position: absolute;
        top: 100%;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Make buttons thinner on mobile */
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .hero-stats-card {
        padding: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats-divider {
        width: 50%;
        height: 1px;
    }

    #oils .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-slider-wrapper {
        padding: 0;
    }

    .slider-arrow {
        display: flex;
        /* Changed from none to show arrows on mobile */
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: 105%;
        /* Move completely below the cards */
        transform: translateY(0);
    }

    .prev-arrow {
        left: 20%;
    }

    .next-arrow {
        right: 20%;
    }

    .review-slide {
        min-width: 100%;
        margin-right: 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

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

    /* Global Mobile Centering */
    .hero-content,
    .about-content,
    .service-card,
    .location-details,
    .footer-col,
    .footer-brand,
    .section-title,
    .section-subtitle,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center Lists */
    .service-list li {
        justify-content: center;
    }

    .footer-links li {
        justify-content: center;
    }

    /* Center Flex items */
    .hero-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

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

    /* Center Images/Badges */
    .about-image {
        order: -1;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: #20bd5a;
}