/* ==========================================================
   CONTACT PAGE — new styles only
   Uses existing variables from custom.css:
   --navy, --navy-dark, --red, --ink, --muted, --bg-soft
   ========================================================== */

/* ============ PAGE HERO ============ */
.page-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0 6rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, var(--navy-dark) 0%, rgba(15, 38, 87, .92) 32%, rgba(15, 38, 87, .55) 60%, rgba(15, 38, 87, .15) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 100%;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: #c7d3ee;
    margin-bottom: 1.2rem;
}

.breadcrumb-nav a {
    color: #c7d3ee;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.breadcrumb-nav span {
    color: #fff;
    font-weight: 600;
}

.eyebrow-light {
    color: #ff6b63;
}

.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    line-height: 1.15;
    margin: .3rem 0 1rem;
}

.page-hero-text {
    color: #d7deef;
    font-size: 1rem;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .page-hero {
        min-height: auto;
        padding: 3rem 0 5rem;
    }

    .page-hero-overlay {
        background: linear-gradient(180deg, rgba(15, 38, 87, .9) 0%, rgba(15, 38, 87, .82) 100%);
    }
}

/* ============ CONTACT INFO STRIP ============ */
.contact-info-wrap {
    background: #fff;
}

.contact-info-strip {
    background: #fff;
    box-shadow: 0 10px 40px rgba(15, 38, 87, .1);
    border-radius: 14px;
    margin-top: -3.6rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: 1.6rem 1.3rem;
    border-right: 1px solid #eef1f8;
}

.info-card:last-child {
    border-right: none;
}

.info-ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.info-ic.navy {
    background: var(--navy);
}

.info-ic.red {
    background: var(--red);
}

.info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: .86rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: .3rem;
}

.info-main {
    font-size: .84rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
}

.info-sub {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.4;
    margin-top: .2rem;
}

@media (max-width: 991px) {
    .contact-info-strip {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 12px;
    }

    .info-card:nth-child(2n) {
        border-right: none;
    }

    .info-card {
        border-bottom: 1px solid #eef1f8;
    }
}

@media (max-width: 560px) {
    .contact-info-strip {
        grid-template-columns: 1fr;
        margin-top: -2rem;
    }

    .info-card {
        border-right: none;
    }
}

/* ============ MAIN GRID: URGENT + FORM + MAP ============ */
.contact-main-section {
    background: var(--bg-soft);
    padding: 4.5rem 0 5rem;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: .8fr 1.65fr 1fr;
    gap: 1.6rem;
    align-items: start;
}

/* --- Urgent card --- */
.urgent-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 6px 24px rgba(15, 38, 87, .05);
}

.urgent-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy-dark);
    line-height: 1.3;
    margin: .5rem 0 .8rem;
}

.urgent-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.urgent-actions {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 1.6rem;
}

.urgent-actions .btn-quote,
.urgent-actions .btn-outline-navy {
    justify-content: center;
    width: 100%;
}

.urgent-img {
    border-radius: 10px;
    overflow: hidden;
}

.urgent-img img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* Outline navy button (new variant) */
.btn-outline-navy {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: .8rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* --- Enquiry form card --- */
.enquiry-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 38, 87, .05);
}

.enquiry-head {
    background: linear-gradient(120deg, var(--navy-dark), var(--navy));
    color: #fff;
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
}

.enquiry-head-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.enquiry-head span {
    font-size: .78rem;
    color: #c7d3ee;
}

.enquiry-form {
    padding: 1.8rem 1.6rem 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.2rem;
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: .4rem;
}

.form-group label em {
    color: var(--red);
    font-style: normal;
}

.input-ic {
    position: relative;
}

.input-ic > i {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: .9rem;
}

.input-ic input,
.input-ic select,
.input-ic textarea {
    width: 100%;
    border: 1px solid #e1e6f2;
    background: var(--bg-soft);
    border-radius: 8px;
    padding: .75rem .9rem .75rem 2.3rem;
    font-size: .84rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    appearance: none;
}

.input-ic select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%236b7690' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>");
    background-repeat: no-repeat;
    background-position: right .9rem center;
}

.input-ic textarea {
    resize: none;
    min-height: 48px;
    padding-top: .75rem;
}

.input-ic input::placeholder,
.input-ic textarea::placeholder {
    color: #9aa4bd;
}

.input-ic input:focus,
.input-ic select:focus,
.input-ic textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: #fff;
}

@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Map side --- */
.map-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 6px 24px rgba(15, 38, 87, .05);
}

.map-card-head {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}

.map-embed iframe {
    width: 100%;
    height: 190px;
    border: 0;
    display: block;
}

.map-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.map-loc-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.map-loc-item i {
    color: var(--red);
    font-size: 1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.map-loc-item h5 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: .2rem;
}

.map-loc-item p {
    font-size: .76rem;
    color: var(--muted);
    line-height: 1.5;
}

.map-footer-bar {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 6px 24px rgba(15, 38, 87, .05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.map-footer-bar a {
    color: var(--red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

@media (max-width: 1100px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ TRUST STRIP ============ */
.trust-strip {
    background: #eef2fb;
    padding: 1.6rem 0;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-right: 1.2rem;
    border-right: 1px solid #d7dced;
    flex: 1 1 180px;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--navy);
    flex-shrink: 0;
}

.trust-item span {
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
}

@media (max-width: 767px) {
    .trust-item {
        border-right: none;
        flex: 1 1 45%;
    }
}

.footer-wave{
    background-color: #EEF2FB;
    margin-top: -26px;
}