/* =========================================================
   PREMIUM FAQ SECTION
========================================================= */

.faq__area-two {
    position: relative;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.faq__left-wrap {
    position: relative;
}

/* =========================================================
   VISUAL IMAGE
========================================================= */

.faq__visual-wrap {
    position: relative;
    z-index: 1;
}

.faq__visual-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 24px;
    background: #edf1f8;
    box-shadow: 0 20px 55px rgba(25, 43, 80, 0.12);
}

.faq__visual-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.faq__visual-wrap:hover .faq__visual-image img {
    transform: scale(1.045);
}

/* Dark gradient */

.faq__visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        180deg,
        rgba(10, 20, 50, 0) 35%,
        rgba(10, 20, 50, 0.72) 100%
    );
}

/* =========================================================
   IMAGE BADGE
========================================================= */

.faq__badge-icon {
    width: 40px;
    height: 40px;

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

    border-radius: 10px;

    background: #1d43fe;
    color: #fff;

    font-size: 14px;
}

/* =========================================================
   DECORATIVE DOTS
========================================================= */

.faq__visual-shape {
    position: absolute;

    top: -20px;
    right: -20px;

    width: 95px;
    height: 95px;

    z-index: -1;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;

    opacity: 0.75;
}

.faq__visual-shape span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #1d43fe;
}

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

.faq__intro-box {
    position: relative;
    z-index: 4;
    margin: -65px 22px 0;
    padding: 30px;
    border: 1px solid #edf0f6;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(25, 43, 80, 0.11);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.faq__intro-box:hover {
    transform: translateY(-3px);

    box-shadow: 0 25px 65px rgba(25, 43, 80, 0.14);
}

/* Intro top */

.faq__intro-top {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 13px;
}

.faq__intro-icon {
    width: 36px;
    height: 36px;

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

    border-radius: 9px;

    background: #eef2ff;
    color: #1d43fe;

    font-size: 15px;
}

.faq__intro-label {
    color: #1d43fe;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.faq__intro-box h3 {
    margin: 0 0 12px;
    color: #18213a;

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

    line-height: 1.4;
}

/* Paragraph */

.faq__intro-box p {
    margin: 0 0 22px;

    color: #68718a;

    font-size: 13px;
    line-height: 1.85;
}

/* =========================================================
   CONTACT BUTTON
========================================================= */

.faq__contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    min-width: 190px;

    padding: 12px 17px;

    border-radius: 8px;

    background: #1d43fe;
    color: #fff;

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

    text-decoration: none;

    transition: all 0.3s ease;
}

.faq__contact-btn:hover {
    background: #1637d6;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(29, 67, 254, 0.22);
}

.faq__contact-btn i {
    font-size: 10px;

    transition: transform 0.3s ease;
}

.faq__contact-btn:hover i {
    transform: translateX(4px);
}

/* =========================================================
   TRUST BOX
========================================================= */

.faq__trust-box {
    margin-top: 20px;

    padding: 20px;

    border: 1px solid #edf0f6;
    border-radius: 17px;

    background: #fbfcff;
}

/* Header */

.faq__trust-header {
    margin-bottom: 14px;
    color: #9aa2b2;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Trust item */

.faq__trust-item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid #edf0f6;
}

.faq__trust-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.faq__trust-item:first-of-type {
    padding-top: 0;
}

/* Icon */

.faq__trust-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

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

    border-radius: 10px;

    background: #fff;

    color: #1d43fe;

    border: 1px solid #e9edf5;

    font-size: 13px;
}

/* Content */

.faq__trust-content {
    flex: 1;
}

.faq__trust-content strong {
    display: block;

    color: #283149;

    font-size: 12px;
    font-weight: 600;
}

.faq__trust-content span {
    display: block;

    margin-top: 3px;

    color: #8991a3;

    font-size: 10px;
}

/* Check */

.faq__trust-check {
    color: #1d43fe;

    font-size: 9px;
}

/* =========================================================
   RIGHT FAQ LIST
========================================================= */

.faq__premium-item {
    margin-bottom: 14px;

    overflow: hidden;

    border: 1px solid #e9edf5;
    border-radius: 15px;

    background: #fff;

    transition: all 0.3s ease;
}

.faq__premium-item:hover {
    border-color: rgba(29, 67, 254, 0.25);

    box-shadow: 0 12px 35px rgba(25, 43, 80, 0.07);
}

/* =========================================================
   QUESTION
========================================================= */

.faq__premium-button {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 23px 25px;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;
}

/* Number */

