/* =========================================================
   SUPREME REMODELING INC.
   CONTACT PAGE
========================================================= */


/* =========================================================
   COLOR VARIABLES
========================================================= */

:root {
    --sr-black: #111111;
    --sr-dark: #171717;
    --sr-charcoal: #1d1d1d;

    --sr-gold: #d5ad4a;
    --sr-gold-soft: #f5efe0;

    --sr-green: #079b55;
    --sr-green-hover: #078447;

    --sr-white: #ffffff;
    --sr-light: #f5f5f3;

    --sr-gray: #858585;
    --sr-gray-light: #b7b7b7;

    --sr-border: #dedede;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    background:
        url("../assets/images/contact_hero.png")
        center center / cover no-repeat;

    overflow: hidden;
}


.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.68) 25%,
        rgba(0, 0, 0, 0.32) 48%,
        rgba(0, 0, 0, 0.08) 72%,
        rgba(0, 0, 0, 0.02) 100%
    );
}


.contact-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 80px;

    color: var(--sr-white);
}


.contact-eyebrow,
.contact-section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--sr-gold);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.contact-hero h1 {
    max-width: 780px;

    margin: 0 0 24px;

    color: var(--sr-white);

    font-size: clamp(38px, 4.5vw, 54px);

    line-height: 1.03;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}


.contact-hero h1 span {
    color: var(--sr-gold);
}


.contact-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   MAIN CONTACT AREA
========================================================= */

.contact-section {
    padding: 105px 0;

    background: var(--sr-white);
}


.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 85px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info h2 {
    max-width: 540px;

    margin: 0 0 22px;

    color: var(--sr-black);

    font-size: clamp(38px, 5vw, 54px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.contact-info h2 span {
    color: var(--sr-gold);
}


.contact-description {
    max-width: 540px;

    margin: 0 0 40px;

    color: #676767;

    font-size: 16px;

    line-height: 1.8;
}


.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 19px;

    padding: 24px 0;

    border-bottom: 1px solid #e7e7e7;
}


.contact-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--sr-gold-soft);

    color: var(--sr-gold);

    font-size: 18px;
}


.contact-item-content span {
    display: block;

    margin-bottom: 6px;

    color: #818181;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.contact-item-content p,
.contact-item-content a {
    margin: 0;

    color: var(--sr-black);

    font-size: 16px;
    font-weight: 600;

    line-height: 1.55;

    text-decoration: none;
}


.contact-item-content a {
    transition: color 0.25s ease;
}


.contact-item-content a:hover {
    color: var(--sr-green);
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
    position: relative;

    padding: 48px;

    background: var(--sr-light);

    border-top: 4px solid var(--sr-gold);

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.08);
}


.form-heading {
    margin-bottom: 32px;
}


