/* Painting Services Page CSS */

/* =========================================
   Location Cards Section
   ========================================= */
.loc-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loc-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.custom-loc-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.custom-loc-col {
    width: 50%;
    /* 2 per row by default */
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .custom-loc-col {
        width: 25%;
        /* 4 per row after 991px */
    }
}

.loc-card-inner {
    padding: 25px 15px; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    height: 100%; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.bg-blue-light { background: #e8f4f8; }
.bg-orange-light { background: #f9f0e5; }
.bg-green-light { background: #eaf5e9; }
.bg-purple-light { background: #f4eef9; }

.loc-icon-wrap {
    width: 50px; 
    height: 50px; 
    background: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 15px;
}

.loc-title {
    font-size: 1.05rem; 
    font-weight: 600; 
    margin-bottom: 10px; 
    color: var(--c-dark);
}

.loc-desc {
    color: #555; 
    margin-bottom: 0; 
    line-height: 1.5; 
    font-size: 0.85rem;
}

/* =========================================
   Timeline / Process Section
   ========================================= */
.hz-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
}

.hz-timeline::before {
    content: '';
    position: absolute;
    top: 42px;
    /* Center of the number circles */
    left: 5%;
    right: 5%;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
}

.hz-step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.hz-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    line-height: 1;
    background: #fff;
    border: 3px solid #f39c12;
    /* Gold color */
    color: #f39c12;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 5px #fff;
    /* Knockout effect against the line */
}

.hz-step h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

.hz-step p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Mobile Vertical Fallback */
@media (max-width: 991px) {
    .hz-timeline {
        flex-direction: column;
        padding-top: 0;
    }

    .hz-timeline::before {
        top: 0;
        bottom: 0;
        left: 36px;
        right: auto;
        width: 3px;
        height: 100%;
    }

    .hz-step {
        display: flex;
        text-align: left;
        margin-bottom: 30px;
        padding: 0;
        width: 100%;
    }

    .hz-step-num {
        margin: 0 15px 0 15px;
        flex-shrink: 0;
        background: #fff;
    }

    .hz-step h4 {
        margin-top: 8px;
    }
}

/* =========================================
   FAQ Section
   ========================================= */
.ps-faq-accordion .ps-faq-item {
    border: none;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ps-faq-accordion .ps-faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.ps-faq-accordion .ps-faq-btn {
    background: #fff;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.ps-faq-accordion .ps-faq-btn i {
    flex-shrink: 0;
    margin-left: 15px;
    color: #f39c12;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(243, 156, 18, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ps-faq-accordion .ps-faq-btn.active {
    color: #f39c12;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.ps-faq-accordion .ps-faq-btn.active i {
    transform: rotate(180deg);
    background: #f39c12;
    color: #fff;
}

.ps-faq-accordion .ps-faq-content {
    background: #fafafa;
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ps-faq-accordion .ps-faq-content.show {
    max-height: 500px;
    padding: 20px 25px;
}

.ps-faq-accordion .ps-faq-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =========================================
   Contact / Quote Form Section
   ========================================= */
.custom-split-layout {
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.custom-split-left {
    flex: 1 1 40%;
    min-width: 250px;
    padding: 50px;
    background-color: #1f2937;
    /* Solid dark background */
    color: #ffffff;
}

.custom-split-right {
    flex: 1 1 60%;
    min-width: 250px;
    padding: 50px;
    background-color: #ffffff;
}

.custom-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-form-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}

.custom-form-item-full {
    flex: 1 1 100%;
}

.custom-form-item label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.custom-form-item input,
.custom-form-item select,
.custom-form-item textarea {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fdfdfd;
}

.ps-btn-gold-solid {
    background: #e6b15c;
    color: #fff;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 5px !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
}
.ps-btn-gold-solid:hover { color: #fff; opacity: 0.9; }

.ps-btn-wa-solid {
    background: #25d366;
    color: #fff;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 5px !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
}
.ps-btn-wa-solid:hover { color: #fff; opacity: 0.9; }

.ps-form-submit {
    background: #e6b15c;
    color: #fff;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 5px !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
    cursor: pointer;
}
.ps-form-submit:hover { opacity: 0.9; }


@media (max-width: 768px) {
    .custom-split-left,
    .custom-split-right {
        flex: 1 1 100%;
        padding: 40px 25px;
    }
}

/* =========================================
   8-Card Info Grid (Property Details)
   ========================================= */
.ps-info-grid {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 2%; 
    margin: 0 auto; 
    max-width: 1400px;
}
.ps-info-col {
    flex: 1 1 23%; 
    max-width: 23%; 
    min-width: 260px; 
    margin-bottom: 25px;
}
.ps-info-card {
    height: 100% !important; 
    min-height: 95px; 
    display: flex !important; 
    align-items: center !important; 
    padding: 15px 15px !important; 
    overflow: visible !important;
}
.ps-info-content {
    height: auto !important; 
    padding: 0 !important; 
    overflow: visible !important; 
    width: 100%;
}
.ps-info-inner {
    display: flex; 
    align-items: center; 
    gap: 12px; 
    text-align: left;
}
.ps-info-icon {
    font-size: 2rem; 
    color: var(--c-gold); 
    flex-shrink: 0; 
    margin-bottom: 0;
}
.ps-info-title {
    font-size: 0.98rem; 
    font-weight: 600; 
    margin-bottom: 0; 
    white-space: normal !important; 
    overflow: visible !important; 
    text-overflow: unset !important; 
    line-height: 1.35; 
    text-align: left;
}
.ps-info-highlight-wrap {
    width: 100%; 
    max-width: 1400px; 
    margin: 2rem auto 0 auto;
}
.ps-info-highlight {
    background-color: rgba(212, 163, 115, 0.15); 
    border: 1px dashed rgba(212, 175, 55, 0.4); 
    border-radius: 8px; 
    padding: 15px 20px; 
    color: var(--c-dark); 
    font-weight: 500; 
    font-size: 1.05rem; 
    width: 100%;
    text-align: center;
}

/* =========================================
   Why Choose Us Section
   ========================================= */
.ps-needs-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    align-items: stretch;
}
.ps-need-card {
    display: flex !important; 
    align-items: center !important; 
    gap: 20px !important; 
    padding: 22px 20px !important; 
    background: #f9f4ec; 
    border-radius: 10px; 
    min-height: 140px !important; 
    height: 100% !important;
}
.ps-need-icon-wrap {
    width: 60px; 
    min-width: 60px; 
    flex-shrink: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.ps-need-icon {
    font-size: 2.8rem !important; 
    color: var(--c-gold);
}
.ps-need-content {
    display: flex !important; 
    flex-direction: column !important; 
    align-items: flex-start !important; 
    justify-content: center !important; 
    text-align: left !important; 
    width: 100%;
}
.ps-need-title {
    font-size: 1.15rem; 
    font-weight: 600; 
    margin-bottom: 6px; 
    color: var(--c-dark); 
    line-height: 1.3;
}
.ps-need-desc {
    font-size: 0.92rem; 
    line-height: 1.5; 
    margin: 0; 
    color: #444;
}

/* 8 Info Cards Grid */
.ps-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    margin: 0 auto;
    max-width: 1400px;
}

.ps-info-col {
    flex: 1 1 23%;
    max-width: 23%;
    min-width: 260px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .ps-info-col {
        flex: 1 1 48%;
        max-width: 48%;
    }
}

@media (max-width: 480px) {
    .ps-info-col {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.ps-info-card {
    background: #ffffff;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    height: 100% !important;
    min-height: 95px;
    display: flex !important;
    align-items: center !important;
    padding: 15px 15px !important;
    overflow: visible !important;
}

.ps-info-content {
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    width: 100%;
}

.ps-info-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    overflow: visible !important;
}

.ps-info-highlight {
    background-color: rgba(212, 163, 115, 0.15);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--c-dark);
    font-weight: 500;
    font-size: 1.05rem;
    width: 100%;
}

/* Why Choose Us Cards */
.ps-needs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.ps-need-card {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 22px 20px !important;
    background: #f9f4ec;
    border-radius: 10px;
    min-height: 140px !important;
    height: 100% !important;
}

.ps-need-icon-wrap {
    width: 60px;
    min-width: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-need-icon {
    font-size: 2.8rem !important;
    color: var(--c-gold);
}

.ps-need-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: left !important;
    width: 100%;
}

.ps-need-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--c-dark);
    line-height: 1.3;
}

.ps-need-desc {
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
    color: #444;
}

/* Quote Form Submits */
.ps-btn-gold-solid {
    background: #e6b15c;
    color: #fff;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 5px !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
}
.ps-btn-gold-solid:hover {
    color: #fff;
}

.ps-btn-wa-solid {
    background: #25d366;
    color: #fff;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 5px !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
}
.ps-btn-wa-solid:hover {
    color: #fff;
}

.ps-form-submit {
    background: #e6b15c;
    color: #fff;
    padding: 12px 25px !important;
    font-size: 1.1rem !important;
    border-radius: 5px !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
    cursor: pointer;
}
.ps-form-submit:hover {
    background: #d49f4c;
    color: #fff;
}


.single-service-style1 .ps-info-icon {
    font-size: 3rem !important;
    color: var(--c-gold);
    flex-shrink: 0;
    margin-bottom: 0;
}

.single-service-style1 .text-holder h3.ps-info-title {
    font-size: 1.15rem !important;
    font-weight: 600;
    margin-bottom: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.35;
    text-align: left;
}

.ps-info-highlight-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto 0 auto;
}


/* Uniform Section Titles (H2) */
section h2, .about-sec-title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 30px !important;
}

/* Uniform Small Titles (H3, H5, Card Titles) */
section h3, section h5, .ps-info-title, .ps-need-title, .loc-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

/* Mobile Responsiveness to keep titles within 2 lines */
@media (max-width: 768px) {
    section h2, .about-sec-title {
        font-size: 1.7rem !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {
    .ps-faq-accordion .ps-faq-btn {
        padding: 15px 15px;
        font-size: 1rem;
        align-items: flex-start;
    }
    .ps-faq-accordion .ps-faq-btn i {
        width: 30px;
        height: 30px;
    }
    section h2, .about-sec-title {
        font-size: 1.4rem !important;
    }
    section h3, section h5, .ps-info-title, .ps-need-title, .loc-title {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    .ps-btn-gold-solid, .ps-btn-wa-solid, .ps-form-submit {
        font-size: 1rem !important;
        padding: 10px 15px !important;
    }
}