.faq__number {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

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

    border-radius: 10px;

    background: #f2f5ff;
    color: #1d43fe;

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

    transition: all 0.3s ease;
}

/* Question */

.faq__question {
    flex: 1;
}

.faq__category {
    display: block;
    margin-bottom: 5px;
    color: #1d43fe;
    font-size: 9px;
    font-weight: 700;
}

.faq__question h4 {
    margin: 0;

    color: #222b43;

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

    line-height: 1.5;
}

/* =========================================================
   ARROW
========================================================= */

.faq__arrow {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

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

    border: 1px solid #e5e9f2;
    border-radius: 50%;

    color: #657087;

    transition: all 0.3s ease;
}

.faq__arrow i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

/* =========================================================
   ACTIVE FAQ
========================================================= */

.faq__premium-button:not(.collapsed) {
    background: #fbfcff;
}

.faq__premium-button:not(.collapsed) .faq__number {
    background: #1d43fe;
    color: #fff;
}

.faq__premium-button:not(.collapsed) .faq__arrow {
    background: #1d43fe;
    border-color: #1d43fe;
    color: #fff;
}

.faq__premium-button:not(.collapsed) .faq__arrow i {
    transform: rotate(90deg);
}

/* =========================================================
   ANSWER
========================================================= */

.faq__answer {
    padding: 0 25px 28px 88px;
}

.faq__answer-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        220px;

    gap: 25px;

    align-items: center;
}

.faq__answer-text p {
    margin: 0 0 18px;

    color: #68718a;

    font-size: 13px;
    line-height: 1.9;
}

/* =========================================================
   ANSWER POINTS
========================================================= */

.faq__points {
    margin: 0;
    padding: 0;

    list-style: none;
}

.faq__points li {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    margin-bottom: 9px;

    color: #4d566d;

    font-size: 12px;
    line-height: 1.6;
}

.faq__points li:last-child {
    margin-bottom: 0;
}

.faq__points li i {
    flex: 0 0 18px;

    width: 18px;
    height: 18px;

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

    margin-top: 1px;

    border-radius: 50%;

    background: #eef2ff;
    color: #1d43fe;

    font-size: 8px;
}

/* =========================================================
   ANSWER IMAGE
========================================================= */

.faq__answer-image {
    position: relative;

    height: 145px;

    overflow: hidden;

    border-radius: 13px;

    background: #f3f5fa;
}

.faq__answer-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.faq__premium-item:hover .faq__answer-image img {
    transform: scale(1.06);
}

/* Image overlay */

.faq__image-overlay {
    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 2;

    width: 30px;
    height: 30px;

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

    border-radius: 50%;

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

    color: #1d43fe;

    font-size: 10px;

    opacity: 0;

    transform: translateY(-5px);

    transition: all 0.3s ease;
}

.faq__premium-item:hover .faq__image-overlay {
    opacity: 1;

    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .faq__visual-image {
        height: 330px;
    }

    .faq__intro-box {
        margin-left: 15px;
        margin-right: 15px;
    }

    .faq__answer-content {
        grid-template-columns: minmax(0, 1fr) 190px;
    }
}

@media (max-width: 991px) {
    .faq__left-wrap {
        margin-bottom: 20px;
    }

    .faq__visual-image {
        height: 380px;
    }

    .faq__answer-content {
        grid-template-columns: minmax(0, 1fr) 200px;
    }
}

@media (max-width: 767px) {
    .faq__visual-image {
        height: 330px;
    }

    .faq__intro-box {
        margin: -45px 15px 0;
    }

    .faq__answer {
        padding: 0 20px 25px 70px;
    }

    .faq__answer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq__answer-image {
        height: 190px;
        order: 2;
    }
}

@media (max-width: 575px) {
    .faq__visual-image {
        height: 280px;

        border-radius: 18px;
    }

    .faq__badge-icon {
        width: 35px;
        height: 35px;
    }

    .faq__intro-box {
        margin: -35px 10px 0;
        padding: 23px 20px;
    }

    .faq__intro-box h3 {
        font-size: 20px;
    }

    .faq__trust-box {
        padding: 17px;
    }

    .faq__premium-button {
        gap: 12px;
        padding: 18px 16px;
    }

    .faq__number {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;
    }

    .faq__question h4 {
        font-size: 14px;
    }

    .faq__arrow {
        flex: 0 0 32px;

        width: 32px;
        height: 32px;
    }

    .faq__answer {
        padding: 0 18px 22px 64px;
    }

    .faq__answer-image {
        height: 170px;
    }
}

/* ==========================================
   PREMIUM FAQ CTA
========================================== */

