/* =========================================================
   CONTACT PAGE HERO
   ========================================================= */

.contact-page-hero {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white-color);
}


.contact-hero-background {
    position: absolute;

    inset: 0;

    z-index: 0;
}


.contact-hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.contact-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(26, 26, 26, 0.9),
            rgba(44, 48, 122, 0.55),
            rgba(44, 48, 122, 0.2)
        );
}


.contact-hero-container {
    position: relative;

    z-index: 2;

    width: 100%;

    padding-top: 80px;
}


.contact-hero-content {
    max-width: 720px;
}


.contact-hero-label {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--secondary-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    letter-spacing: 2px;
}


.contact-hero-content h1 {
    margin-bottom: 20px;

    color: var(--white-color);

    font-family: var(--heading-font);

    font-size: clamp(
        3rem,
        6vw,
        5.2rem
    );

    line-height: 1.05;
}


.contact-hero-content h1 span {
    display: block;

    color: var(--secondary-color);
}


.contact-hero-content p {
    max-width: 600px;

    color: rgba(
        255,
        255,
        255,
        0.85
    );

    font-size: 1rem;

    line-height: 1.8;
}

/* =========================================================
   CONTACT INTRODUCTION
   ========================================================= */

.contact-intro {
    background-color: var(--white-color);
}


.contact-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


.contact-intro-content {
    max-width: 600px;
}


.contact-intro-content h2 {
    margin-bottom: 22px;

    color: var(--primary-color);

    font-size: 2.6rem;

    line-height: 1.2;
}


.contact-intro-content h2 span {
    display: block;

    color: var(--secondary-color);
}


.contact-intro-content p {
    margin-bottom: 15px;

    color: var(--grey-color);

    font-size: 0.9rem;

    line-height: 1.8;
}


.contact-intro-content .contact-intro-lead {
    color: var(--black-color);

    font-size: 1.05rem;

    font-weight: 500;
}


.contact-intro-content .btn {
    margin-top: 12px;
}


/* =========================================================
   INTRO VISUAL
   ========================================================= */

.contact-intro-visual {
    position: relative;

    min-height: 500px;

    padding: 0 25px 25px 0;
}


.contact-intro-visual::before {
    content: "";

    position: absolute;

    top: 25px;
    right: 0;

    width: 75%;
    height: 75%;

    background-color: var(--secondary-color);

    z-index: 0;
}


.contact-intro-visual img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 475px;

    object-fit: cover;

    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-medium);
}


/* =========================================================
   INTRO CARD
   ========================================================= */

.contact-intro-card {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 320px;

    padding: 20px;

    color: var(--white-color);

    background-color: var(--primary-color);

    box-shadow: var(--shadow-medium);
}


.contact-intro-card-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 45px;
    height: 45px;

    background-color:
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}


.contact-intro-card strong {
    display: block;

    margin-bottom: 4px;

    font-family: var(--heading-font);

    font-size: 0.72rem;
}


.contact-intro-card span {
    display: block;

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 0.68rem;

    line-height: 1.5;
}

/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-information {
    background-color: var(--light-color);
}


.contact-information-header {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.contact-information-header .section-title {
    margin-bottom: 20px;

    font-size: 2.4rem;
}


.contact-information-header .section-title span {
    display: block;

    color: var(--secondary-color);
}


/* =========================================================
   INFORMATION GRID
   ========================================================= */

.contact-information-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 50px;
}


/* =========================================================
   INFORMATION CARD
   ========================================================= */

.contact-information-card {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    min-height: 330px;

    padding: 32px 25px;

    color: var(--black-color);

    background-color: var(--white-color);

    border: 1px solid var(--light-grey-color);

    border-radius: var(--radius-medium);

    text-decoration: none;

    overflow: hidden;

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}


.contact-information-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background-color: var(--primary-color);

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform var(--transition-normal);
}


.contact-information-card:hover {
    transform: translateY(-8px);

    border-color: var(--primary-color);

    box-shadow: var(--shadow-medium);
}


.contact-information-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   ICON
   ========================================================= */

.contact-information-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 25px;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-radius: 50%;

    font-size: 1rem;

    transition:
        background-color var(--transition-normal),
        transform var(--transition-normal);
}


.contact-information-card:hover
.contact-information-icon {
    background-color: var(--secondary-color);

    transform: scale(1.05);
}


/* =========================================================
   LABEL
   ========================================================= */

