/* The Auto Refinery - Luxury Design System */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    overflow-x: hidden;
}

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

/* Luxury Color Palette */
:root {
    --primary-blue: #1e90ff;
    --luxury-gold: #d4af37;
    --premium-silver: #c0c0c0;
    --deep-black: #000000;
    --charcoal: #2c2c2c;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    --gradient-luxury: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    --shadow-luxury: 0 10px 40px rgba(30, 144, 255, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Navigation */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.luxury-nav.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.99);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

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

.luxury-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.luxury-logo:hover {
    transform: translateX(2px);
}

.luxury-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid rgba(30, 144, 255, 0.5);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.luxury-logo:hover img {
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.5);
    transform: scale(1.05);
}

.luxury-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.luxury-menu li {
    margin: 0;
}

.luxury-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: block;
}

.luxury-menu a:not(.btn-premium):hover {
    color: var(--white);
    background: rgba(30, 144, 255, 0.1);
}

.luxury-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.luxury-menu a:not(.btn-premium):hover::after {
    width: 60%;
}

.btn-premium {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 0.65rem 1.75rem !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    border: 1px solid rgba(30, 144, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
    border-color: rgba(30, 144, 255, 0.6);
}

.btn-premium::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.luxury-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.badge i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-luxury);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(30, 144, 255, 0.3);
}

/* Services Section */
.luxury-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-blue);
}

.service-card.featured {
    border-color: var(--luxury-gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
}

.service-card.featured .service-icon i {
    color: var(--luxury-gold);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-luxury);
    color: var(--deep-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.btn-service {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

/* Additional Services */
.additional-services {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.additional-services h3 {
    text-align: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: var(--white);
}

.service-item span:last-child {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Process Section */
.luxury-process {
    padding: 60px 0;
    background: #1a1a1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    position: relative;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(30, 144, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:nth-child(2) {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:nth-child(3) {
    animation-delay: 0.3s;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:nth-child(4) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.12) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 144, 255, 0.3);
    border-color: rgba(30, 144, 255, 0.6);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 144, 255, 0.05) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    transition: all 0.4s ease;
    pointer-events: none;
}

.step:hover .step-overlay {
    background: linear-gradient(
        135deg,
        rgba(30, 144, 255, 0.15) 0%,
        rgba(30, 144, 255, 0.05) 100%
    );
}

.step-content {
    position: relative;
    z-index: 2;
    padding: 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #000000;
    border: 2px solid rgba(30, 144, 255, 0.5);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(30, 144, 255, 0.9);
    box-shadow: 0 12px 32px rgba(30, 144, 255, 0.4);
}

.step h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    flex-shrink: 0;
}

.step p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-size: 0.85rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.luxury-social-proof {
    padding: 100px 0;
    background: #1a1a1a;
}

.ratings-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.customer-review {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid rgba(30, 144, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.customer-review:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.25);
    border-color: rgba(30, 144, 255, 0.5);
}

.review-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    text-align: right;
}

.reviewer-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rating i {
    color: var(--luxury-gold);
}

