.contact-page-header {
    position: relative;
    background-color: #020830;
    color: #fff;
    padding: 170px 0 80px 0;
    overflow: hidden;
    height: 1000px; 
}

.contact-page-header::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 420px;
    max-width: 40%;
    height: 85%;
    background-image: url(/wp-content/uploads/2026/03/header-module-watermark.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

.contact-page-header .container {
    position: relative;
    z-index: 2;
        display: flex;
    justify-content: center;
}

.contact-page-header__content {
   max-width: 1200px;
    width: 70%;
}

.contact-page-header__content #breadcrumbs{
    margin-bottom: 30px;
}

.contact-page-header__content #breadcrumbs a{
    color: #ffffff;
}

.contact-page-header__breadcrumb {
    margin-bottom: 20px;
}

.contact-page-header__breadcrumb #breadcrumbs,
.contact-page-header__breadcrumb #breadcrumbs a,
.contact-page-header__breadcrumb p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-decoration: none;
}

.contact-page-header__breadcrumb a:hover {
    color: #fff;
}

h1.contact-page-header__title {
    color: #fff !important;
    margin: 0 0 80px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
}

.contact-page-header__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 24px 40px;
        width: 60%;
    margin: 0 auto;
}
.contact-page-header__details .col{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-page-header__item .label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.contact-page-header__details .col:last-child > div{
    justify-content: end;
}




.contact-page-header__item,
.contact-page-header__item a,
.contact-page-header__item .address-text {
    color: #fff;
    font-size: 20px;
    line-height: 1.6;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-weight: 400;
}
.contact-page-header__item .address-text {
    flex-direction: column;
    gap: 0;
}
.contact-page-header__item .address-text p{
    margin: 0;
    color: #ffffff;
}
.contact-page-header__item a:hover {
    text-decoration: underline;
}

.get-directions-link {
    display: inline-block;
    font-weight: 700;
    padding-bottom: 2px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
}
.contact-page-header__item--directions{
    margin-left: 45px;
}

.contact-page-header__item--directions a{
    color: #7cb9ab;
}

.get-directions-link:hover {
    border-bottom-color: #fff;
    text-decoration: none;
}

.contact_icon{
    width: 30px;
}

@media (max-width: 1366px) {
    .contact-page-header__details{
        width: 70%;
    }
}

@media (max-width: 1140px) {
    .contact-page-header__details{
        width: 80%; 
    }
}

@media (max-width: 950px) {
    .contact-page-header{
        height: 900px;
    }
}

@media (max-width: 767px) {
    .contact-page-header {
        padding: 60px 0;
    }

    .contact-page-header__details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-page-header::after {
        width: 240px;
        max-width: 55%;
        height: 55%;
        opacity: 0.1;
    }
}