.contact-information-label {
    margin-bottom: 8px;

    color: var(--secondary-color);

    font-family: var(--heading-font);

    font-size: 0.6rem;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================================
   TITLE
   ========================================================= */

.contact-information-card h3 {
    margin-bottom: 12px;

    color: var(--primary-color);

    font-size: 1rem;

    line-height: 1.4;

    overflow-wrap: anywhere;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.contact-information-card p {
    margin-bottom: 20px;

    color: var(--grey-color);

    font-size: 0.75rem;

    line-height: 1.7;
}


/* =========================================================
   CARD LINK
   ========================================================= */

.contact-information-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: var(--primary-color);

    font-family: var(--heading-font);

    font-size: 0.62rem;

    font-weight: 700;
}


.contact-information-link i {
    color: var(--secondary-color);

    transition: var(--transition-normal);
}


.contact-information-card:hover
.contact-information-link i {
    transform: translateX(5px);
}


/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.contact-information-socials {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;
}


.contact-information-socials a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: var(--primary-color);

    background-color: var(--light-color);

    border-radius: 50%;

    font-size: 0.7rem;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast);
}


.contact-information-socials a:hover {
    color: var(--white-color);

    background-color: var(--secondary-color);

    transform: translateY(-3px);
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-section {
    background-color: var(--white-color);
}


.contact-form-header {
    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.contact-form-header .section-title {
    margin-bottom: 20px;

    font-size: 2.4rem;
}


.contact-form-header .section-title span {
    display: block;

    color: var(--secondary-color);
}


/* =========================================================
   FORM LAYOUT
   ========================================================= */

.contact-form-layout {
    display: grid;

    grid-template-columns: 1.4fr 0.8fr;

    gap: 45px;

    margin-top: 55px;
}


.contact-form-wrapper {
    padding: 45px;

    background-color: var(--light-color);

    border: 1px solid var(--light-grey-color);

    border-radius: var(--radius-medium);
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px 20px;
}


.contact-form .form-group {
    display: flex;

    flex-direction: column;
}


.contact-form-full {
    grid-column: 1 / -1;
}


.contact-form .form-group label {
    margin-bottom: 9px;

    color: var(--primary-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;
}


.contact-form .form-group label span {
    color: var(--secondary-color);
}


/* =========================================================
   INPUTS
   ========================================================= */

.contact-input-wrapper {
    position: relative;

    display: flex;

    align-items: center;
}


.contact-input-wrapper > i {
    position: absolute;

    left: 17px;

    z-index: 2;

    color: var(--primary-color);

    font-size: 0.8rem;

    pointer-events: none;
}


.contact-input-wrapper input,
.contact-input-wrapper select,
.contact-input-wrapper textarea {
    width: 100%;

    padding: 14px 16px 14px 45px;

    color: var(--black-color);

    background-color: var(--white-color);

    border: 1px solid var(--light-grey-color);

    border-radius: var(--radius-small);

    outline: none;

    font-family: var(--body-font);

    font-size: 0.85rem;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


.contact-input-wrapper input::placeholder,
.contact-input-wrapper textarea::placeholder {
    color: #999;
}


.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-input-wrapper textarea:focus {
    border-color: var(--primary-color);

    box-shadow:
        0 0 0 3px rgba(44, 48, 122, 0.08);
}


.contact-input-wrapper select {
    appearance: none;

    cursor: pointer;
}


.contact-input-wrapper textarea {
    resize: vertical;

    min-height: 170px;

    line-height: 1.7;
}


.contact-textarea-wrapper {
    align-items: flex-start;
}


.contact-textarea-wrapper > i {
    top: 17px;
}


/* =========================================================
   FORM SUBMIT
   ========================================================= */

.contact-form-submit {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 10px;

    padding-top: 25px;

    border-top: 1px solid var(--light-grey-color);
}


.contact-form-submit .btn {
    border: none;

    cursor: pointer;
}


.contact-form-submit > p {
    display: flex;

    align-items: center;

    gap: 7px;

    margin: 0;

    color: var(--grey-color);

    font-size: 0.65rem;

    line-height: 1.5;

    text-align: right;
}


.contact-form-submit > p i {
    color: var(--secondary-color);
}


/* =========================================================
   HELP PANEL
   ========================================================= */

.contact-form-info {
    position: relative;

    align-self: stretch;

    padding: 40px;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-radius: var(--radius-medium);

    overflow: hidden;
}


.contact-form-info::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 260px;
    height: 260px;

    border: 45px solid rgba(
        255,
        255,
        255,
        0.06
    );

    border-radius: 50%;
}


.contact-form-info::after {
    content: "";

    position: absolute;

    bottom: -130px;
    left: -100px;

    width: 300px;
    height: 300px;

    border: 55px solid rgba(
        178,
        32,
        52,
        0.15
    );

    border-radius: 50%;
}


.contact-form-info-header {
    position: relative;

    z-index: 2;
}


.contact-form-info-header .section-label {
    color: var(--secondary-color);
}


.contact-form-info-header h3 {
    margin-bottom: 15px;

    color: var(--white-color);

    font-size: 1.8rem;

    line-height: 1.25;
}


.contact-form-info-header h3 span {
    display: block;

    color: var(--secondary-color);
}


.contact-form-info-header > p {
    margin-bottom: 35px;

    color: rgba(
        255,
        255,
        255,
        0.65
    );

    font-size: 0.75rem;

    line-height: 1.7;
}


/* =========================================================
   HELP ITEMS
   ========================================================= */

.contact-help-list {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 22px;
}


.contact-help-item {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 13px;

    align-items: flex-start;
}


.contact-help-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: var(--white-color);

    background-color:
        rgba(255, 255, 255, 0.1);

    border: 1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    font-size: 0.8rem;
}


.contact-help-item h4 {
    margin-bottom: 4px;

    color: var(--white-color);

    font-size: 0.8rem;
}


.contact-help-item p {
    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    font-size: 0.68rem;

    line-height: 1.6;
}


/* =========================================================
   INFO NOTE
   ========================================================= */

.contact-form-info-note {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid
        rgba(255, 255, 255, 0.12);
}


.contact-form-info-note > i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--secondary-color);

    font-size: 0.85rem;
}