.cta__faq-premium {
    position: relative;
    overflow: hidden;
    padding: 65px 70px;
    border-radius: 28px;
    background: #1d43fe;
    isolation: isolate;
}

/* ------------------------------------------
   Decorative Glow
------------------------------------------ */

.cta__faq-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(5px);
    z-index: -1;
}

.cta__faq-glow::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -300px;
    top: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

/* ------------------------------------------
   Question Mark Pattern
------------------------------------------ */

.cta__faq-pattern {
    position: absolute;
    right: 30px;
    bottom: -55px;
    display: flex;
    gap: 15px;
    transform: rotate(-8deg);
    opacity: 0.08;
    pointer-events: none;
}

.cta__faq-pattern span {
    font-size: 180px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

/* ------------------------------------------
   Label
------------------------------------------ */

.cta__faq-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 7px 14px 7px 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta__faq-label-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #1d43fe;
    font-size: 14px;
}

/* ------------------------------------------
   Content
------------------------------------------ */

.cta__faq-content {
    position: relative;
    z-index: 2;
}

.cta__faq-content .title {
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.cta__faq-content p {
    max-width: 680px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

/* ------------------------------------------
   Features
------------------------------------------ */

.cta__faq-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
}

.cta__faq-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
}

.cta__faq-features i {
    width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 9px;
}

/* ------------------------------------------
   Button Area
------------------------------------------ */

.cta__faq-button-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta__faq-button {
    display: inline-flex !important;
    align-items: center;
    gap: 18px;
    min-width: 220px;
    justify-content: space-between;
    padding: 8px 8px 8px 25px !important;
    border-radius: 50px !important;
    background: #fff !important;
    color: #1d43fe !important;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta__faq-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta__faq-arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #1d43fe;
    color: #fff;
    transition: all 0.3s ease;
}

.cta__faq-button:hover .cta__faq-arrow {
    transform: translateX(3px);
}

.cta__faq-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.cta__faq-note i {
    font-size: 11px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {
    .cta__faq-premium {
        padding: 55px 50px;
    }

    .cta__faq-button {
        min-width: 200px;
    }
}

@media (max-width: 991px) {
    .cta__faq-premium {
        padding: 50px 40px;
    }

    .cta__faq-content {
        margin-bottom: 30px;
    }

    .cta__faq-button-wrap {
        align-items: flex-start;
    }

    .cta__faq-note {
        margin-left: 8px;
        margin-right: 0;
    }

    .cta__faq-pattern {
        right: -30px;
    }
}

@media (max-width: 767px) {
    .cta__faq-premium {
        padding: 40px 30px;
        border-radius: 22px;
    }

    .cta__faq-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .cta__faq-features {
        flex-direction: column;
        gap: 10px;
    }

    .cta__faq-pattern {
        right: -70px;
        bottom: -40px;
    }

    .cta__faq-pattern span {
        font-size: 130px;
    }
}

@media (max-width: 575px) {
    .cta__faq-premium {
        padding: 35px 22px;
        border-radius: 20px;
    }

    .cta__faq-label {
        font-size: 11px;
    }

    .cta__faq-button {
        width: 100%;
        min-width: 0;
    }

    .cta__faq-button-wrap {
        width: 100%;
    }

    .cta__faq-note {
        margin-left: 5px;
    }
}
/* =========================================================
   FAQ CTA - Premium Section
   ========================================================= */

.cta__area-nine {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 130px;

    /* Premium light background */
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(29, 67, 254, 0.08) 0%,
            rgba(29, 67, 254, 0.035) 20%,
            transparent 42%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(29, 67, 254, 0.06) 0%,
            rgba(29, 67, 254, 0.025) 22%,
            transparent 42%
        ),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 48%, #f5f8ff 100%);
}

/* =========================================================
   Decorative Background
   ========================================================= */

.cta__area-nine::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(29, 67, 254, 0.12) 0%,
        rgba(29, 67, 254, 0.055) 35%,
        rgba(29, 67, 254, 0.015) 55%,
        transparent 72%
    );

    pointer-events: none;
}

/* Bottom-left glow */
.cta__area-nine::after {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    bottom: -300px;
    left: -200px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(29, 67, 254, 0.09) 0%,
        rgba(29, 67, 254, 0.035) 38%,
        transparent 72%
    );

    pointer-events: none;
}

/* =========================================================
   Main CTA Container
   ========================================================= */

