/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #10213d;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =====================================================
   ROOT
===================================================== */

:root {

    --navy: #071a32;
    --dark-navy: #041326;

    --red: #ed1c24;
    --red-dark: #c90f16;

    --text: #14233b;
    --muted: #687386;

    --light-bg: #f6f8fa;
    --border: #e5e9ef;

    --white: #ffffff;
}


/* =====================================================
   GLOBAL
===================================================== */

.container {
    width: min(1200px, 92%);
    margin: auto;
}

.eyebrow {
    display: inline-block;

    color: var(--red);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.red-line {
    width: 48px;
    height: 3px;

    background: var(--red);

    margin: 18px 0 25px;
}

.center-line {
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    height: 76px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
    z-index: 100;
}

.header-inner {
    width: min(1200px, 92%);
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 350px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu > a {
    font-size: 13px;
    font-weight: 600;
    color: #162238;
}

.main-menu i {
    font-size: 9px;
    margin-left: 4px;
}

.header-btn {
    background: var(--red);
    color: white !important;
    padding: 13px 20px;
    border-radius: 5px;
    transition: .3s;
}

.header-btn:hover {
    background: var(--red-dark);
}

.mobile-menu {
    display: none;
    border: 0;
    background: none;
    font-size: 25px;
}


@media (max-width: 768px) {

    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #10213d;
        font-weight: 600;
        padding: 8px 0;
    }

    .mobile-assessment {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
}

/* =====================================================
   HERO
===================================================== */

.contact-hero {
    min-height: 520px;

    /* padding-top: 78px; */

    background: var(--navy);

    overflow: hidden;
}

.hero-content {
    min-height: 442px;
   
    display: grid;

    grid-template-columns: 48% 52%;
}

.hero-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-left:
        max(4vw, calc((100vw - 1200px) / 2));

    padding-right: 50px;

    color: var(--white);
}

.hero-copy h1 {
    color: var(--white);

    font-size:
        clamp(46px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;
}

.hero-copy h2 {
    max-width: 530px;

    color: var(--white);

    font-size: 20px;

    line-height: 1.5;

    margin-bottom: 15px;
}

.hero-copy p {
    max-width: 520px;

    color: #bdc9d7;

    font-size: 14px;

    line-height: 1.8;
}

.hero-image {
    position: relative;

    overflow: hidden;
}

.hero-image::before {
    content: "";

    position: absolute;

    z-index: 2;

    left: -50px;
    top: -30px;

    width: 105px;
    height: 120%;

    background: var(--navy);

    transform: rotate(10deg);
}

.hero-image::after {
    content: "";

    position: absolute;

    z-index: 3;

    left: -18px;
    bottom: 0;

    width: 30px;
    height: 45%;

    background: var(--red);

    transform: skew(-15deg);
}

.hero-image img {
    width: 100%;
    height: 100%;

    min-height: 442px;

    object-fit: cover;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;

    margin-bottom: 45px;
}

.section-heading h2 {
    color: var(--navy);

    font-size:
        clamp(30px, 3.5vw, 42px);

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 800;
}


/* =====================================================
   CONTACT OPTIONS
===================================================== */

.contact-options {
    padding: 75px 0 80px;

    background: var(--light-bg);
}

.contact-cards {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    min-height: 255px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 9px;

    padding: 30px 22px;

    transition: .3s;

    box-shadow:
        0 5px 20px rgba(7,26,50,.035);
}

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(7,26,50,.09);
}

.contact-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: var(--red);

    color: var(--white);

    font-size: 25px;
}

.contact-card h3 {
    color: var(--navy);

    font-size: 17px;

    margin-bottom: 10px;
}

.contact-card p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 16px;

    max-width: 220px;
}

.contact-card a,
.contact-card strong {
    color: var(--red);

    font-size: 13px;

    line-height: 1.5;

    margin-top: auto;
}


/* =====================================================
   CONTACT MAIN
===================================================== */

.contact-main {
    padding: 80px 0;

    background: var(--white);
}

.contact-main-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 45px;

    align-items: stretch;
}

.form-wrapper {
    padding: 10px 0;
}

.form-wrapper h2 {
    color: var(--navy);

    font-size: 38px;

    line-height: 1.2;

    letter-spacing: -1px;

    font-weight: 800;
}

.form-intro {
    max-width: 520px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 25px;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;

    color: var(--text);

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 6px;
}

.form-group label span {
    color: var(--red);
}

.form-group input,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: 5px;

    padding: 12px 14px;

    color: var(--text);

    font-size: 13px;

    outline: none;

    transition: .25s;
}

.form-group input {
    height: 46px;
}

.form-group textarea {
    resize: vertical;

    min-height: 125px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a9b6;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);

    box-shadow:
        0 0 0 3px rgba(237,28,36,.08);
}