.contact-form-info-note p {
    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    font-size: 0.65rem;

    line-height: 1.7;
}


/* =========================================================
   SUCCESS STATE
   ========================================================= */

.contact-success {
    display: none;

    min-height: 600px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    padding: 55px 35px;

    text-align: center;

    background-color: var(--white-color);

    border-radius: var(--radius-medium);
}


.contact-success.active {
    display: flex;

    animation:
        contactSuccessIn 0.5s ease forwards;
}


@keyframes contactSuccessIn {

    from {
        opacity: 0;

        transform: translateY(15px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


.contact-success-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 85px;
    height: 85px;

    margin-bottom: 25px;

    color: var(--white-color);

    background-color: var(--secondary-color);

    border-radius: 50%;

    font-size: 1.7rem;

    box-shadow:
        0 0 0 12px rgba(
            178,
            32,
            52,
            0.1
        );

    animation:
        contactSuccessIconPop
        0.5s
        0.15s
        ease
        both;
}


@keyframes contactSuccessIconPop {

    0% {
        opacity: 0;

        transform: scale(0.6);
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        opacity: 1;

        transform: scale(1);
    }

}


.contact-success .section-label {
    margin-bottom: 12px;

    color: var(--secondary-color);
}


.contact-success h3 {
    margin-bottom: 18px;

    color: var(--primary-color);

    font-size: 2rem;

    line-height: 1.2;
}


.contact-success h3 span {
    display: block;

    color: var(--secondary-color);
}


.contact-success > p {
    max-width: 500px;

    margin: 0 auto;

    color: var(--grey-color);

    font-size: 0.9rem;

    line-height: 1.8;
}


.contact-success-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 35px;
}


.contact-success-actions .btn {
    border: none;
}


.contact-success-again {
    padding: 12px 0;

    color: var(--primary-color);

    background: transparent;

    border: none;

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition-normal);
}


.contact-success-again:hover {
    color: var(--secondary-color);
}

/* =========================================================
   WHY REACH OUT
   ========================================================= */

.why-reach-out {
    background-color: var(--light-color);
}


.why-reach-out-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.why-reach-out-content {
    max-width: 500px;
}


.why-reach-out-content h2 {
    margin-bottom: 22px;

    color: var(--primary-color);

    font-size: 2.5rem;

    line-height: 1.2;
}


.why-reach-out-content h2 span {
    display: block;

    color: var(--secondary-color);
}


.why-reach-out-content p {
    margin-bottom: 15px;

    color: var(--grey-color);

    font-size: 0.88rem;

    line-height: 1.8;
}