.cta__faq-modern {
    position: relative;
    overflow: hidden;

    padding: 58px 65px;

    border-radius: 24px;

    background: linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #f7f9ff 100%);

    border: 1px solid #e8edf5;

    box-shadow:
        0 10px 30px rgba(16, 24, 40, 0.05),
        0 25px 60px rgba(29, 67, 254, 0.06);

    z-index: 2;
}

/* =========================================================
   CTA Inner Decorative Glow
   ========================================================= */

.cta__faq-modern::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -260px;
    right: -170px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(29, 67, 254, 0.12) 0%,
        rgba(29, 67, 254, 0.045) 42%,
        transparent 72%
    );

    pointer-events: none;
}

/* Bottom glow */
.cta__faq-modern::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    bottom: -180px;
    left: 35%;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(29, 67, 254, 0.06),
        transparent 70%
    );

    pointer-events: none;
}

/* =========================================================
   Optional Decorative Background Shape
   ========================================================= */

.cta__faq-modern-bg {
    position: absolute;

    width: 300px;
    height: 300px;

    top: -150px;
    right: 18%;

    border-radius: 50%;

    border: 1px solid rgba(29, 67, 254, 0.07);

    box-shadow:
        0 0 0 35px rgba(29, 67, 254, 0.015),
        0 0 0 70px rgba(29, 67, 254, 0.01);

    pointer-events: none;
}

/* =========================================================
   Orbit Decorations
   ========================================================= */

.cta__faq-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(29, 67, 254, 0.08);

    pointer-events: none;
}

.cta__faq-orbit-one {
    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -70px;
}

.cta__faq-orbit-two {
    width: 100px;
    height: 100px;

    right: 20px;
    bottom: -30px;

    border-color: rgba(29, 67, 254, 0.06);
}

/* =========================================================
   Decorative Dots
   ========================================================= */

.cta__faq-dots {
    position: absolute;

    top: 35px;
    right: 38%;

    display: grid;

    grid-template-columns: repeat(3, 5px);

    gap: 7px;

    opacity: 0.45;

    pointer-events: none;
}

.cta__faq-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #1d43fe;
}

/* =========================================================
   Content
   ========================================================= */

.cta__faq-modern-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

/* =========================================================
   Label
   ========================================================= */

.cta__faq-modern-label {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    margin-bottom: 17px;

    padding: 7px 13px 7px 7px;

    border-radius: 50px;

    background: rgba(29, 67, 254, 0.055);

    border: 1px solid rgba(29, 67, 254, 0.1);

    color: #1d43fe;

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

    letter-spacing: 0.3px;
}

.cta__faq-modern-label-icon {
    width: 28px;
    height: 28px;

    display: inline-flex;

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

    border-radius: 50%;

    background: #ffffff;

    color: #1d43fe;

    box-shadow: 0 4px 12px rgba(29, 67, 254, 0.1);
}

.cta__faq-modern-label-icon i {
    font-size: 13px;
}

/* =========================================================
   Title
   ========================================================= */

.cta__faq-modern-content .title {
    margin: 0 0 15px;

    line-height: 1.15;

    font-weight: 700;

    color: #101828;

    letter-spacing: -0.7px;
}

/* Highlight first part visually */
.cta__faq-modern-content .title::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin-top: 16px;

    border-radius: 20px;

    background: linear-gradient(90deg, #1d43fe, rgba(29, 67, 254, 0.15));
}

/* =========================================================
   Description
   ========================================================= */

.cta__faq-modern-content > p {
    max-width: 620px;

    margin: 0;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;
}

/* =========================================================
   Trust Items
   ========================================================= */

.cta__faq-modern-trust {
    display: flex;

    align-items: center;

    gap: 24px;

    margin-top: 28px;
}

.cta__faq-modern-trust-item {
    display: flex;

    align-items: center;

    gap: 10px;
}

.cta__faq-modern-trust-item > span {
    width: 30px;
    height: 30px;

    display: inline-flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(29, 67, 254, 0.08);

    color: #1d43fe;
}

.cta__faq-modern-trust-item > span i {
    font-size: 12px;
}

.cta__faq-modern-trust-item strong {
    display: block;

    color: #101828;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.2;
}

.cta__faq-modern-trust-item small {
    display: block;

    margin-top: 3px;

    color: #98a2b3;

    font-size: 11px;

    line-height: 1.2;
}

/* =========================================================
   Trust Dividers
   ========================================================= */

.cta__faq-modern-divider {
    width: 1px;
    height: 32px;

    background: #e5e7eb;
}

/* =========================================================
   Right Action Area
   ========================================================= */

.cta__faq-modern-action {
    position: relative;

    z-index: 3;

    display: flex;

    justify-content: flex-end;
}

