
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(7,9,11,.96) 0%, rgba(7,9,11,.78) 50%, rgba(7,9,11,.35) 100%),
        url("banner.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.contact-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(215,25,32,.35);
    transform: rotate(45deg);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 70px 0;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 92px);
    font-weight: 700;
    line-height: .9;
    margin: 15px 0 25px;
}

.contact-hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.65);
}

.contact-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.breadcrumb-wrap a {
    color: #fff;
}

.breadcrumb-wrap a:hover {
    color: var(--primary);
}

.breadcrumb-wrap i {
    color: var(--primary);
    font-size: 10px;
}

.breadcrumb-wrap span {
    color: rgba(255,255,255,.55);
}

.contact-page-section {
    background: #fff;
}

.contact-lead {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.9;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 35px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6f7;
    color: var(--primary);
    font-size: 19px;
    border-left: 3px solid var(--primary);
}

.contact-detail small {
    display: block;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-detail strong,
.contact-detail a {
    display: block;
    color: #25282b;
    font-size: 13px;
    line-height: 1.7;
}

.contact-detail a:hover {
    color: var(--primary);
}

.contact-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
    padding: 20px;
    background: #f5f6f7;
    border-left: 3px solid var(--primary);
}

.contact-trust > i {
    color: var(--primary);
    font-size: 28px;
}

.contact-trust strong,
.contact-trust span {
    display: block;
}

.contact-trust strong {
    font-size: 13px;
}

.contact-trust span {
    color: #777;
    font-size: 11px;
    margin-top: 3px;
}

.contact-form-card {
    position: relative;
    background: #f5f6f7;
    padding: 45px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 20px 55px rgba(0,0,0,.07);
}

.contact-form-card::before {
    content: "ENQUIRE";
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(215,25,32,.08);
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.contact-form-card .form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.contact-form-card .form-header span {
    display: block;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-form-card .form-header h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1;
    margin: 6px 0 8px;
}

.contact-form-card .form-header p {
    margin: 0;
    font-size: 12px;
    color: #777;
}

.contact-form-card label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #25282b;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 52px;
    border: 1px solid #dfe1e3;
    border-radius: 0;
    background: #fff;
    padding: 13px 15px;
    font-size: 12px;
}

.contact-form-card textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .15rem rgba(215,25,32,.1);
}

.contact-form-card .btn {
    min-width: 175px;
    margin-top: 5px;
}

.contact-strip {
    background: var(--dark);
    color: #fff;
}

.contact-strip .container {
    max-width: 1240px;
}

.contact-strip .col-md-4 + .col-md-4 {
    border-left: 1px solid rgba(255,255,255,.1);
}

.contact-strip a {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 30px;
    color: #fff;
}

.contact-strip a:hover {
    background: var(--primary);
}

.contact-strip i {
    color: var(--primary);
    font-size: 25px;
}

.contact-strip a:hover i {
    color: #fff;
}

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

.contact-strip small {
    color: rgba(255,255,255,.5);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.8px;
    margin-bottom: 5px;
}

.contact-strip strong {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 991px) {
    .contact-hero {
        min-height: 420px;
    }

    .contact-form-card {
        padding: 35px;
    }

    .contact-strip .col-md-4 + .col-md-4 {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.1);
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 390px;
    }

    .contact-hero-content {
        padding: 55px 0;
    }

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

    .contact-form-card {
        padding: 28px 22px;
    }

    .contact-form-card .form-header h3 {
        font-size: 34px;
    }

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

    .contact-strip a {
        min-height: 95px;
        padding: 20px;
    }
}