.why-reach-out-content
.why-reach-out-lead {
    color: var(--black-color);

    font-size: 1rem;

    font-weight: 500;
}


.why-reach-out-content .btn {
    margin-top: 12px;
}


/* =========================================================
   CARDS
   ========================================================= */

.why-reach-out-cards {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.why-reach-out-card {
    position: relative;

    display: grid;

    grid-template-columns: 35px 45px 1fr;

    align-items: start;

    gap: 12px;

    padding: 25px 20px;

    background-color: var(--white-color);

    border: 1px solid var(--light-grey-color);

    border-radius: var(--radius-medium);

    overflow: hidden;

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}


.why-reach-out-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 3px;
    height: 100%;

    background-color: var(--secondary-color);

    transform: scaleY(0);

    transform-origin: top;

    transition:
        transform var(--transition-normal);
}


.why-reach-out-card:hover {
    transform: translateY(-5px);

    border-color: var(--primary-color);

    box-shadow: var(--shadow-small);
}


.why-reach-out-card:hover::before {
    transform: scaleY(1);
}


/* =========================================================
   NUMBER
   ========================================================= */

.why-reach-out-number {
    padding-top: 5px;

    color: var(--secondary-color);

    font-family: var(--heading-font);

    font-size: 0.6rem;

    font-weight: 700;
}


/* =========================================================
   ICON
   ========================================================= */

.why-reach-out-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-radius: 50%;

    font-size: 0.8rem;

    transition:
        background-color var(--transition-normal);
}


.why-reach-out-card:hover
.why-reach-out-icon {
    background-color: var(--secondary-color);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.why-reach-out-card h3 {
    margin-bottom: 7px;

    color: var(--primary-color);

    font-size: 0.85rem;

    line-height: 1.4;
}


.why-reach-out-card p {
    margin: 0;

    color: var(--grey-color);

    font-size: 0.68rem;

    line-height: 1.7;
}

/* =========================================================
   CONTACT FINAL CTA
   ========================================================= */

.contact-final-cta {
    position: relative;

    padding: 75px 0;

    overflow: hidden;

    color: var(--white-color);

    background-color: var(--primary-color);

    border-bottom: 8px solid var(--white-color);
}


/* =========================================================
   DECORATIVE ELEMENTS
   ========================================================= */

.contact-final-cta::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -100px;

    width: 420px;
    height: 420px;

    border: 70px solid
        rgba(255, 255, 255, 0.04);

    border-radius: 50%;
}


.contact-final-cta::after {
    content: "";

    position: absolute;

    bottom: -150px;
    left: -100px;

    width: 350px;
    height: 350px;

    border: 50px solid
        rgba(178, 32, 52, 0.12);

    border-radius: 50%;
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.contact-final-cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;
}


.contact-final-cta-text {
    max-width: 700px;
}


.contact-final-cta-text .section-label {
    color: var(--secondary-color);
}


.contact-final-cta-text h2 {
    margin-bottom: 18px;

    color: var(--white-color);

    font-size: 2.7rem;

    line-height: 1.15;
}


.contact-final-cta-text h2 span {
    display: block;

    color: var(--secondary-color);
}


.contact-final-cta-text p {
    max-width: 650px;

    margin: 0;

    color: rgba(
        255,
        255,
        255,
        0.72
    );

    font-size: 0.88rem;

    line-height: 1.8;
}


/* =========================================================
   CTA ACTIONS
   ========================================================= */

.contact-final-cta-actions {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;

    min-width: 210px;
}


.contact-final-cta-actions .btn {
    white-space: nowrap;
}


.contact-final-cta-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--white-color);

    font-family: var(--heading-font);

    font-size: 0.7rem;

    font-weight: 700;

    transition: var(--transition-normal);
}


.contact-final-cta-link i {
    color: var(--secondary-color);

    transition: var(--transition-normal);
}


.contact-final-cta-link:hover {
    color: var(--secondary-color);
}


.contact-final-cta-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER SEPARATOR
   ========================================================= */

.contact-final-cta + .footer {
    position: relative;
}


.contact-final-cta + .footer::before {
    content: "";

    position: absolute;

    top: -8px;
    left: 50%;

    width: 90px;
    height: 8px;

    transform: translateX(-50%);

    background-color: var(--secondary-color);

    z-index: 5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-final-cta-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }


    .contact-final-cta-actions {
        flex-direction: row;

        align-items: center;
    }

}