.submit-btn {
    border: none;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 165px;

    height: 47px;

    padding: 0 22px;

    background: var(--red);

    color: var(--white);

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}

.submit-btn:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}

.form-note {
    margin-top: 12px;

    color: var(--muted);

    font-size: 10px;
}


/* =====================================================
   MAP
===================================================== */

.map-wrapper {
    min-height: 500px;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid var(--border);

    background: var(--light-bg);
}

.map-image {
    position: relative;

    width: 100%;

    height: 100%;

    min-height: 500px;
}

.map-image iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter: saturate(.8);
}

.map-location {
    position: absolute;

    left: 50%;

    bottom: 25px;

    transform: translateX(-50%);

    width: calc(100% - 50px);

    max-width: 360px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 20px;

    border-radius: 9px;

    background: var(--navy);

    color: var(--white);

    box-shadow:
        0 12px 30px rgba(4,19,38,.25);
}

.map-location-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid var(--red);

    border-radius: 50%;

    font-size: 20px;
}

.map-location h3 {
    font-size: 14px;

    margin-bottom: 3px;
}

.map-location p {
    color: var(--white);

    font-size: 12px;

    line-height: 1.5;
}

.map-location span {
    display: block;

    color: #aebbd0;

    font-size: 10px;

    margin-top: 4px;
}


/* =====================================================
   TRUST
===================================================== */

.trust-section {
    padding: 30px 0;

    background:
        linear-gradient(
            180deg,
            #f5f8fc,
            #eef3f8
        );
}

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 25px;

    border-right:
        1px solid #d8e0ea;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    border: 2px solid var(--red);

    color: var(--red);

    font-size: 19px;

    background: var(--white);
}

.trust-item h3 {
    color: var(--navy);

    font-size: 12px;

    margin-bottom: 3px;
}

.trust-item p {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================================
   URGENT CTA
===================================================== */

.urgent-section {
    padding: 18px 0;

    background: var(--white);
}

.urgent-inner {
    min-height: 120px;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 25px 40px;

    background:
        linear-gradient(
            110deg,
            var(--navy),
            #0a2445
        );

    border-radius: 10px;

    color: var(--white);
}

.urgent-icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--white);

    color: var(--navy);

    font-size: 25px;
}

.urgent-content {
    flex: 1;
}

.urgent-content h2 {
    color: var(--white);

    font-size: 22px;

    margin-bottom: 3px;
}

.urgent-content p {
    color: #b9c6d6;

    font-size: 12px;
}

.urgent-btn {
    min-width: 210px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background: var(--red);

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    transition: .3s;
}

.urgent-btn:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #041427;
    color: white;

    padding-top: 50px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 30px;

    padding-bottom: 35px;
}

.footer-about img {
    width: 300px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #aeb8c5;
    font-size: 10px;
    max-width: 220px;
}

.footer-column h3 {
    font-size: 12px;
    margin-bottom: 13px;
}

.footer-column a,
.footer-column p {
    display: block;

    color: #aeb8c5;

    font-size: 10px;

    margin-bottom: 8px;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    color: var(--red);
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.social-links a {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid #536174;
    border-radius: 50%;

    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);

    padding: 15px 4%;

    display: flex;
    justify-content: space-between;

    color: #8793a3;

    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.floating-buttons {
    position: fixed;

    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    z-index: 99;
}

.phone-float,
.chat-float {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: white;

    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.phone-float {
    background: var(--red);
}

.chat-float {
    background: #13a36d;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .header-phone {
        margin-left: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 400px;

        padding:
            90px 6%;
    }

    .hero-image {
        min-height: 400px;
    }

    .hero-image img {
        min-height: 400px;
    }

    .hero-image::before {
        display: none;
    }

    .hero-image::after {
        display: none;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 450px;
    }

    .map-image {
        min-height: 450px;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .trust-item {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .container {
        width: 90%;
    }
  .eyebrow{margin-top:80px;}
    .site-header {
        position: absolute;
    }

    .header-inner {
        min-height: 68px;
    }

    .logo img {
        width: 125px;
    }

    .header-phone {
        padding: 9px 12px;

        font-size: 10px;
    }

    .hero-copy {
        min-height: 360px;

        padding:
            75px 5%
            55px;
    }

    .hero-copy h1 {
        font-size: 45px;
    }

    .hero-copy h2 {
        font-size: 17px;
    }

    .hero-copy p {
        font-size: 13px;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-image img {
        min-height: 300px;
    }

    .contact-options {
        padding: 60px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 230px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .form-wrapper h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .map-image {
        min-height: 400px;
    }

    .map-location {
        width: calc(100% - 25px);

        bottom: 13px;

        padding: 14px;
    }

    .trust-grid {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .trust-item {
        padding: 13px 5px;
    }

    .urgent-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;
    }

    .urgent-btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}