.form-heading > span {
    display: block;

    margin-bottom: 10px;

    color: var(--sr-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.form-heading h3 {
    margin: 0 0 11px;

    color: var(--sr-black);

    font-size: 32px;

    line-height: 1.2;
}


.form-heading p {
    margin: 0;

    color: #6c6c6c;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
    width: 100%;
}


.form-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.form-group {
    margin-bottom: 21px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #2a2a2a;

    font-size: 13px;
    font-weight: 700;
}


.form-group label span {
    color: var(--sr-gold);
}


.form-group input,
.form-group select,
.form-group textarea {
    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 15px 16px;

    border: 1px solid #d4d4d4;

    outline: none;

    background: var(--sr-white);

    color: var(--sr-black);

    font-family: inherit;

    font-size: 15px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group select {
    cursor: pointer;
}


.form-group textarea {
    min-height: 145px;

    resize: vertical;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9b9b9b;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sr-gold);

    box-shadow:
        0 0 0 3px rgba(213, 173, 74, 0.12);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: 100%;

    min-height: 58px;

    border: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background: var(--sr-green);

    color: var(--sr-white);

    font-family: inherit;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.8px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.contact-submit:hover {
    background: var(--sr-green-hover);

    transform: translateY(-2px);
}


.contact-submit i {
    transition: transform 0.25s ease;
}


.contact-submit:hover i {
    transform: translateX(4px);
}


.form-privacy {
    margin: 17px 0 0;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    color: #808080;

    font-size: 12px;
}


.form-privacy i {
    color: var(--sr-gold);
}


/* =========================================================
   HONEYPOT / SPAM FIELD
========================================================= */

.website-field {
    position: absolute !important;

    left: -99999px !important;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* =========================================================
   SUCCESS / ERROR MESSAGES
========================================================= */

.form-alert {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px 18px;

    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.5;
}


.form-alert strong {
    display: block;

    margin-bottom: 2px;
}


.form-alert p {
    margin: 0;
}


.form-alert > i {
    margin-top: 3px;

    font-size: 18px;
}


.form-success {
    background: #edf8f2;

    border: 1px solid #b9dfca;

    color: #167443;
}


.form-error {
    background: #f5f5f5;

    border: 1px solid #d7d7d7;

    color: #333333;
}


/* =========================================================
   SERVICE AREA / GOOGLE MAP
========================================================= */

.contact-map-section {
    padding: 100px 0;

    background: #f5f5f3;
}


/* SECTION HEADING */

.contact-map-heading {
    max-width: 760px;

    margin-bottom: 45px;
}


.contact-map-heading .contact-section-label {
    margin-bottom: 16px;

    color: var(--sr-gold);
}


.contact-map-heading h2 {
    margin: 0 0 18px;

    color: var(--sr-black);

    font-size: clamp(38px, 5vw, 54px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}


.contact-map-heading h2 span {
    color: var(--sr-gold);
}


.contact-map-heading p {
    max-width: 650px;

    margin: 0;

    color: #676767;

    font-size: 16px;

    line-height: 1.75;
}


/* MAP */

.contact-map-wrapper {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border-top: 4px solid var(--sr-gold);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.08);
}


.contact-map-wrapper iframe {
    display: block;

    width: 100%;

    height: 500px;

    border: 0;
}


/* =========================================================
   MAP - TABLET
========================================================= */

@media (max-width: 992px) {

    .contact-map-section {
        padding: 80px 0;
    }


    .contact-map-wrapper iframe {
        height: 450px;
    }

}


/* =========================================================
   MAP - MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-map-section {
        padding: 70px 0;
    }


    .contact-map-heading {
        margin-bottom: 35px;
    }


    .contact-map-heading h2 {
        font-size: 38px;
    }


    .contact-map-wrapper iframe {
        height: 380px;
    }

}


/* =========================================================
   MAP - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-map-heading h2 {
        font-size: 34px;
    }


    .contact-map-wrapper iframe {
        height: 330px;
    }

}

/* =========================================================
   BOTTOM CTA
========================================================= */

/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-bottom-cta {
    position: relative;

    padding: 95px 0;

    background:
  linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.28) 65%,
    rgba(0, 0, 0, 0.30) 100%
  ),
        url("../assets/images/contact_cta_bg.png");

    background-size: cover;
background-position: center 16%;
background-repeat: no-repeat;

    color: #ffffff;
    overflow: hidden;
}


/* Subtle gold decorative line */

.contact-bottom-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--sr-gold);
}


.contact-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


.contact-cta-content {
    max-width: 720px;
}


.contact-cta-content > span {
    display: block;

    margin-bottom: 12px;

    color: var(--sr-gold);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


.contact-cta-content h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1px;
}


.contact-cta-content p {
    margin: 0;

    color: #b8b8b8;

    font-size: 16px;

    line-height: 1.7;
}


/* GREEN CTA BUTTON */

.contact-cta-button {
    flex-shrink: 0;

    min-width: 250px;

    padding: 19px 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    background: var(--sr-green);

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;
     margin-top: 145px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.contact-cta-button:hover {
    background: var(--sr-green-hover);

    color: #ffffff;

    transform: translateY(-2px);
}


.contact-cta-button i {
    transition: transform 0.25s ease;
}


.contact-cta-button:hover i {
    transform: translateX(4px);
}


/* TABLET / MOBILE */

@media (max-width: 992px) {

    .contact-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 768px) {

    .contact-bottom-cta {
        padding: 60px 0;
    }


    .contact-cta-button {
        width: 100%;

        min-width: 0;

        box-sizing: border-box;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .contact-hero {
        min-height: 430px;
    }


    .contact-hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }


    .contact-hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }


    .contact-hero p {
        font-size: 16px;
    }


    .contact-section {
        padding: 75px 0;
    }


    .contact-grid {
        gap: 45px;
    }


    .contact-info h2 {
        font-size: 39px;
    }


    .contact-form-card {
        padding: 32px 23px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-benefits {
        padding: 75px 0;
    }


    .contact-bottom-cta {
        padding: 60px 0;
    }


    .contact-cta-button {
        width: 100%;

        min-width: 0;

        box-sizing: border-box;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .contact-hero {
        min-height: 400px;
    }


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


    .contact-item {
        gap: 14px;
    }


    .contact-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }


    .form-heading h3 {
        font-size: 27px;
    }

}