

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    background: #f4f2ed;
    color: #151515;
}





/* =========================
   CONTACT HERO
========================= */

.contact-hero {
    min-height: 100vh;
    padding: 150px 32px 110px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: 0 auto;

    transform: translateY(-35px);
}

.contact-hero h1 {
    margin: 0;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(72px, 8vw, 124px);
    line-height: 0.92;
    font-weight: 400;

    text-transform: uppercase;
    letter-spacing: 0.01em;

    color: #ffffff !important;

    text-shadow:
        0 8px 26px rgba(0, 0, 0, 0.42),
        0 2px 8px rgba(0, 0, 0, 0.34);
}

.contact-hero p {
    max-width: 720px;
    margin: 28px auto 0;

    font-size: 18px;
    line-height: 1.72;

    color: rgba(255, 255, 255, 0.90) !important;
}





/* =========================
   MAIN CONTACT
========================= */

.contact-main-section {
    background: #f4f2ed;
    padding: 110px 32px 80px;
}

.contact-main-inner {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 72px;
    align-items: start;
}

.contact-intro h2 {
    max-width: 680px;
    margin: 0 0 28px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(54px, 6vw, 92px);
    line-height: 0.95;
    font-weight: 400;

    text-transform: uppercase;
    letter-spacing: 0.075em;

    color: #111111;
}

.contact-intro p {
    max-width: 680px;
    margin: 0 0 22px;

    font-size: 18px;
    line-height: 1.78;

    color: #343434;
}

.contact-actions {
    margin-top: 38px;

    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-primary-button,
.contact-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 26px;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 15.5px;
    line-height: 1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.contact-primary-button {
    background: rgb(67, 106, 143);
    color: #ffffff;
    border: 1px solid rgb(67, 106, 143);
}

.contact-primary-button:hover {
    background: #111111;
    border-color: #111111;
    transform: translateY(-2px);
}

.contact-secondary-button {
    background: transparent;
    color: #111111;
    border: 1px solid rgba(0,0,0,0.22);
}

.contact-secondary-button:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    transform: translateY(-2px);
}




/* =========================
   CONTACT FORM PANEL
========================= */

.contact-form-panel {
    background: #ffffff;
    color: #151515;

    padding: 42px;

    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.07);

    box-shadow:
        0 22px 58px rgba(0,0,0,0.09),
        inset 0 1px 0 rgba(255,255,255,0.75);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading span {
    display: block;
    margin-bottom: 12px;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.14em;

    color: rgb(67, 106, 143);
}

.contact-form-heading h3 {
    margin: 0 0 14px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 0.95;
    font-weight: 400;

    text-transform: uppercase;
    letter-spacing: 0.07em;

    color: #111111;
}

.contact-form-heading p {
    margin: 0;

    font-size: 16.5px;
    line-height: 1.65;

    color: rgba(0,0,0,0.62);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: rgba(0,0,0,0.58);
}

.form-field label strong {
    color: rgb(67, 106, 143);
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 14px 15px;

    font-family: inherit;
    font-size: 15.5px;
    line-height: 1.45;

    color: #151515;
    background: #f8f6f0;

    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;

    outline: none;

    transition:
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 126px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(0,0,0,0.36);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: #ffffff;
    border-color: rgba(67, 106, 143, 0.72);
    box-shadow: 0 0 0 3px rgba(67, 106, 143, 0.12);
}

.contact-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;

    margin-top: 24px;

    font-size: 14.5px;
    line-height: 1.55;

    color: rgba(0,0,0,0.68);
    cursor: pointer;
}

.contact-consent input {
    width: 16px;
    height: 16px;
    margin-top: 3px;

    accent-color: rgb(67, 106, 143);
}

.contact-privacy-note {
    margin: 14px 0 0;

    font-size: 13.5px;
    line-height: 1.55;

    color: rgba(0,0,0,0.48);
}

.contact-submit-button {
    width: 100%;
    margin-top: 26px;
    padding: 16px 28px;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 15.5px;
    line-height: 1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: #ffffff;
    background: rgb(67, 106, 143);

    border: 1px solid rgb(67, 106, 143);
    border-radius: 999px;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-submit-button:hover {
    background: #111111;
    border-color: #111111;

    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}



/* =========================
   BUSINESS INFO
========================= */

.contact-business-section {
    background: #f4f2ed;
    padding: 40px 32px 130px;
}

.contact-business-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.business-card {
    background: #ffffff;

    padding: 54px 56px;

    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 18px 44px rgba(0,0,0,0.05);
}

.business-card h2 {
    margin: 0 0 34px;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 400;

    text-transform: uppercase;
    letter-spacing: 0.075em;

    color: #111111;
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 42px;
}

.business-info-grid span {
    display: block;
    margin-bottom: 8px;

    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 13.5px;
    line-height: 1;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: rgba(0,0,0,0.46);
}

.business-info-grid p {
    margin: 0;

    font-size: 18px;
    line-height: 1.5;

    color: #252525;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .contact-main-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-form-panel {
        max-width: 720px;
    }

    .business-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        min-height: 480px;
        padding: 140px 24px 90px;
    }

    .contact-main-section,
    .contact-business-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-form-panel,
    .business-card {
        padding: 34px 28px;
    }

    .contact-intro p,
    .contact-info-block a,
    .contact-info-block p,
    .business-info-grid p {
        font-size: 16.5px;
    }

    .contact-form-grid {
    grid-template-columns: 1fr;
    }

    .contact-submit-button {
    border-radius: 8px;
    }
}



/* =========================
   CONTACT FORM MESSAGES
========================= */

.contact-form-message {
    margin-bottom: 22px;
    padding: 15px 18px;

    font-size: 15px;
    line-height: 1.5;

    border-radius: 8px;
}

.contact-form-message.success {
    color: #163d2a;
    background: #e7f4ec;
    border: 1px solid rgba(22, 61, 42, 0.18);
}

.contact-form-message.error {
    color: #5b1c1c;
    background: #f8e8e8;
    border: 1px solid rgba(91, 28, 28, 0.18);
}


