/* ================================
   CONTACT INTRO
================================ */

.contact-intro-section {
    position: relative;
    width: 100%;
    padding: 90px 20px 45px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 40%,
            rgba(215, 25, 63, 0.07),
            transparent 32%
        ),
        #07080b;
}

.contact-intro-container {
    position: relative;
    width: min(900px, 100%);
    margin: 0 auto;
}

.contact-intro-content {
    max-width: 820px;
}

.contact-intro-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #d7193f;
}

.contact-intro-label::before {
    content: "";

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}

.contact-intro-content h1 {
    margin: 0 0 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;

    color: #ffffff;
}

.contact-intro-content h1 span {
    color: #d7193f;
}

.contact-intro-content p {
    max-width: 760px;

    margin: 0 0 17px;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.9;

    color: #aeb2bd;
}

.contact-intro-line {
    width: 65px;
    height: 2px;

    margin-top: 25px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


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

@media (max-width: 650px) {

    .contact-intro-section {
        padding: 70px 15px 35px;
    }

    .contact-intro-label {
        gap: 8px;
        margin-bottom: 13px;

        font-size: 8px;
        letter-spacing: 2.2px;
    }

    .contact-intro-label::before {
        width: 25px;
    }

    .contact-intro-content h1 {
        margin-bottom: 20px;

        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -0.5px;
    }

    .contact-intro-content p {
        font-size: 11px;
        line-height: 1.8;
    }

    .contact-intro-line {
        width: 55px;
        margin-top: 22px;
    }
}


@media (max-width: 380px) {

    .contact-intro-section {
        padding: 60px 12px 30px;
    }

    .contact-intro-content h1 {
        font-size: 30px;
    }

    .contact-intro-content p {
        font-size: 10px;
        line-height: 1.75;
    }

}

/* ================================
   CONTACT CARDS
================================ */

.contact-cards-section {
    position: relative;

    width: 100%;

    padding: 45px 20px 95px;

    overflow: hidden;

    background: #07080b;
}


.contact-cards-container {
    width: min(1120px, 100%);

    margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.contact-cards-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}


.contact-cards-label {
    display: block;

    margin-bottom: 10px;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #d7193f;
}


.contact-cards-heading h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(30px, 4vw, 43px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.7px;

    color: #ffffff;
}


.contact-cards-heading h2 span {
    color: #d7193f;
}


/* ================================
   GRID
================================ */

.contact-cards-grid {
    display: grid;

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

    gap: 18px;
}


/* ================================
   CARD
================================ */

.contact-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 235px;

    padding: 27px 28px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.96),
            rgba(9, 10, 14, 0.98)
        );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30);

    text-decoration: none;

    overflow: hidden;

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


.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 28px;

    width: 70px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );

    transition:
        width 0.35s ease;
}


.contact-card::after {
    content: "";

    position: absolute;

    right: -100px;
    bottom: -110px;

    width: 240px;
    height: 240px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.055);

    filter: blur(50px);

    pointer-events: none;

    transition:
        opacity 0.35s ease;
}


.contact-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(215, 25, 63, 0.30);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.42),
        0 0 25px rgba(215, 25, 63, 0.06);
}


.contact-card:hover::before {
    width: 105px;
}


/* ================================
   TOP
================================ */

.contact-card-top {
    position: relative;
    z-index: 2;

    display: flex;

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


.contact-card-number {
    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #555965;
}


.contact-card-icon {
    display: flex;

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

    width: 46px;
    height: 46px;

    border-radius: 50%;

    border:
        1px solid rgba(215, 25, 63, 0.25);

    background:
        rgba(215, 25, 63, 0.08);

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


.contact-card-icon i {
    font-size: 17px;

    color: #d7193f;
}


.contact-card:hover .contact-card-icon {
    background:
        rgba(215, 25, 63, 0.16);

    transform: scale(1.06);
}


/* ================================
   CONTENT
================================ */

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

    flex: 1;

    padding-top: 25px;
}


.contact-card-content h3 {
    margin: 0 0 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    font-weight: 700;

    color: #ffffff;
}


.contact-card-content p {
    max-width: 390px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.75;

    color: #969aa6;
}


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

.contact-card-bottom {
    position: relative;
    z-index: 2;

    display: flex;

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

    margin-top: 22px;

    padding-top: 16px;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}


.contact-card-bottom span {
    font-family: Arial, sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #686c77;
}


.contact-card-bottom i {
    font-size: 12px;

    color: #686c77;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-card:hover .contact-card-bottom i {
    color: #d7193f;

    transform: translateX(4px);
}


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

@media (max-width: 650px) {

    .contact-cards-section {
        padding: 35px 15px 70px;
    }


    .contact-cards-heading {
        display: block;

        margin-bottom: 25px;
    }


    .contact-cards-label {
        font-size: 8px;

        letter-spacing: 2.2px;
    }


    .contact-cards-heading h2 {
        font-size: 32px;

        letter-spacing: -0.5px;
    }


    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    .contact-card {
        min-height: 225px;

        padding: 21px 18px;

        border-radius: 17px;
    }


    .contact-card::before {
        left: 18px;

        width: 55px;
    }


    .contact-card-number {
        font-size: 8px;
    }


    .contact-card-icon {
        width: 38px;
        height: 38px;
    }


    .contact-card-icon i {
        font-size: 14px;
    }


    .contact-card-content {
        padding-top: 20px;
    }


    .contact-card-content h3 {
        margin-bottom: 8px;

        font-size: 19px;
    }


    .contact-card-content p {
        font-size: 9px;

        line-height: 1.65;
    }


    .contact-card-bottom {
        margin-top: 17px;

        padding-top: 13px;
    }


    .contact-card-bottom span {
        font-size: 6px;

        letter-spacing: 1.3px;
    }


    .contact-card-bottom i {
        font-size: 10px;
    }

}


@media (max-width: 380px) {

    .contact-cards-section {
        padding-left: 12px;
        padding-right: 12px;
    }


    .contact-cards-heading h2 {
        font-size: 29px;
    }


    .contact-cards-grid {
        gap: 9px;
    }


    .contact-card {
        min-height: 215px;

        padding: 18px 15px;
    }


    .contact-card::before {
        left: 15px;
    }


    .contact-card-icon {
        width: 35px;
        height: 35px;
    }


    .contact-card-icon i {
        font-size: 13px;
    }


    .contact-card-content h3 {
        font-size: 17px;
    }


    .contact-card-content p {
        font-size: 8px;
    }

}

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

.contact-information-section {
    position: relative;
    width: 100%;
    padding: 45px 20px 90px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(215, 25, 63, 0.07),
            transparent 30%
        ),
        #07080b;
}