/* =========================================================
   Contact Card
   ========================================================= */

.cta__faq-contact-card {
    position: relative;

    width: 100%;
    max-width: 310px;

    padding: 26px;

    border-radius: 18px;

    background: linear-gradient(145deg, #f8faff 0%, #ffffff 100%);

    border: 1px solid #e7ecf5;

    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);

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

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

    border-color: rgba(29, 67, 254, 0.2);

    box-shadow:
        0 20px 45px rgba(16, 24, 40, 0.1),
        0 8px 25px rgba(29, 67, 254, 0.06);
}

/* =========================================================
   Contact Icon
   ========================================================= */

.cta__faq-contact-icon {
    width: 54px;
    height: 54px;

    display: flex;

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

    margin-bottom: 18px;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        rgba(29, 67, 254, 0.12),
        rgba(29, 67, 254, 0.05)
    );

    border: 1px solid rgba(29, 67, 254, 0.1);

    color: #1d43fe;

    box-shadow: 0 8px 20px rgba(29, 67, 254, 0.08);
}

.cta__faq-contact-icon i {
    font-size: 21px;
}

/* =========================================================
   Contact Text
   ========================================================= */

.cta__faq-contact-content {
    margin-bottom: 20px;
}

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

    margin-bottom: 5px;

    color: #98a2b3;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.cta__faq-contact-content strong {
    display: block;

    color: #101828;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 700;
}

/* =========================================================
   Contact Button
   ========================================================= */

.cta__faq-modern-btn {
    position: relative;

    display: flex;

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

    width: 100%;

    min-height: 52px;

    padding: 0 17px 0 20px;

    border-radius: 12px;

    background: #1d43fe;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(29, 67, 254, 0.2);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cta__faq-modern-btn:hover {
    color: #ffffff;

    background: #1637d8;

    transform: translateY(-2px);

    box-shadow: 0 15px 30px rgba(29, 67, 254, 0.25);
}

.cta__faq-modern-btn i {
    width: 30px;
    height: 30px;

    display: inline-flex;

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

    border-radius: 50%;

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

    font-size: 12px;

    transition: transform 0.3s ease;
}

.cta__faq-modern-btn:hover i {
    transform: translateX(3px);
}

/* =========================================================
   Contact Note
   ========================================================= */

.cta__faq-contact-note {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 15px;

    color: #98a2b3;

    font-size: 11px;

    line-height: 1.4;
}

.cta__faq-contact-note i {
    color: #1d43fe;

    font-size: 11px;
}

/* =========================================================
   Responsive - Large Tablet
   ========================================================= */

@media (max-width: 1199px) {
    .cta__faq-modern {
        padding: 50px 45px;
    }

    .cta__faq-modern-trust {
        gap: 18px;
    }

    .cta__faq-modern-divider {
        height: 28px;
    }
}

/* =========================================================
   Responsive - Tablet
   ========================================================= */

@media (max-width: 991px) {
    .cta__area-nine {
        padding-bottom: 100px;
    }

    .cta__faq-modern {
        padding: 45px 40px;
    }

    .cta__faq-modern-content {
        max-width: 100%;
        margin-bottom: 35px;
    }

    .cta__faq-modern-action {
        justify-content: flex-start;
    }

    .cta__faq-contact-card {
        max-width: 100%;
    }
}

/* =========================================================
   Responsive - Mobile
   ========================================================= */

@media (max-width: 767px) {
    .cta__area-nine {
        padding-top: 10px;
        padding-bottom: 80px;
    }

    .cta__faq-modern {
        padding: 35px 25px;

        border-radius: 18px;
    }

    .cta__faq-modern-content > p {
        font-size: 14px;

        line-height: 1.75;
    }

    .cta__faq-modern-trust {
        flex-wrap: wrap;

        gap: 15px 20px;

        margin-top: 24px;
    }

    .cta__faq-modern-divider {
        display: none;
    }

    .cta__faq-contact-card {
        padding: 22px;
    }

    .cta__faq-modern-bg {
        right: -80px;
    }

    .cta__faq-dots {
        display: none;
    }
}

/* =========================================================
   Responsive - Small Mobile
   ========================================================= */

