/* Hydro Jetting Page Styles */

/* Delivery Grid Sections */
.why-choose-section,
.when-to-use-section,
.residential-section,
.commercial-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.why-choose-section {
    background-color: var(--dark-bg);
}

.residential-section {
    background-color: var(--dark-bg);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.delivery-item {
    background-color: rgb(255 255 255 / .05);
    padding: 30px;
    border-radius: 8px;
    transition: transform .3s;
}

.delivery-item:hover {
    transform: translateY(-5px);
}

.delivery-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.delivery-item h3 {
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.delivery-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* Soft CTA Section */
.soft-cta-section {
    padding: 60px 0;
    text-align: center;
}

.soft-cta-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.soft-cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.soft-cta-content .btn-primary {
    color: var(--gold-primary);
    border: 2px solid var(--dark-bg);
}

.soft-cta-content .btn-primary:hover {
    background-color: transparent;
    color: var(--dark-bg);
    border-color: var(--dark-bg);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgb(255 255 255 / .05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgb(255 255 255 / .08);
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 25px 20px;
    line-height: 1.7;
    color: var(--light-text);
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .delivery-item {
        padding: 25px;
    }

    .delivery-icon {
        font-size: 30px;
    }

    .soft-cta-content h3 {
        font-size: 20px;
    }

    .soft-cta-content p {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 20px;
    }

    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}
