/* =========================================================
   MEDLIFY WOW CONTACT SECTION
========================================================= */

.wow-contact-section {

    position: relative;

    width: 100%;

    min-height: 650px;

    padding: 90px 25px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        #080808;

}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.wow-contact-bg-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(80px);

}


.glow-one {

    width: 420px;

    height: 420px;

    left: -150px;

    top: 100px;

    background:
        rgba(237, 28, 36, .20);

}


.glow-two {

    width: 350px;

    height: 350px;

    right: -100px;

    bottom: -100px;

    background:
        rgba(255, 180, 0, .12);

}


/* =========================================================
   CONTAINER
========================================================= */

.wow-contact-container {

    position: relative;

    z-index: 5;

    width: min(1120px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        45% 55%;

    align-items: center;

    gap: 50px;

}


/* =========================================================
   LEFT CONTENT
========================================================= */

.wow-contact-content {

    padding-left: 20px;

}


.wow-contact-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff3139;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.wow-contact-label::before {

    content: "";

    width: 28px;

    height: 2px;

    background: #ff3139;

}


.wow-contact-content h2 {

    margin: 18px 0;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 76px);

    line-height: .94;

    font-weight: 900;

    letter-spacing: -4px;

}


.wow-contact-content h2 span {

    color: #ff1e26;

}


.wow-contact-content p {

    max-width: 400px;

    margin: 0;

    color: #898989;

    font-size: 15px;

    line-height: 1.7;

}


.wow-contact-line {

    width: 75px;

    height: 4px;

    margin-top: 28px;

    background:
        linear-gradient(
            90deg,
            #ff1e26,
            #ffd000
        );

}


.wow-contact-status {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 30px;

    color: #777;

    font-size: 11px;

}


.status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #36e77b;

    box-shadow:
        0 0 12px #36e77b;

    animation:
        statusPulse 1.6s infinite;

}


@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.65);
    }

}


/* =========================================================
   FORM CARD
========================================================= */

.wow-form-card {

    position: relative;

    padding: 42px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.025)
        );

    border: 1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.55);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    overflow: hidden;

}


.wow-form-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -80px;

    top: -80px;

    border-radius: 50%;

    background:
        rgba(255, 28, 36, .15);

    filter: blur(35px);

}


.wow-form-card::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 80px;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #ff1e26,
            #ffd000
        );

}


/* =========================================================
   FORM TOP
========================================================= */

.wow-form-top {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 32px;

}


.wow-form-top > span {

    color: #888;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

}


.wow-form-number {

    color: #333;

    font-size: 30px;

    font-weight: 900;

}


/* =========================================================
   FIELD
========================================================= */

.wow-field {

    position: relative;

    z-index: 2;

    margin-bottom: 22px;

}


.wow-field label {

    display: block;

    margin-bottom: 8px;

    color: #777;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.wow-input {

    position: relative;

    display: flex;

    align-items: center;

    height: 56px;

    padding: 0 17px;

    border: 1px solid
        rgba(255,255,255,.14);

    border-radius: 12px;

    background:
        rgba(0,0,0,.32);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;

}


.wow-input::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #ff1e26,
            #ffd000
        );

    transition:
        width .4s ease;

}


.wow-input:focus-within {

    border-color:
        rgba(255,40,45,.6);

    box-shadow:
        0 0 25px
        rgba(255,25,35,.08);

    transform:
        translateY(-2px);

}


.wow-input:focus-within::after {

    width: 100%;

}


.wow-input > i:first-child {

    width: 30px;

    color: #777;

    font-size: 13px;

    transition:
        color .3s ease;

}


.wow-input:focus-within > i:first-child {

    color: #ff3139;

}


.wow-input input,
.wow-input select {

    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: inherit;

    font-size: 13px;

}


.wow-input input::placeholder {

    color: #555;

}


.wow-input select {

    appearance: none;

    cursor: pointer;

}


.wow-input select option {

    color: #111;

    background: #fff;

}


.select-arrow {

    width: auto !important;

    color: #666 !important;

    font-size: 10px !important;

}


/* =========================================================
   SEND BUTTON
========================================================= */

.wow-send-button {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 58px;

    margin-top: 8px;

    padding: 5px 6px 5px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    border-radius: 14px;

    cursor: pointer;

    color: #fff;

    background:
        linear-gradient(
            100deg,
            #e71922,
            #ff3139
        );

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.wow-send-button::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform:
        skewX(-20deg);

}