@media (max-width: 480px) {
    .cta__faq-modern {
        padding: 30px 20px;
    }

    .cta__faq-modern-label {
        font-size: 12px;
    }

    .cta__faq-modern-trust {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .cta__faq-modern-trust-item > span {
        width: 27px;
        height: 27px;
    }

    .cta__faq-modern-trust-item strong {
        font-size: 12px;
    }

    .cta__faq-modern-trust-item small {
        font-size: 10px;
    }

    .cta__faq-contact-card {
        padding: 20px;
    }

    .cta__faq-contact-icon {
        width: 48px;
        height: 48px;

        border-radius: 13px;
    }

    .cta__faq-contact-content strong {
        font-size: 17px;
    }
}
.contact-location--premium {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

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

.contact-location__heading {
    margin-bottom: 50px;
}

.contact-location__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #1d43fe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.contact-location__eyebrow span {
    width: 22px;
    height: 2px;
    background: #1d43fe;
}

.contact-location__heading h2 {
    margin-bottom: 14px;
    color: #172033;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-location__heading h2 strong {
    color: #1d43fe;
}

.contact-location__heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #7a8496;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
MAIN BOX
========================= */

.contact-location__wrapper {
    overflow: hidden;
    border: 1px solid #e9edf4;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(25, 40, 75, 0.08);
}

/* =========================
LEFT INFORMATION
========================= */

.contact-location__info {
    position: relative;
    height: 100%;
    padding: 45px;
    background: #ffffff;
}

.contact-location__info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.contact-location__tag {
    display: inline-flex;
    padding: 7px 13px;
    border: 1px solid #e4e9f2;
    border-radius: 30px;
    color: #6f798c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.contact-location__pin {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(29, 67, 254, 0.08);
    color: #1d43fe;
    font-size: 17px;
}

.contact-location__info h3 {
    margin-bottom: 16px;
    color: #172033;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-location__info h3 span {
    color: #1d43fe;
}

.contact-location__intro {
    max-width: 450px;
    margin-bottom: 30px;
    color: #758096;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
INFO CARDS
========================= */

.contact-location__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-location__card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 1px solid #edf0f5;
    border-radius: 12px;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.contact-location__card:hover {
    border-color: rgba(29, 67, 254, 0.18);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(25, 40, 75, 0.06);
    transform: translateX(4px);
}

.contact-location__card-icon {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(29, 67, 254, 0.08);
    color: #1d43fe;
    font-size: 16px;
}

.contact-location__card span {
    display: block;
    margin-bottom: 4px;
    color: #98a1b1;
    font-size: 9px;
    font-weight: 700;
}

.contact-location__card h5 {
    margin: 0;
    color: #20293a;
    font-size: 14px;
    font-weight: 600;
}

.contact-location__card p {
    margin: 3px 0 0;
    color: #8992a2;
    font-size: 12px;
}

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

.contact-location__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #edf0f5;
}

.contact-location__available {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8992a2;
    font-size: 11px;
}

.contact-location__status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #35b86b;
    box-shadow: 0 0 0 4px rgba(53, 184, 107, 0.1);
}

.contact-location__direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d43fe;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-location__direction:hover {
    color: #1536d5;
}

.contact-location__direction i {
    transition: transform 0.3s ease;
}

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

/* =========================
MAP
========================= */

.contact-location__map {
    position: relative;
    height: 100%;
    min-height: 570px;
    padding: 12px;
    background: #f1f4fa;
    border-left: 1px solid #edf0f5;
}

.contact-location__map-frame {
    width: 100%;
    height: 100%;
    min-height: 546px;
    overflow: hidden;
    border: 1px solid #e4e9f1;
    border-radius: 13px;
    background: #ffffff;
}

.contact-location__map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* =========================
MAP TOP CARD
========================= */

.contact-location__map-top {
    position: absolute;
    z-index: 5;
    top: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #edf0f5;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 25px rgba(25, 40, 75, 0.12);
}

.contact-location__map-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-location__map-title > i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(29, 67, 254, 0.08);
    color: #1d43fe;
}

.contact-location__map-title span {
    display: block;
    margin-bottom: 2px;
    color: #1d43fe;
    font-size: 10px;
    font-weight: 700;
}

.contact-location__map-title h5 {
    margin: 0;
    color: #20293a;
    font-size: 13px;
    font-weight: 700;
}

.contact-location__map-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 20px;
    background: #f1f4ff;
    color: #1d43fe;
    font-size: 10px;
    font-weight: 600;
}

/* =========================
FLOATING LOCATION CARD
========================= */

.contact-location__map-card {
    position: absolute;
    z-index: 6;
    left: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #edf0f5;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 30px rgba(25, 40, 75, 0.15);
}

.contact-location__map-card-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1d43fe;
    color: #ffffff;
    font-size: 12px;
}

.contact-location__map-card span {
    display: block;
    margin-bottom: 2px;
    color: #20293a;
    font-size: 10px;
    font-weight: 700;
}