/* SIMPLE WORKING CAROUSEL SYSTEM (mobile) */
@media screen and (max-width: 768px) {
    /* Hide desktop layouts */
    .luxury-process .process-steps,
    .luxury-social-proof .ratings-overview {
        display: none !important;
    }

    /* Show mobile carousels - FORCE VISIBILITY */
    .process-carousel,
    .reviews-carousel {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        max-width: 100% !important;
        margin: 2rem auto !important;
        overflow: hidden !important;
        border-radius: 15px !important;
    }

    .carousel-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
    }

    /* Track uses flex; width set dynamically by JS via translateX only */
    .carousel-track {
        display: flex;
        height: 100%;
        will-change: transform;
        transition: transform 0.4s ease-in-out;
    }

    /* Slides snap to viewport width; JS sets exact pixel width */
    .carousel-slide {
        flex: 0 0 100%; /* ensures one slide per viewport */
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0; /* remove padding so slide matches viewport exactly */
        box-sizing: border-box;
    }

    /* Inner cards centered within slide */
    .carousel-slide .step,
    .carousel-slide .customer-review {
        width: 100%;
        max-width: 320px; /* slightly larger for better centering */
        height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .carousel-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
        pointer-events: none;
        z-index: 20;
    }

    .carousel-btn {
        background: rgba(30, 144, 255, 0.8);
        border: none;
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        pointer-events: all;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        transition: all 0.2s ease;
    }

    .carousel-btn:hover {
        background: rgba(30, 144, 255, 1);
        transform: scale(1.1);
    }

    .carousel-dots {
        text-align: center;
        padding: 15px 0;
        margin: 0;
    }

    .carousel-dots .dot {
        height: 8px;
        width: 8px;
        margin: 0 4px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .carousel-dots .dot.active {
        background-color: var(--primary-blue);
        transform: scale(1.4);
    }

    /* Section header fixes */
    .section-header {
        padding-top: 80px;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Hide carousels on desktop only */
@media screen and (min-width: 769px) {
    .process-carousel,
    .reviews-carousel {
        display: none !important;
    }
}

/* Testimonials Section */
.luxury-testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
}

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

.testimonial {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial.featured {
    border-color: var(--luxury-gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--luxury-gold);
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client strong {
    color: var(--white);
    font-size: 1.1rem;
}

.client span {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 0.5rem;
}

/* Gallery Section */
.luxury-gallery {
    padding: 100px 0;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Service Areas */
.service-areas {
    padding: 100px 0;
    background: #1a1a1a;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-luxury);
}

.location-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.location-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-card a:hover {
    color: var(--luxury-gold);
}

/* Contact Section */
.luxury-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #1e90ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    width: 30px;
}

.contact-method h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--luxury-gold);
}

.service-guarantee {
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.service-guarantee h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-guarantee p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
}

/* Footer */
.luxury-footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Conversion Optimization Styles */

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.urgency-banner i {
    color: #fff;
}

/* Value Props */
.value-props {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.value-prop i {
    color: var(--luxury-gold);
    font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--primary-blue);
}

/* Pulse Animation for CTA */
.pulse-animation {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(30, 144, 255, 0.2);
    }
    50% {
        box-shadow: 0 15px 50px rgba(30, 144, 255, 0.5);
        transform: translateY(-2px);
    }
}

/* CTA Button Enhancements */
.btn-primary-large small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Service Card Conversion Elements */
.popular-badge, .luxury-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--gradient-luxury);
    color: var(--deep-black);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.availability-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Service Pricing Updates */