.wow-send-button:hover::before {

    animation:
        sendShine .8s ease;

}


@keyframes sendShine {

    from {
        left: -100%;
    }

    to {
        left: 130%;
    }

}


.wow-send-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(237,28,36,.28);

}


.send-circle {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: #111;

    background: #fff;

}


.send-circle i {

    transition:
        transform .3s ease;

}


.wow-send-button:hover
.send-circle i {

    transform:
        translateX(4px);

}


/* =========================================================
   FORM FOOTER
========================================================= */

.wow-form-footer {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 20px;

    color: #555;

    font-size: 9px;

}


.wow-form-footer i {

    color: #555;

}


/* =========================================================
   SUCCESS OVERLAY
========================================================= */

.success-overlay {

    position: fixed;

    z-index: 99999;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,.78);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;

}


.success-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   POPUP
========================================================= */

.success-popup {

    position: relative;

    width: min(430px, 100%);

    padding: 42px 35px 35px;

    text-align: center;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #080808
        );

    border: 1px solid
        rgba(255,255,255,.12);

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.65);

    transform:
        translateY(25px)
        scale(.92);

    transition:
        transform .45s
        cubic-bezier(.22,1,.36,1);

}


.success-overlay.active
.success-popup {

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   CLOSE
========================================================= */

.success-close {

    position: absolute;

    top: 15px;

    right: 18px;

    width: 30px;

    height: 30px;

    border: none;

    background: transparent;

    color: #777;

    font-size: 24px;

    cursor: pointer;

}


/* =========================================================
   SUCCESS ICON
========================================================= */

.success-icon {

    position: relative;

    width: 72px;

    height: 72px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(48,225,120,.08);

    border: 1px solid
        rgba(48,225,120,.35);

    color: #36e77b;

    font-size: 28px;

    box-shadow:
        0 0 35px
        rgba(48,225,120,.12);

}


.success-icon::after {

    content: "";

    position: absolute;

    inset: -8px;

    border: 1px solid
        rgba(48,225,120,.12);

    border-radius: 50%;

    animation:
        successRing 1.8s infinite;

}


@keyframes successRing {

    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


/* =========================================================
   POPUP TEXT
========================================================= */

.success-small {

    color: #36e77b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.success-popup h3 {

    margin: 10px 0;

    color: #fff;

    font-size: 32px;

    line-height: 1;

    font-weight: 900;

}


.success-popup > p {

    max-width: 300px;

    margin: 0 auto 25px;

    color: #777;

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   TOKEN
========================================================= */

.token-box {

    padding: 18px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(237,28,36,.12),
            rgba(255,205,0,.05)
        );

    border: 1px solid
        rgba(237,28,36,.25);

}


.token-box span {

    display: block;

    color: #777;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.token-box strong {

    display: block;

    margin-top: 6px;

    color: #ff3139;

    font-size: 30px;

    letter-spacing: 2px;

}


/* =========================================================
   MONTHLY COUNT
========================================================= */

.token-count {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 14px;

    color: #555;

    font-size: 9px;

}


.token-dot {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #36e77b;

}


/* =========================================================
   DONE
========================================================= */

.success-done {

    width: 130px;

    height: 40px;

    margin-top: 22px;

    border: 1px solid
        rgba(255,255,255,.15);

    border-radius: 25px;

    background: #fff;

    color: #111;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform .25s ease;

}


.success-done:hover {

    transform:
        translateY(-2px);

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .wow-contact-section {

        padding: 60px 15px;

    }


    .wow-contact-container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .wow-contact-content {

        padding-left: 0;

        text-align: center;

    }


    .wow-contact-label {

        justify-content: center;

    }


    .wow-contact-content h2 {

        letter-spacing: -2px;

    }


    .wow-contact-content p {

        margin: auto;

    }


    .wow-contact-line {

        margin-left: auto;

        margin-right: auto;

    }


    .wow-contact-status {

        justify-content: center;

    }


    .wow-form-card {

        padding: 30px 22px;

    }

}


@media (max-width: 450px) {

    .wow-contact-content h2 {

        font-size: 45px;

    }


    .wow-form-card {

        border-radius: 18px;

        padding: 25px 18px;

    }


    .success-popup {

        padding: 35px 22px 25px;

    }


    .success-popup h3 {

        font-size: 27px;

    }

}