.contact-location__map-card p {
    margin: 0;
    color: #8992a2;
    font-size: 11px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
    .contact-location__heading h2 {
        font-size: 36px;
    }

    .contact-location__info {
        padding: 40px 35px;
    }

    .contact-location__map {
        min-height: 500px;
        border-top: 1px solid #edf0f5;
        border-left: 0;
    }

    .contact-location__map-frame {
        min-height: 476px;
    }
}

@media (max-width: 575px) {
    .contact-location__heading {
        margin-bottom: 35px;
    }

    .contact-location__heading h2 {
        font-size: 30px;
    }

    .contact-location__heading p {
        font-size: 14px;
    }

    .contact-location__info {
        padding: 30px 22px;
    }

    .contact-location__info h3 {
        font-size: 27px;
    }

    .contact-location__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-location__map {
        min-height: 430px;
        padding: 8px;
    }

    .contact-location__map-frame {
        min-height: 414px;
    }

    .contact-location__map-top {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .contact-location__map-badge {
        display: none;
    }

    .contact-location__map-card {
        left: 20px;
        bottom: 20px;
    }
}
.contact__area--premium {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================
HEADER
========================================= */

.contact-premium__header {
    margin-bottom: 55px;
}

.contact-premium__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #1d43fe;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.contact-premium__eyebrow i {
    font-size: 6px;
}

.contact-premium__header h2 {
    margin-bottom: 15px;
    color: #172033;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-premium__header p {
    max-width: 680px;
    margin: auto;
    color: #7b8597;
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================
MAIN BOX
========================================= */

.contact-premium__box {
    overflow: hidden;
    border: 1px solid #e7ebf2;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(24, 39, 70, 0.08);
}

/* =========================================
INFORMATION PANEL
========================================= */

.contact-premium__information {
    position: relative;
    height: 100%;
    padding: 48px 42px;
    overflow: hidden;
    background: linear-gradient(145deg, #f7f9ff 0%, #f4f7ff 55%, #ffffff 100%);
}

/* Decorative circle */

.contact-premium__information::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: -190px;
    right: -170px;
    border: 1px solid rgba(29, 67, 254, 0.07);
    border-radius: 50%;
}

.contact-premium__information::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    bottom: -140px;
    left: -130px;
    border: 1px solid rgba(29, 67, 254, 0.06);
    border-radius: 50%;
}

/* Header */

.contact-premium__information-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 17px;
}

.contact-premium__small-label {
    display: block;
    margin-bottom: 9px;
    color: #1d43fe;
    font-size: 10px;
    font-weight: 700;
}

.contact-premium__information-header h3 {
    max-width: 330px;
    margin: 0;
    color: #172033;
    font-size: 29px;
    line-height: 1.3;
    font-weight: 700;
}

.contact-premium__header-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;
    background: #1d43fe;
    color: #ffffff;

    box-shadow: 0 8px 20px rgba(29, 67, 254, 0.2);
}

.contact-premium__intro {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin-bottom: 35px;

    color: #758096;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================
CONTACT ITEMS
========================================= */

.contact-premium__contact-item {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 25px 43px 1fr;
    gap: 13px;

    align-items: start;

    padding: 20px 0;
    border-top: 1px solid #e5e9f1;
}

.contact-premium__number {
    padding-top: 12px;
    color: #c1c8d5;
    font-size: 10px;
    font-weight: 700;
}

.contact-premium__contact-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(29, 67, 254, 0.12);
    border-radius: 11px;

    background: #ffffff;
    color: #1d43fe;

    font-size: 15px;

    transition: all 0.3s ease;
}

.contact-premium__contact-item:hover .contact-premium__contact-icon {
    background: #1d43fe;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-premium__contact-content span {
    display: block;
    margin-bottom: 4px;
    color: #9aa3b3;
    font-size: 9px;
    font-weight: 700;
}

.contact-premium__contact-content h4 {
    margin: 0 0 6px;
    color: #20293a;
    font-size: 15px;
    font-weight: 600;
}

.contact-premium__contact-content p {
    margin: 0;
    color: #758096;
    font-size: 12px;
    line-height: 1.7;
}

.contact-premium__contact-content a {
    display: block;
    width: fit-content;
    color: #687387;
    font-size: 12px;
    line-height: 1.8;
    transition: color 0.25s ease;
}

.contact-premium__contact-content a:hover {
    color: #1d43fe;
}

/* =========================================
AVAILABILITY
========================================= */

.contact-premium__availability {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;

    margin-top: 25px;
    padding: 13px 15px;

    border: 1px solid #e3e8f1;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.65);
}

