/* Remodel Wow Contact Page New Sections */
.contact-planning-section,
.contact-services-section,
.contact-faq-section {
    padding: 100px 0;
}

.contact-planning-section {
    background: #ffffff;
}

.contact-services-section {
    background: #f7f4f1;
}

.contact-faq-section {
    background: #ffffff;
}

/* Contact intro/form improvements */
.contact-us-content-box .section-title p,
.contact-box-form .section-title p {
    line-height: 1.8;
    color: #666666;
}

.contact-us-content-box .section-title p:not(:last-child) {
    margin-bottom: 16px;
}

.contact-us-info-content p {
    line-height: 1.7;
    color: #666666;
}

/* Sidebar CTA small text */
.sidebar-cta-content p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Planning cards */
.contact-planning-card {
    height: 100%;
    padding: 34px 30px;
    border-radius: 24px;
    background: #f7f4f1;
    border: 1px solid rgba(90, 63, 52, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-planning-card:hover {
    transform: translateY(-5px);
    border-color: rgba(90, 63, 52, 0.28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.contact-planning-card h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #1f1f1f;
}

.contact-planning-card p {
    margin: 0;
    color: #666666;
    line-height: 1.75;
}

/* Services section list */
.contact-service-list {
    background: #ffffff;
    border-radius: 26px;
    padding: 38px;
    border: 1px solid rgba(90, 63, 52, 0.12);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.06);
}

.contact-service-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-service-list ul li {
    position: relative;
    padding-left: 34px;
    color: #555555;
    line-height: 1.7;
    font-weight: 500;
}

.contact-service-list ul li:not(:last-child) {
    margin-bottom: 18px;
}

.contact-service-list ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #5a3f34;
    color: #ffffff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact FAQ section */
.contact-faq-section .faq-accordion {
    margin-top: 10px;
}

.contact-faq-section .accordion-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(90, 63, 52, 0.12);
    background: #ffffff;
    margin-bottom: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.contact-faq-section .accordion-button {
    font-weight: 700;
    color: #1f1f1f;
}

.contact-faq-section .accordion-body p {
    color: #666666;
    line-height: 1.75;
}

/* Map copy improvement */
.google-map .section-title p {
    max-width: 880px;
    margin: 18px auto 0;
    color: #666666;
    line-height: 1.8;
}

/* Form small polish */
.contact-box-form select.form-control {
    cursor: pointer;
}

.contact-box-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-planning-section,
    .contact-services-section,
    .contact-faq-section {
        padding: 70px 0;
    }

    .contact-services-section .section-title {
        margin-bottom: 35px;
    }

    .contact-service-list {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .contact-planning-section,
    .contact-services-section,
    .contact-faq-section {
        padding: 55px 0;
    }

    .contact-planning-card,
    .contact-service-list {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .contact-planning-card h3 {
        font-size: 21px;
    }

    .contact-service-list ul li {
        padding-left: 30px;
        font-size: 15px;
    }

    .contact-service-list ul li::before {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
}