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

body {
    font-family: 'Inter', sans-serif;
    background-color: #111827;
    color: #f9fafb;
    line-height: 1.6;
}

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

/* Typography */
.text-accent {
    color: #f97316;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #111827;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: rgba(38, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #4d4d4d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #f97316;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f97316;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
}

.phone-icon {
    width: 16px;
    height: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('carwash.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 36, 36, 0.8), rgba(249, 115, 22, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-secondary {
    font-size: 1.2rem;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: #fbbf24;
}

.feature-title {
    font-weight: 600;
    color: white;
}

.feature-desc {
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #353536;
}

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

.services-grid-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: #232324;
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #6b7280;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    background: #232324;
    border: 2px solid #f97316;
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ea580c);
}

.service-card.featured:hover {
    border-color: #ea580c;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: #f97316;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #f97316;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-highlights {
    background: rgba(75, 85, 99, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.service-highlights h4 {
    color: #f97316;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 0.9rem;
}

.service-highlights li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #232324;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    margin-bottom: 2rem;
}

.slider-wrapper {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    cursor: col-resize;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: left 0.1s ease;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: #f97316;
    border-radius: 50%;
}

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

.slider-label-before {
    left: 1rem;
}

.slider-label-after {
    right: 1rem;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(107, 114, 128, 0.3);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

.slider-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #f97316;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #353536;
}

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

.faq-item {
    background: #212121;
    border: 1px solid #374151;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #6b7280;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #f97316;
    transition: transform 0.3s ease;
}

.icon-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 48px;
    height: 48px;
}

.icon-svg {
    width: 32px;
    height: 32px;
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #232324;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #f97316;
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #d1d5db;
    line-height: 1.5;
}

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

.cta-text {
    margin-top: 1rem;
    color: #d1d5db;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #292929;
    padding: 3rem 0 1rem;
    border-top: 1px solid #515152;
}

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

.footer-brand p {
    margin-top: 1rem;
    color: #94a3b8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-group h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #f97316;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav,
    .phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-highlights ul {
        grid-template-columns: 1fr;
    }
    
    .slider-wrapper {
        height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .slider-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .btn-xl {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card.featured {
        padding: 2rem;
    }
    
    .service-card.featured .service-title {
        font-size: 1.5rem;
    }
    
    .service-card.featured .service-price {
        font-size: 2rem;
    }
}