.contact-premium__online {
    width: 9px;
    height: 9px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #35b86b;
    box-shadow: 0 0 0 5px rgba(53, 184, 107, 0.1);
}

.contact-premium__availability strong {
    display: block;
    color: #3b4558;
    font-size: 11px;
    font-weight: 600;
}

.contact-premium__availability p {
    margin: 2px 0 0;
    color: #9aa3b3;
    font-size: 10px;
}

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

.contact-premium__form {
    height: 100%;
    padding: 48px;
    background: #ffffff;
}

.contact-premium__form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 32px;
}

.contact-premium__form-header > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: #1d43fe;
    font-size: 10px;
    font-weight: 700;
}

.contact-premium__form-header h3 {
    margin: 0;
    color: #172033;
    font-size: 30px;
    font-weight: 700;
}

.contact-premium__form-step {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.contact-premium__form-step span {
    color: #1d43fe;
    font-size: 24px;
    font-weight: 700;
}

.contact-premium__form-step small {
    color: #c0c6d1;
    font-size: 10px;
}

/* =========================================
FIELDS
========================================= */

.contact-premium__field {
    margin-bottom: 21px;
}

.contact-premium__field label {
    display: block;
    margin-bottom: 8px;
    color: #30394b;
    font-size: 12px;
    font-weight: 600;
}

.contact-premium__field label span {
    color: #e14d4d;
}

.contact-premium__input,
.contact-premium__textarea {
    position: relative;
}

.contact-premium__input input,
.contact-premium__textarea textarea {
    width: 100%;
    border: 1px solid #e2e7ef;
    border-radius: 9px;
    outline: none;
    background: #fbfcfe;
    color: #263044;
    font-size: 13px;
    transition: all 0.25s ease;
}

.contact-premium__input input {
    height: 52px;
    padding: 0 45px 0 15px;
}

.contact-premium__textarea textarea {
    height: 135px;
    padding: 14px 45px 14px 15px;
    resize: vertical;
    line-height: 1.7;
}

.contact-premium__input i,
.contact-premium__textarea i {
    position: absolute;
    top: 18px;
    right: 16px;
    color: #a7afbd;
    font-size: 13px;
    pointer-events: none;
    transition: color 0.25s ease;
}

.contact-premium__textarea i {
    top: 17px;
}

.contact-premium__input input::placeholder,
.contact-premium__textarea textarea::placeholder {
    color: #a6afbd;
}

.contact-premium__input input:focus,
.contact-premium__textarea textarea:focus {
    border-color: rgba(29, 67, 254, 0.5);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(29, 67, 254, 0.06);
}

.contact-premium__input:focus-within i,
.contact-premium__textarea:focus-within i {
    color: #1d43fe;
}

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

.contact-premium__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 5px;
}

.contact-premium__required {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9aa3b3;
    font-size: 10px;
}

.contact-premium__required i {
    color: #1d43fe;
    font-size: 10px;
}

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

.contact-premium__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 165px;
    height: 52px;
    padding: 0 23px;

    overflow: hidden;

    border: 0;
    border-radius: 9px;

    background: #1d43fe;
    color: #ffffff;

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

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact-premium__button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);

    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.contact-premium__button:hover::before {
    transform: translateX(0);
}

.contact-premium__button span,
.contact-premium__button i {
    position: relative;
    z-index: 2;
}

.contact-premium__button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 67, 254, 0.22);
}

.contact-premium__button i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

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

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .contact__area--premium {
        padding: 80px 0;
    }

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

    .contact-premium__information {
        padding: 40px 35px;
    }

    .contact-premium__form {
        padding: 40px 35px;
    }
}

@media (max-width: 767px) {
    .contact-premium__box {
        border-radius: 16px;
    }

    .contact-premium__information {
        padding: 35px 25px;
    }

    .contact-premium__form {
        padding: 35px 25px;
    }

    .contact-premium__form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-premium__button {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contact__area--premium {
        padding: 65px 0;
    }

    .contact-premium__header {
        margin-bottom: 35px;
    }

    .contact-premium__header h2 {
        font-size: 30px;
    }

    .contact-premium__header p {
        font-size: 13px;
    }

    .contact-premium__information-header h3 {
        font-size: 25px;
    }

    .contact-premium__form-header h3 {
        font-size: 26px;
    }

    .contact-premium__form-step {
        display: none;
    }

    .contact-premium__contact-item {
        grid-template-columns: 22px 40px 1fr;
        gap: 10px;
    }

    .contact-premium__contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-premium__contact-content p {
        font-size: 11px;
    }
}