@media (max-width: 768px) {

    .contact-final-cta {
        padding: 70px 0;
    }


    .contact-final-cta-text h2 {
        font-size: 2.2rem;
    }


    .contact-final-cta-actions {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .contact-final-cta-text h2 {
        font-size: 1.9rem;
    }


    .contact-final-cta-text p {
        font-size: 0.85rem;
    }


    .contact-final-cta-actions {
        width: 100%;
    }


    .contact-final-cta-actions .btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .why-reach-out-grid {
        gap: 50px;
    }


    .why-reach-out-card {
        grid-template-columns:
            30px 42px 1fr;

        gap: 10px;

        padding: 22px 17px;
    }

}


@media (max-width: 850px) {

    .why-reach-out-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .why-reach-out-content {
        max-width: 650px;
    }

}


@media (max-width: 768px) {

    .why-reach-out {
        padding: 70px 0;
    }


    .why-reach-out-content h2 {
        font-size: 2.1rem;
    }

}


@media (max-width: 600px) {

    .why-reach-out-cards {
        grid-template-columns: 1fr;
    }


    .why-reach-out-card {
        grid-template-columns:
            35px 45px 1fr;

        padding: 25px 20px;
    }

}


@media (max-width: 480px) {

    .why-reach-out-content h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .contact-form-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .contact-form-info {
        min-height: auto;
    }

}


@media (max-width: 768px) {

    .contact-form-section {
        padding: 70px 0;
    }


    .contact-form-header
    .section-title {
        font-size: 2rem;
    }


    .contact-form-wrapper {
        padding: 30px 25px;
    }


    .contact-form {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    .contact-form-full {
        grid-column: auto;
    }


    .contact-form-submit {
        flex-direction: column;

        align-items: stretch;
    }


    .contact-form-submit .btn {
        width: 100%;
    }


    .contact-form-submit > p {
        justify-content: center;

        text-align: center;
    }


    .contact-form-info {
        padding: 35px 30px;
    }


    .contact-success {
        min-height: 550px;

        padding: 45px 25px;
    }


    .contact-success h3 {
        font-size: 1.7rem;
    }


    .contact-success-actions {
        flex-direction: column;

        width: 100%;
    }


    .contact-success-actions .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .contact-form-wrapper {
        padding: 25px 20px;
    }


    .contact-form-info {
        padding: 30px 25px;
    }


    .contact-form-info-header h3 {
        font-size: 1.5rem;
    }


    .contact-success {
        min-height: 500px;

        padding: 40px 20px;
    }


    .contact-success-icon {
        width: 75px;
        height: 75px;

        font-size: 1.5rem;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .contact-information-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .contact-information {
        padding: 70px 0;
    }


    .contact-information-header
    .section-title {
        font-size: 2rem;
    }


    .contact-information-grid {
        gap: 15px;

        margin-top: 40px;
    }


    .contact-information-card {
        min-height: 300px;

        padding: 30px 25px;
    }

}


@media (max-width: 520px) {

    .contact-information-grid {
        grid-template-columns: 1fr;
    }


    .contact-information-card {
        min-height: auto;

        padding: 30px 25px;
    }

}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {

    .contact-intro-grid {
        gap: 50px;
    }


    .contact-intro-content h2 {
        font-size: 2.2rem;
    }


    .contact-intro-visual {
        min-height: 430px;
    }


    .contact-intro-visual img {
        height: 405px;
    }

}


@media (max-width: 768px) {

    .contact-intro {
        padding: 70px 0;
    }


    .contact-intro-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .contact-intro-content {
        max-width: 100%;
    }


    .contact-intro-visual {
        min-height: 430px;
    }

}


@media (max-width: 480px) {

    .contact-intro-content h2 {
        font-size: 1.9rem;
    }


    .contact-intro-visual {
        min-height: 340px;

        padding: 0 15px 20px 0;
    }


    .contact-intro-visual img {
        height: 320px;
    }


    .contact-intro-card {
        max-width: 270px;

        padding: 15px;
    }

}


@media (max-width: 768px) {

    .contact-page-hero {
        min-height: 460px;
    }


    .contact-hero-content h1 {
        font-size: 3rem;
    }

}


@media (max-width: 480px) {

    .contact-page-hero {
        min-height: 420px;
    }


    .contact-hero-content h1 {
        font-size: 2.5rem;
    }


    .contact-hero-content p {
        font-size: 0.9rem;
    }

}