@media (max-width: 767px) {
  .hero-section {
    margin-top: 100px !important; /* Adjust the value as needed */
  }
}

        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --border-color: #e5e7eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            /* Soft Indigo - Elegant and subtle */
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
            color: white;
        }

        .stats-section {
            background: var(--bg-light);
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
        }


        .contact-form {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .form-control {
            border-radius: 8px;
            border: 2px solid var(--border-color);
            padding: 12px 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 30px;
        }

        .location-badge {
            background: var(--accent-color);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* Hero Section Styles */
        .hero-section {
    background: #ffffff;
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


/*navbar styles*/
.navbar-light .navbar-nav .nav-link {
    font-size: 16px !important;
}

.phone-header{
    font-size: calc(1.1rem + .4vw) !important;
}
.hero-content {
    padding-right: 2rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.location-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.55rem, 3vw, 2.45rem);  /* Reduced the minimum and maximum values */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}


/* Modern alternatives to #2563eb */
.text-accent {
    color: #6a11cb; /* Purple */
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 95%;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: #0f172a;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 2px solid #0f172a;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #1e293b;
    border-color: #1e293b;
    color: white;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    padding-left: 2rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.image-container:hover .hero-img {
    transform: scale(1.02);
}

.quality-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 0.875rem;
    color: #374151;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .quality-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 14px;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}


        /* Contact Section */
        .contact-section {
            background: #f8fafc;
            padding: 100px 0;
            position: relative;
        }

        .contact-content {
            padding-right: 3rem;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .contact-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .contact-info {
            margin-bottom: 3rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
        }

        .contact-item:hover {
            border-color: #d1d5db;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: #f3f4f6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-icon i {
            color: #374151;
            font-size: 1.2rem;
        }

        .contact-details h6 {
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.25rem;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .contact-details p,
        .contact-details a {
            color: #6b7280;
            margin: 0;
            font-size: 1rem;
            line-height: 1.5;
        }

        .contact-details a {
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .contact-details a:hover {
            color: #111827;
        }

        .btn-contact-primary {
            background: #111827;
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            border: 2px solid #111827;
            margin-bottom: 1rem;
        }

        .btn-contact-primary:hover {
            background: #374151;
            border-color: #374151;
            color: white;
            transform: translateY(-1px);
        }

        .emergency-text {
            color: #059669;
            font-size: 0.875rem;
            font-weight: 500;
            margin: 0;
        }

        .contact-form-wrapper {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            border: 1px solid #e5e7eb;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #f3f4f6;
        }

        .form-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: #6b7280;
            margin: 0;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }

            .contact-content {
                padding-right: 0;
                margin-bottom: 3rem;
            }
            
            .contact-title {
                font-size: 2rem;
                text-align: center;
            }
            
            .contact-subtitle {
                text-align: center;
            }
        }

        .service-areas-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e2e8f0" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-areas-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-areas-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-content {
    position: relative;
    z-index: 2;
}

.service-description {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.description-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.description-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.description-card p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.locations-grid {
    margin-bottom: 3rem;
}

.locations-header {
    text-align: center;
    margin-bottom: 2rem;
}

.locations-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.locations-header p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.location-card:hover::before {
    transform: scaleY(1);
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
    text-decoration: none;
    color: inherit;
}

.primary-location {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.primary-location::before {
    transform: scaleY(1);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.primary-location .location-icon {
    background: #2563eb;
    color: white;
}

.location-card:hover .location-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.primary-location:hover .location-icon {
    transform: scale(1.1);
}

.location-info {
    flex: 1;
}

.location-name {
    display: block;
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.location-badge {
    display: inline-block;
    background: #6a11cb;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.location-distance {
    color: #64748b;
    font-size: 0.875rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-areas-section {
        padding: 80px 0;
    }
    
    .service-areas-title {
        font-size: 2rem;
    }
    
    .description-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .location-card {
        padding: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .description-card {
        margin: 0 1rem;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

    
    
    .testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    transform: rotate(15deg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.25rem;
    color: #d1d5db;
    transition: color 0.2s ease;
}

.star.filled {
    color: #fbbf24;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.customer-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.25rem;
}

.customer-details p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    color: #059669;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #a7f3d0;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-cta p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .customer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}


    .faq-section {
    padding: 100px 0;
    background: #fafafa;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
    border-color: #2563eb;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #64748b;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: #2563eb;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.faq-content p {
    color: #374151;
    line-height: 1.6;
    margin: 1rem 0 0;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-content {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
}


    .services-detail-section {
    padding: 100px 0;
    background: white;
}

.services-detail-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-main-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-detail-card:hover::before {
    transform: scaleY(1);
}

.service-detail-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.service-detail-title {
    margin: 0;
    flex: 1;
}

.service-detail-title a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease;
    display: block;
}

.service-detail-title a:hover {
    color: #2563eb;
}

.service-detail-content p {
    color: #374151;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.service-detail-card:hover .feature-tag {
    background: #e0f2fe;
    border-color: #0ea5e9;
    color: #0c4a6e;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-detail-section {
        padding: 80px 0;
    }
    
    .services-main-title {
        font-size: 2rem;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .service-detail-header {
        gap: 1rem;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .service-detail-title a {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .service-detail-title a {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .service-features {
        justify-content: center;
    }
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}

/* Target highlight for anchor links */
.service-detail-card:target {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/*vehicle section*/
.vehicles-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.vehicles-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.vehicles-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-category {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.vehicle-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vehicle-category:hover::before {
    transform: scaleX(1);
}

.vehicle-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.vehicle-category.featured {
    border: 2px solid #007bff;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.vehicle-category.luxury {
    border: 2px solid #6f42c1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6ff 100%);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.luxury .category-icon {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
}

.featured .category-icon {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #1a1a1a;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex-grow: 1;
}

.category-badge {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.category-badge.popular {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.category-badge.luxury {
    background: linear-gradient(135deg, #6f42c1, #5a2d91);
    color: white;
}

.vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vehicle-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.vehicle-tag:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.luxury .vehicle-tag:hover {
    background: #6f42c1;
    box-shadow: 0 4px 12px rgba(111, 66, 193, 0.3);
}

.featured .vehicle-tag:hover {
    background: #ffc107;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .vehicles-section {
        padding: 60px 0;
    }
    
    .vehicles-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .vehicle-category {
        padding: 25px 20px;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .vehicle-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .vehicle-category {
        padding: 20px 15px;
    }
    
    .vehicle-tag {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}
