/* =========================================
   Modern FAQ Section (Premium Light Mode)
   ========================================= */

.faq-modern-section {
    padding: 6rem 0 8rem;
    background-color: #F8FAFC; /* Very light slate */
}

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

.accordion-item-modern {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.accordion-item-modern:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

.accordion-item-modern.active {
    border-color: var(--color-volt);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.accordion-header-modern {
    padding: 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    color: #0F172A;
    background: transparent;
    transition: all 0.2s;
}

.accordion-header-modern:hover {
    color: var(--color-navy);
}

.accordion-item-modern.active .accordion-header-modern {
    color: var(--color-navy);
}

.accordion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item-modern:hover .accordion-icon {
    background: #E2E8F0;
    color: #0F172A;
}

.accordion-item-modern.active .accordion-icon {
    background: var(--color-volt);
    color: #0F172A;
    transform: rotate(45deg);
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
}

.accordion-content-modern {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #475569;
}

.accordion-item-modern.active .accordion-content-modern {
    padding: 0 1.5rem 1.5rem;
    max-height: 600px;
    opacity: 1;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #0F172A;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .faq-modern-section {
        padding: 3rem 0 3.5rem;
    }
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    .accordion-header-modern {
        font-size: 1rem;
        padding: 1.1rem 1rem;
    }
    .accordion-content-modern {
        padding: 0 1rem;
    }
    .accordion-item-modern.active .accordion-content-modern {
        padding: 0 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* =========================================
   What's Next Section
   ========================================= */

.whats-next-section {
    padding: 2rem 0 2.5rem 0;
    background-color: #141414;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 40%);
    text-align: center;
    border-top: 1px solid #222;
}

/* Badge Style - Brand Blue */
.whats-next-section .section-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #155a9c 100%);
    color: #FFFFFF;
    display: inline-block;
    padding: 0.4rem 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.whats-next-section h2 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.whats-next-section .section-header p {
    color: #A3A3A3;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (min-width: 768px) {
    .whats-next-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.next-step-card {
    background: linear-gradient(180deg, #1a2030 0%, #141922 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.next-step-image {
    height: 170px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.next-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.next-step-content {
    padding: 1.5rem 1.5rem;
    text-align: left;
    flex-grow: 1;
    background: transparent;
    position: relative;
    z-index: 2;
}

.next-step-content h3 {
    margin-bottom: 0.5rem;
    color: #F8FAFC;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.next-step-content p {
    color: #A3A3A3;
    font-size: 0.9rem;
    line-height: 1.6;
}

.next-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.6);
    background: linear-gradient(180deg, #1c2640 0%, #161e32 100%);
}

.next-step-card:hover .next-step-image img {
    transform: scale(1.05);
}

/* Mobile Horizontal Scroll for What's Next */
@media (max-width: 768px) {
    .whats-next-section {
        padding-bottom: 1rem;
        /* Reduced from 2.5rem */
    }

    .whats-next-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 2rem;

        /* Full bleed margins */
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        width: calc(100% + 2rem);
        max-width: 100vw;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .whats-next-grid::-webkit-scrollbar {
        display: none;
    }

    .next-step-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

/* =========================================
   Refined Service Area Section
   ========================================= */

/* Homepage Split Layout */
.service-area-section {
    padding: 2rem 0;
    /* Reduced default */
    background-color: #FFFFFF;
    /* White background as requested */
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .service-area-section {
        padding: 1rem 0;
        /* Very tight on mobile */
    }

    .service-area-section .section-header {
        margin-bottom: 1rem !important;
        /* Override inline style */
    }
}

@media (max-width: 768px) {
    .reviews-section .section-header {
        margin-bottom: 0.75rem !important;
        /* Reduced from 1.5rem for tighter spacing */
    }
}

.service-area-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    /* Reduced from 2rem */
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .service-area-split {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
}

.service-map-container {
    height: 300px;
    /* Reduced from 350px for mobile */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .service-map-container {
        height: 450px;
    }
}

.service-content-wrapper {
    background: #FFFFFF;
    /* White background */
    padding: 1.5rem;
    /* Reduced from 2rem */
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: #334155;
    /* Darker slate color for better readability */
}

.service-content-wrapper p {
    color: #334155;
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .service-content-wrapper {
        padding: 2.5rem;
    }
}

.service-content-wrapper h3 {
    color: #1A1A1A;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .service-content-wrapper h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    /* Reduced margin */
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    color: #1A1A1A;
    font-weight: 500;
    font-size: 0.85rem;
}

.service-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #FF6B35;
    /* Brand Blue */
    color: #FFFFFF;
    border-radius: 50%;
    margin-right: 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
}