/* Root Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --font-family: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #ffffff;
    background: #0f0f0f;
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('/static/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.88) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-blue-band {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-blue-band svg {
    display: block;
    width: 100%;
    height: 130px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 3rem;
}

.hero-buttons {
    margin-bottom: 4rem;
}

.hero-buttons .btn {
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #007bff;
    border-color: #007bff;
}

.hero-buttons .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero-section .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        padding: 0 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Extra Services mobile spacing */
    .services-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .extra-service-card {
        margin-bottom: 1rem;
    }
}

/* Booking Modal */
.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

.modal-header {
    background: rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services-section {
    background: transparent;
    position: relative;
}

.services-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    margin: 0 auto;
    border-radius: 2px;
}

.blue-dash {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    margin: 0 auto;
    border-radius: 2px;
}

/* Vehicle Size Selector */
.vehicle-size-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.vehicle-size-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vehicle-size-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.vehicle-size-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

/* Service Cards Dark Theme */
.service-card-dark {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0;
    height: 100%;
    min-height: 450px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.service-card-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.15);
}

.service-card-dark.popular-card {
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.12);
}

.service-card-dark.popular-card::before {
    background: linear-gradient(90deg, #007bff, #0056b3, #007bff);
    height: 3px;
}

/* Smaller cards for Complete Detail and Maintenance */
.service-card-dark.compact-card {
    min-height: 280px;
}

.service-card-header {
    padding: 1.5rem 1.5rem 1rem;
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-card-body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-features li i {
    margin-top: 2px;
    flex-shrink: 0;
}

.service-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-display {
    text-align: right;
    background: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    display: block;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

/* Removed maintenance section styles since they are now separate cards */

/* Extra Services */
.extra-services-heading {
    text-align: center !important;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* Force center Extra Services heading */
.services-section h2:contains("Extra Services"),
.services-section .row .col-12 h2 {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

.extra-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.extra-service-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.3);
}

.extra-service-body .service-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.extra-service-body .service-price {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Legacy Service Cards (keeping for compatibility) */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.map-placeholder {
    position: relative;
    height: 400px;
    background: #f8f9fa;
}

.map-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-area-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, object-fit 0.3s ease;
    cursor: default;
}

.service-area-map:active {
    cursor: grabbing;
}

.service-area-map.dragging {
    cursor: grabbing !important;
}

.service-area-map.zoomed {
    transform: scale(1.5);
    cursor: grab;
    object-fit: contain;
}

.service-area-map.zoomed-2x {
    transform: scale(2);
    cursor: grab;
    object-fit: contain;
}

/* Map Controls */
.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.map-control-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.map-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.map-control-btn:active {
    transform: scale(0.95);
}

/* Fullscreen styles */
.map-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #000;
    border-radius: 0;
}

.map-container.fullscreen .map-image-container {
    height: 100vh;
    border-radius: 0;
}

.map-container.fullscreen .service-area-map {
    border-radius: 0;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-color.no-fee {
    background: #00ff00;
}

.legend-color.travel-fee {
    background: #ff0000;
}

/* Service Area Call-to-Action */
.service-area-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 40px;
    margin: 20px 0 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    #service-area .container {
        max-width: 1500px;
    }
    
    #service-area .col-lg-8 {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .map-image-container {
        height: 480px;
    }
    
    .service-area-cta {
        padding: 35px 50px;
        margin: 30px auto 0;
        max-width: 600px;
    }
    
    .service-area-cta h4 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .service-area-cta .fs-5 {
        font-size: 1.2rem !important;
        margin-bottom: 25px;
    }
    
    .service-area-cta .btn-lg {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .service-area-cta .mt-3 {
        margin-top: 20px !important;
        font-size: 1rem;
    }
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Photo Navigation Buttons */
.photo-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.photo-nav-btn {
    width: 50px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.photo-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.photo-nav-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary-color);
    z-index: 15;
    border-radius: 2px 2px 0 0;
    transition: width 0.1s linear;
    width: 0%;
}

.slider-images {
    position: relative;
    height: 400px;
}

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

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.image-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.before-image .image-label {
    left: 20px;
}

.after-image .image-label {
    right: 20px;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.slider-button {
    width: 50px;
    height: 50px;
    background: #495057;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.slider-button:hover {
    background: #3d4449;
    transform: scale(1.1);
}

.slider-button i {
    font-size: 14px;
}

/* Testimonials - Minimal Design */
.testimonial-card-minimal {
    background: transparent;
    padding: 4rem 2rem;
    margin: 2rem 0;
    position: relative;
}

.testimonial-content {
    margin-bottom: 3rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    text-align: left;
    font-weight: 300;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.author-name {
    color: #007bff;
    font-size: 1rem;
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: #007bff;
    font-size: 1rem;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    margin-top: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 123, 255, 0.2);
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.5);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

/* Call to Action Section */
.cta-section {
    background: transparent;
    position: relative;
}

/* Footer Section */
.footer-section {
    background: transparent;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item i {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Social Links */
.social-links a {
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
    animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
    animation-delay: 0.2s;
}

.hero-section p {
    animation-delay: 0.4s;
}

.hero-section .btn {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
        background-size: auto 100%;
        background-position: center center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card .row {
        text-align: center;
    }
    
    .service-card .col-md-3 {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .before-after-slider {
        margin: 0 1rem;
    }
    
    .slider-images {
        height: 300px;
    }
    
    /* Services Section Mobile */
    .vehicle-size-selector {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .vehicle-size-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .service-card-dark {
        margin-bottom: 1.5rem;
        margin: 0 auto 1.5rem auto;
        max-width: 350px;
    }
    
    .service-price-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .popular-badge {
        position: static;
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    /* Mobile layout adjustments */
    .row g-4 .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .offset-lg-4.offset-md-3 {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        padding: 0 1.5rem;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .price-display {
        padding: 0.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Progress Indicator */
.scroll-progress-container {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 0;
}

.scroll-progress-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.progress-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.progress-item.active .progress-dot {
    background: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    width: 8px;
    height: 8px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .scroll-progress-container {
        right: 8px;
        padding: 0;
    }
    
    .progress-item {
        width: 16px;
        height: 16px;
        padding: 3px;
    }
    
    .progress-dot {
        width: 4px;
        height: 4px;
    }
    
    .progress-item.active .progress-dot {
        width: 6px;
        height: 6px;
    }
    
    .scroll-progress-nav {
        gap: 6px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations for better mobile performance */
    .hero-content {
        animation: none;
    }
    
    /* Optimize background attachments for mobile */
    .hero-section,
    .services-section,
    .testimonial-section {
        background-attachment: scroll;
    }
    
    /* Improve touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Optimize slider for mobile */
    .slider-button {
        width: 30px;
        height: 30px;
    }
    
    /* Reduce box shadows for performance */
    .service-card,
    .testimonial-card-minimal {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    /* Service Area Map - Mobile Specific */
    .map-container {
        margin: 0 30px;
        border-radius: 20px;
    }
    
    .map-image-container {
        height: 350px;
        border-radius: 20px;
    }
    
    .service-area-map {
        border-radius: 20px;
        touch-action: none; /* Prevent touch scrolling when zoomed */
    }
    
    .service-area-cta {
        background: rgba(40, 44, 52, 0.95);
        border-radius: 20px;
        padding: 35px 25px;
        margin: 25px 30px 0;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}