.service-price {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    display: block;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.savings {
    background: var(--gradient-luxury);
    color: var(--deep-black);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.time-estimate, .value-add {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* Limited Time Offer Banner */
.limited-time-offer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.booking-incentive {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--luxury-gold);
    color: var(--luxury-gold);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* FAQ Styles */
.luxury-faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

/* New FAQ Accordion using details/summary */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.2);
}

.faq-summary {
    list-style: none;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-summary i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.2rem;
}

.faq-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.faq-content ul, .faq-content ol {
    color: #a3a3a3;
    margin: 1em 0 1em 1em;
    padding-left: 1em;
}

.faq-content li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.faq-content .text-highlight {
    color: #3b82f6;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.faq-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.faq-cta a[href^="tel:"] {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

/* Enhanced Contact Form */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.benefit i {
    color: var(--luxury-gold);
}

.urgency-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.priority-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 1rem 0;
}

.priority-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.priority-option:hover {
    background: rgba(30, 144, 255, 0.1);
    border-color: var(--primary-blue);
}

.priority-option input[type="radio"] {
    accent-color: var(--primary-blue);
}

.form-guarantee {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    color: #22c55e;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.conversion-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.conversion-btn small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.conversion-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.4);
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.form-trust .trust-item {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Conversion Badge */
.conversion-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .value-props {
        gap: 1rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .form-benefits {
        gap: 1rem;
    }
    
    .form-trust {
        gap: 1rem;
    }
    
    .urgency-banner,
    .limited-time-offer {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

.mobile-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-luxury);
    z-index: 999;
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(30, 144, 255, 0.5);
}

/* Responsive Design */
@media (min-width: 1025px) {
    /* Ensure 4 columns on desktop */
    .process-steps,
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .luxury-logo {
        font-size: 1.1rem;
    }
    
    .luxury-logo img {
        width: 40px;
        height: 40px;
    }
    
    .luxury-menu {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .luxury-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .luxury-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 2rem;
    }
    
    .luxury-menu li {
        margin: 0.75rem 0;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
    }
    
    .luxury-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .luxury-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .luxury-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .luxury-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .luxury-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .luxury-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .luxury-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .luxury-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    
    .luxury-menu a {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.95);
        padding: 1rem 1.5rem;
        border: 1px solid rgba(30, 144, 255, 0.2);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        width: 100%;
        background: rgba(30, 144, 255, 0.05);
    }
    
    .luxury-menu a:not(.btn-premium):hover {
        border-color: rgba(30, 144, 255, 0.6);
        background: rgba(30, 144, 255, 0.15);
        color: var(--white);
        transform: translateX(5px);
    }
    
    .luxury-menu .btn-premium {
        background: var(--gradient-primary) !important;
        border: 1px solid rgba(30, 144, 255, 0.5) !important;
        font-size: 1.1rem;
        padding: 1.25rem 2rem !important;
    }
    
    .luxury-menu .btn-premium:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        background: rgba(30, 144, 255, 0.1);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(30, 144, 255, 0.2);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Mobile Call Button */
    .mobile-call-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--gold), #ffa500);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
        z-index: 999;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        border: none;
        outline: none;
    }
    
    .mobile-call-btn:hover,
    .mobile-call-btn:active,
    .mobile-call-btn:focus {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        text-decoration: none;
        color: var(--dark);
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0.7);
        }
        70% {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 10px rgba(255, 215, 0, 0);
        }
        100% {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0);
        }
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        min-height: 50px;
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 15px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-luxury {
        width: 100%;
        min-height: 50px;
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .luxury-services,
    .luxury-process,
    .luxury-testimonials,
    .luxury-gallery,
    .service-areas,
    .luxury-contact {
        padding: 60px 0;
    }
    
    /* Process cards on tablet */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step {
        min-height: 300px;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step h3 {
        font-size: 1.5rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    /* Location cards on tablet */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .luxury-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .luxury-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .luxury-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .luxury-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .luxury-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .luxury-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .luxury-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .luxury-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .luxury-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .luxury-menu.active li:nth-child(6) { transition-delay: 0.6s; }
    
    .luxury-menu a {
        font-size: 1.5rem;
        color: var(--white);
        padding: 1rem 2rem;
        border: 2px solid transparent;
        border-radius: 10px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    
    .luxury-menu a:hover {
        border-color: var(--gold);
        background: rgba(255, 215, 0, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Mobile Call Button */
    .mobile-call-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--gold), #ffa500);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
        z-index: 999;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
        border: none;
        outline: none;
    }
    
    .mobile-call-btn:hover,
    .mobile-call-btn:active,
    .mobile-call-btn:focus {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        text-decoration: none;
        color: var(--dark);
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0.7);
        }
        70% {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 10px rgba(255, 215, 0, 0);
        }
        100% {
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 0 0 rgba(255, 215, 0, 0);
        }
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }

    .luxury-process .process-steps,
    .luxury-social-proof .ratings-overview {
        display: none; /* Hide desktop grids on mobile */
    }

    section.luxury-process .carousel-container,
    section.luxury-social-proof .carousel-container {
        display: block !important; /* Show carousels on mobile */
    }

    .section-header {
        padding-top: 80px; /* Fix for header overlap */
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 15px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-luxury {
        width: 100%;
        min-height: 50px;
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-header .subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .luxury-services,
    .luxury-process,
    .luxury-testimonials,
    .luxury-gallery,
    .service-areas,
    .luxury-contact {
        padding: 60px 0;
    }
    
    /* Process cards on tablet */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step {
        min-height: 300px;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .step h3 {
        font-size: 1.5rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    /* Location cards on tablet */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Process cards on mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .step {
        min-height: 260px;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.35rem;
    }
    
    .step p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Location cards on mobile */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .luxury-hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .process-step,
    .location-card {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .mobile-call-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
    
    .luxury-menu a {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-badges {
        gap: 0.8rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Touch Device Optimizations */
.touch-device .btn:hover {
    transform: none;
}

.touch-device .service-card:hover {
    transform: none;
}

.touch-device .process-step:hover {
    transform: none;
}

.touch-device .location-card:hover {
    transform: none;
}

/* Use viewport height for mobile browsers */
.luxury-hero {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

/* Mobile Carousel Styles */
.process-carousel-container,
.reviews-carousel-container {
    position: relative;
}

/* Desktop: Hide carousel navigation */
@media screen and (min-width: 769px) {
    .carousel-nav {
        display: none !important;
    }

    .carousel-dots {
        display: none !important;
    }
}

/* Mobile: Show carousel navigation */
@media screen and (max-width: 768px) {
    .carousel-nav {
        display: block !important;
    }

    .carousel-dots {
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 20px !important;
    }
}

.dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.dot.active {
    background: var(--gold) !important;
    transform: scale(1.2) !important;
}

.carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: var(--white) !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.prev-btn {
    left: 10px !important;
}

.next-btn {
    right: 10px !important;
}

@media (max-width: 768px) {
    /* Force override conflicting styles */
    .luxury-process .section-header,
    .social-proof .section-header {
        margin-bottom: 4rem !important;
    }
    
    .section-header h2 {
        margin-bottom: 1.5rem !important;
    }
    
    .section-header p,
    .section-header .subtitle {
        margin-bottom: 0 !important;
    }

    /* Process Carousel - Force Override */
    .process-carousel-container {
        overflow: hidden !important;
        position: relative !important;
    }
    
    .process-steps {
        display: flex !important;
        transition: transform 0.5s ease !important;
        width: 400% !important; /* 4 steps * 100% */
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .process-steps .step {
        width: 25% !important; /* Each step takes 1/4 of container */
        flex-shrink: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: auto !important;
    }
    
    .process-steps .step-content {
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 2rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .carousel-nav.process-nav {
        display: block !important;
    }
    
    .carousel-dots.process-dots {
        display: flex !important;
    }
    
    /* Reviews Carousel - Force Override */
    .reviews-carousel-container {
        overflow: hidden !important;
        position: relative !important;
    }
    
    .ratings-overview {
        display: flex !important;
        transition: transform 0.5s ease !important;
        width: 300% !important; /* 3 reviews * 100% */
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .ratings-overview .customer-review {
        width: 33.333% !important; /* Each review takes 1/3 of container */
        flex-shrink: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }
    
    .customer-review {
        width: 90% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 2rem 1rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .customer-review .reviewer-info,
    .customer-review .review-stars,
    .customer-review .review-text,
    .customer-review .review-platform {
        width: 100% !important;
        text-align: center !important;
    }
    
    .carousel-nav.reviews-nav {
        display: block !important;
    }
    
    .carousel-dots.reviews-dots {
        display: flex !important;
    }
}

/* MOBILE CAROUSEL FIXES - FINAL OVERRIDE */
@media screen and (max-width: 768px) {
    /* Hero section mobile spacing - prevent header overlap */
    .hero-text {
        margin-top: 80px !important;
    }
    
    .hero-text h1 {
        margin-top: 20px !important;
    }
    
    /* Reduce section spacing on mobile */
    section.luxury-process {
        padding: 40px 0 !important;
    }
    
    /* Mobile Carousel Visibility and Functionality */
    .process-carousel,
    .reviews-carousel {
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .carousel-wrapper {
        position: relative !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .carousel-track {
        display: flex !important;
        transition: transform 0.3s ease !important;
        will-change: transform !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .carousel-slide {
        /* Ensure exactly one slide per viewport width */
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 0 8px !important; /* slight breathing room inside slide */
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Center carousel slides and ensure visibility */
    .carousel-slide .customer-review,
    .carousel-slide .step {
        max-width: 92% !important; /* fill most of the slide */
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Center review cards specifically */
    .reviews-carousel .customer-review {
        max-width: 350px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center process cards specifically */
    .process-carousel .step {
        max-width: 350px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Force all carousel content to be visible */
    .reviews-carousel .carousel-slide,
    .reviews-carousel .carousel-slide *,
    .process-carousel .carousel-slide,
    .process-carousel .carousel-slide * {
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .carousel-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
    }
    
    .carousel-btn.prev {
        left: 10px !important;
    }
    
    .carousel-btn.next {
        right: 10px !important;
    }
    
    .carousel-btn {
        background: rgba(30, 144, 255, 0.8) !important;
        border: none !important;
        color: white !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        font-size: 14px !important;
    }
    
    .carousel-dots {
        text-align: center !important;
        margin-top: 20px !important;
    }
    
    .dot {
        display: inline-block !important;
        width: 10px !important;
        height: 10px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.3) !important;
        margin: 0 5px !important;
        cursor: pointer !important;
        transition: background 0.3s ease !important;
    }
    
    .dot.active {
        background: #1e90ff !important;
    }
    
    /* Header spacing fixes - push title down */
    section.luxury-process .section-header,
    section.social-proof .section-header {
        margin-bottom: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
    
    .section-header h2 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
        padding-top: 1rem !important;
    }
    
    .section-header p {
        margin-bottom: 2rem !important;
    }
    
    /* Process carousel - fix overlap and centering */
    .process-carousel-container {
        overflow: hidden !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .process-carousel-container .process-steps {
        display: flex !important;
        width: 400% !important;
        transform: translateX(0) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .process-steps .step {
        width: 25% !important;
        flex: 0 0 25% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .step .step-content {
        width: 85% !important;
        max-width: 250px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 1.5rem 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    /* Reviews carousel - fix overlap and centering */
    .reviews-carousel-container {
        overflow: hidden !important;
        position: relative !important;
        width: 100% !important;
    }
    
    .reviews-carousel-container .ratings-overview {
        display: flex !important;
        width: 300% !important;
        transform: translateX(0) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .ratings-overview .customer-review {
        width: 33.333% !important;
        flex: 0 0 33.333% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .customer-review {
        width: 85% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 1.5rem 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .customer-review .reviewer-info,
    .customer-review .review-stars,
    .customer-review .review-text,
    .customer-review .review-platform {
        width: 100% !important;
        text-align: center !important;
        margin: 0.5rem 0 !important;
    }
    
    /* Force carousel navigation to show and position correctly */
    .carousel-nav.process-nav,
    .carousel-nav.reviews-nav {
        display: block !important;
        position: relative !important;
        height: 0 !important;
    }
    
    .carousel-dots.process-dots,
    .carousel-dots.reviews-dots {
        display: flex !important;
        justify-content: center !important;
        margin-top: 2rem !important;
        gap: 8px !important;
    }
    
    .carousel-btn {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 10 !important;
    }
}

/* FINAL MOBILE CAROUSEL OVERRIDE - FORCE VISIBILITY */
@media screen and (max-width: 768px) {
    .process-carousel,
    .reviews-carousel {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 2rem auto !important;
        overflow: visible !important;
        background: transparent !important;
        z-index: 1 !important;
    }
    
    .process-carousel *,
    .reviews-carousel * {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Services Section CTAs */
.services-intro-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-service-primary {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.2);
}

.btn-service-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.4);
}

.btn-service-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.2);
}

.btn-service-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.4);
}

.services-bottom-cta {
    text-align: center;
    padding: 4rem 2rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.services-bottom-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Locations Section CTA */
.locations-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.locations-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Reviews Section CTA */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-cta i {
    color: #ffd700;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 144, 255, 0.5);
    background: rgba(30, 144, 255, 0.05);
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1e90ff 0%, #4169e1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Tablet view - 2 columns */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

/* Mobile view - 1 column */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .services-intro-cta {
        margin-top: 1.5rem;
    }
    
    .btn-service-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .btn-service-primary-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .services-bottom-cta h3 {
        font-size: 1.25rem;
    }
    
    .locations-cta p {
        font-size: 1rem;
    }
}