.contact-page,
.contact-page *{
    box-sizing:border-box;
}

.contact-page{
    width:100%;
    min-height:calc(100vh - 90px);
    margin:0;
    padding:130px 5% 80px;
    color:#18372a;
    font-family:Arial,Helvetica,sans-serif;
    background:#f4f7f5;
}

.contact-hero{
    width:100%;
    max-width:1180px;
    margin:0 auto 28px;
    padding:52px;
    position:relative;
    overflow:hidden;
    color:#fff;
    background:linear-gradient(135deg,#123f2c,#198754);
    border-radius:20px;
    box-shadow:0 12px 30px rgba(18,63,44,.16);
}

.contact-hero::after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-130px;
    width:320px;
    height:320px;
    border:48px solid rgba(255,255,255,.08);
    border-radius:50%;
}

.contact-hero > div{
    max-width:700px;
    position:relative;
    z-index:1;
}

.contact-hero h1{
    margin:8px 0 12px;
    color:#fff;
    font-family:Georgia,serif;
    font-size:46px;
    line-height:1.2;
}

.contact-hero p{
    margin:0;
    color:#e1f2e7;
    font-size:18px;
    line-height:1.7;
}

.contact-eyebrow{
    color:#b9e5c8;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.contact-layout{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(340px,.75fr);
    gap:24px;
    align-items:stretch;
}

.contact-info,
.contact-office{
    padding:34px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(25,70,46,.08);
}

.contact-info{
    background:#fff;
    border:1px solid #e0eae4;
}

.contact-heading{
    margin-bottom:24px;
}

.contact-heading .contact-eyebrow{
    color:#198754;
}

.contact-heading h2,
.contact-office h2{
    margin:6px 0;
    font-size:26px;
    line-height:1.3;
}

.contact-heading p{
    margin:0;
    color:#65736c;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.contact-card{
    min-width:0;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    color:#18372a;
    text-decoration:none;
    background:#f7faf8;
    border:1px solid #dfeae3;
    border-radius:12px;
    transition:.2s ease;
}

.contact-card:hover{
    color:#18372a;
    background:#edf7f0;
    border-color:#83bd99;
    transform:translateY(-2px);
}

.contact-icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:grid;
    place-items:center;
    color:#fff;
    background:#198754;
    border-radius:12px;
}

.contact-card strong,
.contact-card small{
    display:block;
}

.contact-card strong{
    margin-bottom:2px;
    font-size:16px;
}

.contact-card small{
    color:#607068;
    font-size:15px;
    overflow-wrap:anywhere;
}

.contact-office{
    color:#fff;
    background:#174f35;
}

.contact-office h2{
    margin:15px 0 25px;
    color:#fff;
}

.contact-icon-light{
    color:#174f35;
    background:#dff2e6;
}

.office-detail{
    display:grid;
    grid-template-columns:22px 1fr;
    gap:12px;
    margin-bottom:20px;
}

.office-detail > i{
    margin-top:5px;
    color:#a8dab9;
}

.office-detail strong{
    display:block;
    margin-bottom:3px;
}

.office-detail p{
    margin:0;
    color:#daece1;
    line-height:1.6;
}

.contact-map-button{
    display:block;
    margin-top:25px;
    padding:13px 18px;
    color:#174f35;
    font-weight:700;
    text-align:center;
    text-decoration:none;
    background:#fff;
    border-radius:10px;
}

.contact-map-button:hover{
    color:#174f35;
    background:#e8f5ed;
}

.contact-map-button i{
    margin-right:7px;
}

.footer a{
    color:#fff;
}

.footer-contact-link{
    display:inline-block;
    margin-top:8px;
    font-weight:700;
}

@media(max-width:800px){
    .contact-page{
        padding:100px 5% 55px;
    }

    .contact-hero{
        padding:34px 24px;
        border-radius:15px;
    }

    .contact-hero h1{
        font-size:32px;
    }

    .contact-hero p{
        font-size:16px;
    }

    .contact-layout{
        grid-template-columns:1fr;
    }

    .contact-info,
    .contact-office{
        padding:24px;
    }
}

@media(max-width:420px){
    .contact-page{
        padding-right:16px;
        padding-left:16px;
    }

    .contact-hero h1{
        font-size:28px;
    }

    .contact-card{
        align-items:flex-start;
    }
}
