/*
Theme Name: Pressure Washing
Theme URI: 
Author: Sofverse
Author URI: https://sofverse.com/
Description: Custom WordPress theme for pressure washing
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pressure-washing
*/

/* ============================================
   HERO SECTION
   ============================================ */
.custom-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 180px 20px;
    background-color: #c9e8f5;
    z-index: 10;
}

.custom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 38, 59, 0.2) 0%, rgba(8, 38, 59, 0.45) 100%);
    z-index: -1;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    pointer-events: none;
    line-height: 0;
    display: flex;
    align-items: flex-end;
}

.hero-wave img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-container {
    z-index: 30;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
    color: #fff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0px 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: capitalize;
}

.hero-title span {
    color: #6B7280;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 45px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.hero-subtitle span {
    color: #a8b4be;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 6px 6px 6px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-blue {
    background: linear-gradient(180deg, #0ea5e9 0%, #0369A1 100%);
    border: 1px solid #025580;
}

.btn-orange {
    background: linear-gradient(180deg, #5a7d50 0%, #3a5530 100%);
    border: 1px solid #2e4227;
}

.btn-outline {
    background: #fff;
    border: 2px solid #0369A1;
    color: #0369A1 !important;
}

.btn-outline:hover {
    background: #e8f4fd;
    color: #0369A1 !important;
}

.btn-outline .btn-icon {
    background: linear-gradient(180deg, #0ea5e9 0%, #0369A1 100%);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-left: 20px;
    font-size: 1.1rem;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 3px 6px rgba(0, 0, 0, 0.2);
}

.btn-blue .btn-icon {
    background: linear-gradient(180deg, #5a7d50 0%, #3a5530 100%);
}

.btn-orange .btn-icon {
    background: linear-gradient(180deg, #0ea5e9 0%, #0369A1 100%);
}

/* Hero Lead Form */
.hero-form-col {
    flex: 0 0 450px;
    width: 100%;
}

.hero-lead-form {
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.hero-form-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    color: #111;
    text-transform: uppercase;
}

.hero-form-desc {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.hero-main-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-main-form input,
.hero-main-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.hero-main-form input:focus,
.hero-main-form textarea:focus {
    border-color: #0369A1;
    outline: none;
}

.hero-submit-btn {
    width: 100%;
    justify-content: center;
    border: none;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-form-col {
        flex: 1;
        max-width: 450px;
        margin-top: 30px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background-color: #fff;
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image-col {
    position: relative;
    flex: 0 0 auto;
    width: clamp(260px, 35vw, 420px);
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: #f0f4f8;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.about-image-dots {
    position: absolute;
    top: 30px;
    left: -24px;
    width: 110px;
    height: 180px;
    background-image: radial-gradient(circle, #b0bec5 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 1;
    opacity: 0.55;
}

.about-content-col {
    flex: 1;
}

.about-heading {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 18px 0;
    letter-spacing: -0.3px;
}

.about-divider {
    width: 90px;
    height: 4px;
    background: #4A6741;
    border-radius: 2px;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 32px;
}

.about-text p {
    margin: 0 0 16px 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: 700;
    color: #111;
}

.about-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 860px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-col {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-image-dots {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-buttons {
        flex-direction: column;
        width: 100%;
    }

    .about-buttons .hero-btn {
        justify-content: space-between;
        width: 100%;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-wave-break {
    display: block;
    line-height: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}

.services-wave-break img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.services-section {
    background-color: #0369A1;
    padding: 70px 20px 80px;
    margin: 0;
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.services-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.services-heading span {
    color: #a8d5f5;
}

.services-subheading {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 0;
    line-height: 1.65;
}

.services-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 22px auto 48px;
    max-width: 500px;
}

.services-divider-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
}

.services-divider-accent {
    width: 70px;
    height: 4px;
    background: #4A6741;
    border-radius: 2px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    box-shadow: none;
    transition: transform 0.4s ease;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.service-card-image {
    width: 50%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.service-card-image-placeholder {
    width: 50%;
    aspect-ratio: 4 / 3;
    background: #d6e8d3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A6741;
    font-size: 4rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.service-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.service-card-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #a8d5f5;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    flex: 1;
    margin-bottom: 28px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 6px 6px 6px 26px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid #a8d5f5;
    color: #a8d5f5;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card-btn:hover {
    background: #a8d5f5;
    color: #0369A1;
    transform: translateY(-2px);
    border-color: #a8d5f5;
}

.service-card-btn .btn-icon {
    background: linear-gradient(180deg, #5a7d50 0%, #3a5530 100%);
    margin-left: 16px;
    color: #fff;
    box-shadow: none;
}

@media (max-width: 900px) {
    .service-card, .service-card:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .service-card-image, .service-card-image-placeholder {
        width: 100%;
        max-width: 500px;
    }
    
    .service-card-body {
        align-items: center;
        text-align: center;
    }
    
    .service-card-btn {
        align-self: center;
    }
}

@media (max-width: 560px) {
    .services-section {
        padding: 70px 16px 80px;
    }
}

/* ============================================
   RES/COM SLIDER SECTION
   ============================================ */
.rescom-slider-section {
    background-color: #eef5f9;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.rescom-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.rescom-slider-track {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.rescom-slide-item {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.rescom-slide-item.is-active {
    position: relative;
    top: 0;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.rescom-slide-header {
    text-align: center;
    margin-bottom: 50px;
}

.rescom-slide-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.rescom-slide-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.rescom-slide-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.rescom-middle-col {
    position: relative;
    z-index: 2;
}

.rescom-col-center {
    flex: 0 0 500px;
    z-index: 1;
}

.rescom-slide-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: block;
}

.rescom-col-left {
    flex: 0 0 300px;
    margin-right: -40px;
    margin-top: 100px;
}

.rescom-col-right {
    flex: 0 0 300px;
    margin-left: -40px;
    margin-bottom: 100px;
}

.rescom-floating-card {
    background: #f4f8fb;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rescom-slide-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #222;
    font-weight: 600;
}

.rescom-slide-check i {
    color: #0369A1;
    font-size: 1.2rem;
}

.rescom-slide-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rescom-slide-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.rescom-slide-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Arrows */
.rescom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #111;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.rescom-arrow:hover {
    background: #0369A1;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.rescom-arrow.prev-arrow {
    left: -70px;
}

.rescom-arrow.next-arrow {
    right: -70px;
}

@media (max-width: 1350px) {
    .rescom-arrow.prev-arrow { left: 0px; }
    .rescom-arrow.next-arrow { right: 0px; }
}

@media (max-width: 900px) {
    .rescom-slide-title {
        font-size: 2rem;
    }
    .rescom-slide-middle {
        flex-direction: column;
        gap: 20px;
    }
    .rescom-col-center {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .rescom-col-left, .rescom-col-right {
        flex: 0 0 auto;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
    }
    .rescom-floating-card {
        padding: 20px;
    }
    .rescom-arrow {
        display: none;
    }
    .rescom-slide-bottom {
        max-width: 100%;
    }
}

/* ============================================
   HOW WE QUOTE — STEPS SECTION
   ============================================ */
.steps-section {
    background-color: #fbf2f1;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.steps-container {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.steps-header {
    text-align: center;
    margin-bottom: 44px;
}

.steps-main-heading {
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
}

.steps-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    margin: 18px auto 20px;
    position: relative;
}

.steps-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.steps-divider-accent {
    width: 50px;
    height: 4px;
    background: #4A6741;
    border-radius: 2px;
    z-index: 2;
}

.steps-sub {
    font-size: 0.97rem;
    color: #111;
    font-weight: 500;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-box-wrapper {
    position: relative;
    /* Box wrapper no longer has background/shadow */
}



.steps-panel-wrap {
    padding: 0;
}

.steps-panel {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.steps-panel.is-active {
    display: flex;
}

.steps-panel-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    padding: 40px 60px 40px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.steps-panel-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 15px 0;
}

.steps-panel-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin: 0 0 30px 0;
}

.steps-panel-text p {
    margin: 0 0 10px 0;
}

.steps-panel-text p:last-child {
    margin-bottom: 0;
}

.steps-panel-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.steps-icon-wrap {
    flex-shrink: 0;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #d6ecf8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
    margin-left: -50px;
}

.steps-icon-inner {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-icon-inner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Steps Arrows */
.steps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0369A1;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.steps-arrow:hover {
    background: #025580;
    transform: translateY(-50%) scale(1.05);
}

.steps-arrow.prev-arrow { left: -22px; }
.steps-arrow.next-arrow { right: -22px; }

@media (max-width: 850px) {
    .steps-tab .tab-num {
        font-size: 1.4rem;
    }
    .steps-panel-wrap {
        padding: 30px 20px;
    }
    .steps-panel.is-active {
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }
    .steps-panel-content {
        padding: 20px 0 0 0;
        text-align: center;
        max-width: 100%;
    }
    .steps-icon-wrap {
        margin-left: 0;
        width: 250px;
        height: 250px;
    }
    .steps-icon-inner {
        width: 200px;
        height: 200px;
    }
    .steps-arrow {
        display: none;
    }
    .steps-panel-btns {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    .steps-panel-btns .hero-btn {
        justify-content: space-between;
        width: 100%;
    }
}


/* ============================================
   WHY TRUST US SECTION
   ============================================ */
.trust-section {
    background: #fff;
    padding: 80px 20px 60px;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    line-height: 1.15;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
}

.trust-sub {
    font-size: 0.97rem;
    color: #555;
    margin: 0 auto 18px;
    max-width: 480px;
}

.trust-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.trust-divider-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.trust-divider-accent {
    width: 70px;
    height: 4px;
    background: #4A6741;
    border-radius: 2px;
}
.trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
    padding-top: 20px;
}

.trust-card {
    width: calc(25% - 22.5px);
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 50px 24px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

/* Staggered masonry effect */
.trust-card:nth-child(even) {
    transform: translateY(40px);
}
.trust-card:nth-child(even):hover {
    transform: translateY(35px);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Featured Card completely glowing layout */
.trust-card.is-featured {
    box-shadow: 0 15px 45px rgba(3, 105, 161, 0.25);
    border-color: rgba(3, 105, 161, 0.1);
    z-index: 2;
}
.trust-card.is-featured:hover {
    box-shadow: 0 20px 55px rgba(3, 105, 161, 0.35);
}

/* Featured Card top left deco ring */
.trust-card-deco {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 10;
}
.trust-card-deco-dot {
    width: 8px;
    height: 8px;
    background: #6B7280;
    border-radius: 50%;
}

.trust-card-blob {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.trust-icon-outer {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightest outer concentric circle */
.trust-icon-outer::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    z-index: 0;
}

.trust-icon-inner {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    border: 4px solid #fff;
}

/* Blue accent */
.trust-card.accent-blue .trust-icon-outer {
    background: #cce4f5; /* middle light blue */
}
.trust-card.accent-blue .trust-icon-outer::before {
    background: #e6f2fb; /* lightest outer blue */
}
.trust-card.accent-blue .trust-icon-inner {
    background: #0369A1; /* solid dark blue */
}

/* Green/Camo accent (replaces red) */
.trust-card.accent-red .trust-icon-outer {
    background: #d6e8d3;
}
.trust-card.accent-red .trust-icon-outer::before {
    background: #eaf3e8;
}
.trust-card.accent-red .trust-icon-inner {
    background: #4A6741;
}

.trust-card-title {
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin: 30px 0 15px;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.trust-card-text {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

.trust-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 44px;
}

@media (max-width: 950px) {
    .trust-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 650px) {
    .trust-card {
        width: 100%;
    }
    .trust-card:nth-child(even),
    .trust-card:nth-child(even):hover {
        transform: none; /* Disable staggering on mobile */
    }
    .trust-card:hover {
        transform: translateY(-5px);
    }
    .trust-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   PROJECT GALLERY — BEFORE / AFTER SLIDERS
   ============================================ */
.gallery-section {
    background: #f0f2f5;
    padding: 80px 20px 70px;
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 46px;
}

.gallery-heading {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.gallery-divider-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.gallery-divider-accent {
    width: 70px;
    height: 4px;
    background: #4A6741;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.ba-before-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-after-clip {
    position: absolute;
    inset: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-after-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.ba-badge {
    position: absolute;
    top: 12px;
    left: 10px;
    background: #0369A1;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 5px;
    z-index: 5;
}

.ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 20;
    cursor: ew-resize;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0369A1;
    border: 3px solid #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #fff;
    font-size: 0.72rem;
}

.gallery-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: #e8f1e7;
    padding: 80px 20px 70px;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 18px 0;
    letter-spacing: -0.3px;
}

.faq-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.faq-divider-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.12);
}

.faq-divider-accent {
    width: 70px;
    height: 4px;
    background: #4A6741;
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0.4px;
    text-align: left;
    gap: 14px;
    border-radius: 10px;
    transition: background 0.25s, color 0.25s, border-radius 0.15s;
    font-family: 'Montserrat', sans-serif;
}

.faq-item.is-open .faq-q {
    background: #0369A1;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.faq-q-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4A6741;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    transition: background 0.25s, transform 0.25s;
}

.faq-item.is-open .faq-icon {
    background: #6B7280;
    color: #fff;
    transform: rotate(90deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-a {
    max-height: 500px;
}

.faq-a-inner {
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 14px 22px 18px;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.75;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .faq-btns {
        flex-direction: column;
        align-items: center;
    }
}



/* ============================================
   FOOTER
   ============================================ */
.footer-top-wave {
    position: relative;
    z-index: 2;
    line-height: 0;
    margin-bottom: -2px;
}

.footer-top-wave img {
    width: 100%;
    display: block;
}

.footer-cta {
    position: relative;
    background-color: #0a1628;
    background-size: cover;
    background-position: center;
    padding: 80px 20px 90px;
    text-align: center;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(3, 105, 161, 0.85) 0%,
            rgba(10, 22, 40, 0.30) 50%,
            rgba(10, 22, 40, 0.95) 100%);
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.footer-cta-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 32px;
}

.footer-cta-heading .hl {
    color: #a8d5f5;
}

.footer-cta-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-body {
    background: #0a1628;
    padding: 60px 20px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 200px 1fr 150px 270px;
    gap: 50px;
    align-items: start;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0369A1;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-social:hover {
    background: #4A6741;
}

.footer-col-title {
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    margin: 0 0 18px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.footer-contact-list li i {
    color: #4A9FD4;
    flex-shrink: 0;
    margin-top: 2px;
    width: 14px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #a8d5f5;
}

.footer-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    height: 170px;
}

.footer-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.footer-copy {
    background: #060f1c;
    padding: 14px 20px;
    text-align: center;
}

.footer-copy p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.footer-copy a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
}

.footer-copy a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .footer-cta-heading {
        font-size: 1.8rem;
    }
}

/* ============================================
   GLOBAL RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .badge-left {
        left: 2vw;
    }

    .badge-right {
        right: 2vw;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 15px;
    }

    .hero-btn {
        justify-content: space-between;
        padding-left: 20px;
    }

    .hero-badge {
        bottom: 0%;
    }

    .badge-left,
    .badge-right {
        width: clamp(120px, 35vw, 150px);
    }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(3, 105, 161, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999999;
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: exclusion;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #4A6741;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999999;
    transition: transform 0.05s linear;
}

.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(3, 105, 161, 0.2);
    border-color: #4A6741;
}

body {
    cursor: none;
}

a,
button,
input,
textarea,
select,
.faq-q,
.steps-tab {
    cursor: none;
}

/* Fallback for mobile */
@media (max-width: 992px) {

    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }

    body,
    a,
    button,
    input,
    textarea,
    select {
        cursor: auto !important;
    }
}


/* ============================================
   SCROLL REVEAL 
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HOVER EFFECTS AND GLOWS
   ============================================ */
.custom-hero:hover .hero-title,
.footer-cta:hover .footer-cta-heading {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
}

.about-section:hover .about-heading,
.trust-section:hover .trust-heading,
.area-section:hover .area-heading,
.gallery-section:hover .gallery-heading {
    text-shadow: 0 0 15px rgba(3, 105, 161, 0.4);
}

.services-section:hover .services-heading {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.service-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.4);
    transform: translateY(-8px);
}

.trust-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
    box-shadow: 0 15px 40px rgba(74, 103, 65, 0.3);
    transform: translateY(-8px);
}

.trust-card.accent-blue:hover {
    box-shadow: 0 15px 40px rgba(3, 105, 161, 0.3);
}

/* ============================================
   CTA MODAL POPUP
   ============================================ */
.pw-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.pw-modal.modal-active {
    opacity: 1;
    visibility: visible;
}

.pw-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 25, 60, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pw-modal-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    z-index: 10;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.pw-modal.modal-active .pw-modal-content {
    transform: translateY(0) scale(1);
}

.pw-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: #888;
    transition: color 0.3s ease;
    padding: 0;
}

.pw-modal-close:hover {
    color: #4A6741;
}

.pw-modal-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #0369A1;
    margin: 0 0 10px;
    text-align: center;
    letter-spacing: -0.5px;
}

.pw-modal-text {
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    margin: 0 0 25px;
    line-height: 1.5;
}

.pw-modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pw-modal-form input,
.pw-modal-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: #fcfcfc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pw-modal-form input:focus,
.pw-modal-form textarea:focus {
    outline: none;
    border-color: #0369A1;
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15);
}

.pw-modal-form button {
    margin-top: 10px;
    justify-content: space-between;
    width: 100%;
}

/* Contact Page Grid */
.contact-page-grid {
    grid-template-columns: 1fr 1fr;
}