.contact-information-container {
    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 70px;
    align-items: center;
}


/* ================================
   CONTENT
================================ */

.contact-information-content {
    max-width: 680px;
}


.contact-information-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.8px;

    color: #d7193f;
}


.contact-information-label::before {
    content: "";

    width: 32px;
    height: 1px;

    background: #d7193f;
}


.contact-information-content h2 {
    margin: 0 0 22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.8px;

    color: #ffffff;
}


.contact-information-content h2 span {
    display: block;
    color: #d7193f;
}


.contact-information-content p {
    max-width: 650px;

    margin: 0 0 16px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.9;

    color: #9da1ad;
}


.contact-information-line {
    width: 60px;
    height: 2px;

    margin-top: 23px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            rgba(215, 25, 63, 0)
        );
}


/* ================================
   SIDE CARD
================================ */

.contact-information-side {
    position: relative;

    padding: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.96),
            rgba(9, 10, 14, 0.98)
        );

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.34);

    overflow: hidden;
}


.contact-information-side::before {
    content: "";

    position: absolute;

    top: 0;
    left: 28px;

    width: 75px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );
}


.contact-information-side-top {
    display: flex;

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

    padding-bottom: 18px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);
}


.contact-information-side-top span {
    font-family: Arial, sans-serif;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.5px;

    color: #d7193f;
}


.contact-information-side-top i {
    font-size: 15px;
    color: #d7193f;
}


/* MAIN */

.contact-information-side-main {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 28px 0;
}


.contact-information-icon {
    display: flex;

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

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.08);

    border:
        1px solid rgba(215, 25, 63, 0.22);
}


.contact-information-icon i {
    font-size: 17px;
    color: #d7193f;
}


.contact-information-side-main span {
    display: block;

    margin-bottom: 6px;

    font-family: Arial, sans-serif;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #666a75;
}


.contact-information-side-main strong {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 700;

    color: #ffffff;
}


/* BOTTOM */

.contact-information-side-bottom {
    padding-top: 18px;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.contact-information-side-bottom > span {
    display: block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: #666a75;
}


.contact-information-dots {
    display: flex;
    gap: 9px;
}


.contact-information-dots i {
    display: flex;

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

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    font-size: 11px;

    color: #8b8f9a;
}


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

@media (max-width: 900px) {

    .contact-information-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-information-content {
        max-width: 750px;
    }

    .contact-information-side {
        width: min(600px, 100%);
    }

}


@media (max-width: 650px) {

    .contact-information-section {
        padding: 35px 15px 70px;
    }

    .contact-information-container {
        gap: 35px;
    }

    .contact-information-label {
        font-size: 8px;
        letter-spacing: 2.2px;
    }

    .contact-information-content h2 {
        font-size: 33px;
        letter-spacing: -0.5px;
    }

    .contact-information-content h2 span {
        display: inline;
    }

    .contact-information-content p {
        font-size: 10px;
        line-height: 1.8;
    }

    .contact-information-side {
        padding: 23px;
        border-radius: 17px;
    }

    .contact-information-side::before {
        left: 23px;
        width: 60px;
    }

    .contact-information-side-main {
        padding: 23px 0;
    }

}


@media (max-width: 380px) {

    .contact-information-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact-information-content h2 {
        font-size: 29px;
    }

    .contact-information-side {
        padding: 20px;
    }

    .contact-information-side-main strong {
        font-size: 18px;
    }

}