/* =========================================================
   VALUEFORIT CONTACT + FOOTER
   Premium Responsive Design
========================================================= */


/* =========================================================
   CONTACT SECTION
========================================================= */

.vf-contact {

    position: relative;

    padding: 140px 0 130px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 5% 50%,
            rgba(32, 227, 255, .055),
            transparent 30%
        ),

        radial-gradient(
            circle at 95% 30%,
            rgba(62, 247, 164, .04),
            transparent 30%
        ),

        #05080f;

    isolation: isolate;

}


/* =========================================================
   BACKGROUND
========================================================= */

.vf-contact::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -3;

    opacity: .025;

    background-image:

        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

}


.vf-contact-orb {

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: -2;

    opacity: .12;

    animation:
        vfContactOrb 18s ease-in-out infinite alternate;

}


.vf-contact-orb-1 {

    background: #20e3ff;

    left: -300px;

    top: 15%;

}


.vf-contact-orb-2 {

    background: #3ef7a4;

    right: -300px;

    bottom: 5%;

    animation-delay: 5s;

}


@keyframes vfContactOrb {

    0% {

        transform:
            translate3d(0,0,0)
            scale(1);

    }

    100% {

        transform:
            translate3d(90px,-60px,0)
            scale(1.2);

    }

}


/* =========================================================
   CONTACT HEADER
========================================================= */

.vf-contact-header {

    max-width: 800px;

    margin: 0 auto 75px;

    text-align: center;

}


.vf-contact-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--vf-primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

}


.vf-contact-eyebrow::before,
.vf-contact-eyebrow::after {

    content: "";

    width: 30px;

    height: 1px;

    background:
        var(--vf-gradient);

}


.vf-contact-title {

    margin: 0;

    color: #fff;

    font-size:
        clamp(42px, 5vw, 48px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 800;

}


.vf-contact-title span {

    display: block;

    background:
        var(--vf-gradient);

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.vf-contact-intro {

    max-width: 680px;

    margin: 25px auto 0;

    color:
        rgba(255,255,255,.55);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   CONTACT GRID
========================================================= */

.vf-contact-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 80px;

    align-items: stretch;

}


/* =========================================================
   CONTACT INFO
========================================================= */

.vf-contact-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.vf-contact-small-label {

    display: block;

    margin-bottom: 18px;

    color:
        var(--vf-secondary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.vf-contact-info-heading h3 {

    margin: 0 0 18px;

    color: #fff;

    font-size: 25px;

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.vf-contact-info-heading h3 span {

    /* display: block; */

    color:
        var(--vf-primary);

}


.vf-contact-info-heading p {

    max-width: 470px;

    margin: 0 0 35px;

    color:
        rgba(255,255,255,.5);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   CONTACT ITEMS
========================================================= */

.vf-contact-item {

    position: relative;

    display: grid;

    grid-template-columns:
        48px minmax(0,1fr) 25px;

    align-items: center;

    gap: 16px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    color: #fff;

    text-decoration: none;

    transition:
        transform .35s ease;

}


.vf-contact-item:hover {

    transform:
        translateX(7px);

}


.vf-contact-item-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(32,227,255,.18);

    border-radius: 13px;

    color:
        var(--vf-primary);

    background:
        rgba(32,227,255,.045);

    font-size: 17px;

}


.vf-contact-item-content {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.vf-contact-item-content span {

    color:
        rgba(255,255,255,.38);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.3px;

}


.vf-contact-item-content strong {

    color:
        rgba(255,255,255,.83);

    font-size: 13px;

    font-weight: 600;

}


.vf-contact-item-arrow {

    color:
        rgba(255,255,255,.3);

    font-size: 13px;

}


.vf-contact-item-static:hover {

    transform: none;

}


/* =========================================================
   AVAILABILITY
========================================================= */

.vf-contact-availability {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 28px;

    color:
        rgba(255,255,255,.4);

    font-size: 11px;

}


.vf-status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        var(--vf-secondary);

    box-shadow:
        0 0 15px var(--vf-secondary);

    animation:
        vfContactPulse 1.8s ease-in-out infinite;

}


@keyframes vfContactPulse {

    0%,
    100% {

        opacity: .45;

    }

    50% {

        opacity: 1;

    }

}


/* =========================================================
   TECH LINE
========================================================= */

.vf-contact-tech-line {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 35px;

}


.vf-contact-tech-line span {

    display: block;

    height: 2px;

    border-radius: 10px;

    background:
        var(--vf-gradient);

    opacity: .5;

    animation:
        vfTechLine 3s ease-in-out infinite alternate;

}


.vf-contact-tech-line span:nth-child(1) {

    width: 35px;

}


.vf-contact-tech-line span:nth-child(2) {

    width: 10px;

    animation-delay: .2s;

}


.vf-contact-tech-line span:nth-child(3) {

    width: 50px;

    animation-delay: .4s;

}


.vf-contact-tech-line span:nth-child(4) {

    width: 18px;

    animation-delay: .6s;

}


.vf-contact-tech-line span:nth-child(5) {

    width: 30px;

    animation-delay: .8s;

}


@keyframes vfTechLine {

    from {

        opacity: .25;

        transform:
            scaleX(.7);

    }

    to {

        opacity: .8;

        transform:
            scaleX(1);

    }

}


/* =========================================================
   FORM WRAPPER
========================================================= */

.vf-contact-form-wrapper {

    position: relative;

}


.vf-contact-form-glow {

    position: absolute;

    inset: -2px;

    border-radius: 28px;

    background:

        linear-gradient(
            120deg,
            #20e3ff,
            transparent 35%,
            transparent 65%,
            #3ef7a4
        );

    background-size: 200% 200%;

    opacity: .18;

    filter: blur(12px);

    animation:
        vfFormGlow 8s linear infinite;

}


@keyframes vfFormGlow {

    0% {

        background-position:
            0% 50%;

    }

    50% {

        background-position:
            100% 50%;

    }

    100% {

        background-position:
            0% 50%;

    }

}


/* =========================================================
   FORM
========================================================= */

.vf-contact-form {

    position: relative;

    padding: 45px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 26px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    backdrop-filter: blur(22px);

    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 30px 90px rgba(0,0,0,.3);

}


/* =========================================================
   FORM TOP
========================================================= */

.vf-form-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;

}


.vf-form-label {

    display: block;

    margin-bottom: 9px;

    color:
        var(--vf-primary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

}


.vf-form-top h3 {

    margin: 0;

    color: #fff;

    font-size: 27px;

    letter-spacing: -.7px;

}


.vf-form-number {

    color:
        rgba(255,255,255,.12);

    font-size: 34px;

    font-weight: 700;

}


/* =========================================================
   FORM ROW
========================================================= */

.vf-form-row {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 20px;

}


/* =========================================================
   FORM GROUP
========================================================= */

.vf-form-group {

    margin-bottom: 22px;

}


.vf-form-group label {

    display: block;

    margin-bottom: 9px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;

    font-weight: 600;

}


.vf-form-group input,
.vf-form-group select,
.vf-form-group textarea {

    width: 100%;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 12px;

    outline: none;

    background:
        rgba(255,255,255,.035);

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.vf-form-group input,
.vf-form-group select {

    height: 52px;

    padding:
        0 15px;

}


.vf-form-group textarea {

    min-height: 135px;

    padding:
        14px 15px;

    resize: vertical;

}


.vf-form-group input::placeholder,
.vf-form-group textarea::placeholder {

    color:
        rgba(255,255,255,.23);

}


.vf-form-group select {

    appearance: none;

    -webkit-appearance: none;

    background-image:

        linear-gradient(45deg,transparent 50%,#20e3ff 50%),

        linear-gradient(135deg,#20e3ff 50%,transparent 50%);

    background-position:

        calc(100% - 17px) 22px,

        calc(100% - 12px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

}


.vf-form-group select option {

    background:
        #080d15;

    color:
        #fff;

}


.vf-form-group input:focus,
.vf-form-group select:focus,
.vf-form-group textarea:focus {

    border-color:
        rgba(32,227,255,.45);

    background:
        rgba(32,227,255,.025);

    box-shadow:
        0 0 0 3px rgba(32,227,255,.06);

}


/* =========================================================
   FORM BOTTOM
========================================================= */

.vf-form-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 5px;

}


.vf-form-bottom p {

    max-width: 230px;

    margin: 0;

    color:
        rgba(255,255,255,.3);

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.vf-submit-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-width: 165px;

    height: 53px;

    padding:
        0 24px;

    overflow: hidden;

    border: 0;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #20e3ff,
            #3ef7a4
        );

    color: #020509;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 35px rgba(32,227,255,.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;

}


.vf-submit-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 60%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.6),
            transparent
        );

    transform:
        skewX(-20deg);

    animation:
        vfSubmitShimmer 4s ease-in-out infinite;

}


@keyframes vfSubmitShimmer {

    0%,
    55% {

        left: -100%;

    }

    75%,
    100% {

        left: 150%;

    }

}


.vf-submit-btn i {

    position: relative;

    transition:
        transform .3s ease;

}


.vf-submit-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 16px 45px rgba(32,227,255,.28);

}


.vf-submit-btn:hover i {

    transform:
        translate(3px,-3px);

}


/* =========================================================
   FOOTER
========================================================= */

.vf-footer {

    position: relative;

    padding:
        90px 0 25px;

    overflow: hidden;

    background:
        #03060b;

    border-top:
        1px solid rgba(255,255,255,.06);

}


.vf-footer-glow {

    position: absolute;

    width: 500px;

    height: 300px;

    left: 50%;

    top: -250px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        rgba(32,227,255,.08);

    filter: blur(100px);

    pointer-events: none;

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.vf-footer-main {

    display: grid;

    grid-template-columns:
        1.6fr
        .7fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 65px;

}


/* =========================================================
   FOOTER BRAND
========================================================= */

.vf-footer-logo {

    display: inline-block;

    margin-bottom: 22px;

}


.vf-footer-logo img {

    display: block;

    max-width: 190px;

    max-height: 60px;

    width: auto;

    height: auto;

}


.vf-footer-brand p {

    max-width: 380px;

    margin: 0;

    color:
        rgba(255,255,255,.4);

    font-size: 13px;

    line-height: 1.8;

}


.vf-footer-status {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    color:
        rgba(255,255,255,.32);

    font-size: 10px;

}


.vf-footer-status span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background:
        var(--vf-secondary);

    box-shadow:
        0 0 12px var(--vf-secondary);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.vf-footer-column h4 {

    margin: 5px 0 20px;

    color:
        rgba(255,255,255,.85);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.vf-footer-column ul {

    list-style: none;

    margin: 0;

    padding: 0;

}


.vf-footer-column li {

    margin-bottom: 12px;

}


.vf-footer-column a {

    color:
        rgba(255,255,255,.38);

    text-decoration: none;

    font-size: 12px;

    transition:
        color .3s ease,
        transform .3s ease;

}


.vf-footer-column a:hover {

    color:
        var(--vf-primary);

}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.vf-footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.vf-footer-contact > a {

    margin-bottom: 13px;

    color:
        rgba(255,255,255,.5);

}


.vf-footer-contact > span {

    color:
        rgba(255,255,255,.32);

    font-size: 11px;

}


/* =========================================================
   SOCIALS
========================================================= */

.vf-footer-socials {

    display: flex;

    gap: 8px;

    margin-top: 20px;

}


.vf-footer-socials a {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 10px;

    background:
        rgba(255,255,255,.025);

    color:
        rgba(255,255,255,.45);

    font-size: 13px;

    transition:
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;

}


.vf-footer-socials a:hover {

    color:
        var(--vf-primary);

    border-color:
        rgba(32,227,255,.3);

    transform:
        translateY(-3px);

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.vf-footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.25);

    font-size: 10px;

}


.vf-footer-legal {

    display: flex;

    gap: 25px;

}


.vf-footer-legal a {

    color:
        rgba(255,255,255,.25);

    text-decoration: none;

    transition:
        color .3s ease;

}


.vf-footer-legal a:hover {

    color:
        rgba(255,255,255,.7);

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width: 991px) {

    .vf-contact {

        padding:
            110px 0;

    }


    .vf-contact-grid {

        grid-template-columns:
            1fr;

        gap: 60px;

    }


    .vf-contact-info {

        max-width: 650px;

        margin: auto;

        width: 100%;

    }


    .vf-contact-form {

        padding: 35px;

    }


    .vf-footer-main {

        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 45px;

    }


    .vf-footer-brand {

        grid-column:
            1 / -1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 576px) {

    .vf-contact {

        padding:
            85px 0;

    }


    .vf-contact-header {

        margin-bottom: 50px;

    }


    .vf-contact-eyebrow {

        font-size: 8px;

        letter-spacing: 2px;

    }


    .vf-contact-title {

        font-size: 30px;

        letter-spacing: -1.7px;

    }


    .vf-contact-intro {

        font-size: 14px;

        line-height: 1.7;

    }


    /* -----------------------------------------------------
       INFO
    ----------------------------------------------------- */

    .vf-contact-info-heading h3 {

        font-size: 20px;

        letter-spacing: -1px;

    }


    .vf-contact-info-heading p {

        font-size: 13px;

    }


    .vf-contact-item {

        grid-template-columns:
            42px minmax(0,1fr) 20px;

        gap: 12px;

        padding: 15px 0;

    }


    .vf-contact-item-icon {

        width: 39px;

        height: 39px;

        border-radius: 11px;

        font-size: 15px;

    }


    .vf-contact-item-content strong {

        font-size: 12px;

    }


    /* -----------------------------------------------------
       FORM
    ----------------------------------------------------- */

    .vf-contact-form-wrapper {

        width: 100%;

    }


    .vf-contact-form {

        padding:
            27px 20px;

        border-radius: 20px;

    }


    .vf-form-top {

        margin-bottom: 27px;

    }


    .vf-form-top h3 {

        font-size: 23px;

    }


    .vf-form-number {

        font-size: 27px;

    }


    .vf-form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .vf-form-group {

        margin-bottom: 18px;

    }


    .vf-form-group input,
    .vf-form-group select {

        height: 49px;

    }


    .vf-form-group textarea {

        min-height: 120px;

    }


    .vf-form-bottom {

        flex-direction: column;

        align-items: stretch;

    }


    .vf-form-bottom p {

        max-width: none;

    }


    .vf-submit-btn {

        width: 100%;

        height: 52px;

    }


    /* -----------------------------------------------------
       FOOTER
    ----------------------------------------------------- */

    .vf-footer {

        padding:
            65px 0 20px;

    }


    .vf-footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 40px 25px;

        padding-bottom: 45px;

    }


    .vf-footer-brand {

        grid-column:
            1 / -1;

    }


    .vf-footer-logo img {

        max-width: 165px;

        max-height: 52px;

    }


    .vf-footer-brand p {

        font-size: 12px;

    }


    .vf-footer-column h4 {

        margin-bottom: 16px;

    }


    .vf-footer-column a {

        font-size: 11px;

    }


    .vf-footer-contact {

        grid-column:
            1 / -1;

    }


    .vf-footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

        line-height: 1.6;

    }


    .vf-footer-legal {

        flex-wrap: wrap;

        gap: 15px;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media(max-width: 380px) {

    .vf-contact-title {

        font-size: 28px;

    }


    .vf-contact-form {

        padding:
            24px 16px;

    }


    .vf-footer-main {

        gap: 35px 18px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion: reduce) {

    .vf-contact-orb,
    .vf-contact-form-glow,
    .vf-status-dot,
    .vf-contact-tech-line span,
    .vf-submit-btn::before {

        animation: none !important;

    }

}

/* =========================================================
   VALUEFORIT WHATSAPP FLOATING BUTTON
========================================================= */

.vf-whatsapp-float {

    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 6px 7px 6px 18px;

    border-radius: 50px;

    background: rgba(5, 12, 15, .88);

    border: 1px solid rgba(62, 247, 164, .25);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 10px 35px rgba(0,0,0,.35),
        0 0 25px rgba(62,247,164,.08);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


/* Text */

.vf-whatsapp-text {

    color:
        rgba(255,255,255,.75);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .2px;

    white-space: nowrap;

}


/* Icon */

.vf-whatsapp-icon {

    position: relative;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #25D366,
            #12a852
        );

    color: #fff;

    font-size: 22px;

    box-shadow:
        0 8px 25px rgba(37,211,102,.28);

}


/* Pulse */

.vf-whatsapp-pulse {

    position: absolute;

    right: 8px;
    top: 8px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border:
        1px solid rgba(37,211,102,.5);

    animation:
        vfWhatsappPulse 2.4s ease-out infinite;

    pointer-events: none;

}


@keyframes vfWhatsappPulse {

    0% {

        transform: scale(.8);

        opacity: .8;

    }

    70% {

        transform: scale(1.45);

        opacity: 0;

    }

    100% {

        transform: scale(1.45);

        opacity: 0;

    }

}


/* Desktop interaction */

.vf-whatsapp-float:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(62,247,164,.55);

    box-shadow:
        0 15px 45px rgba(0,0,0,.4),
        0 0 35px rgba(37,211,102,.15);

}


.vf-whatsapp-float:hover
.vf-whatsapp-icon {

    box-shadow:
        0 8px 35px rgba(37,211,102,.45);

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:576px) {

    .vf-whatsapp-float {

        right: 16px;
        bottom: 18px;

        width: 56px;
        height: 56px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;

        background:
            rgba(5,12,15,.9);

    }


    .vf-whatsapp-text {

        display: none;

    }


    .vf-whatsapp-icon {

        width: 48px;
        height: 48px;

        font-size: 21px;

    }


    .vf-whatsapp-pulse {

        right: 4px;
        top: 4px;

        width: 48px;
        height: 48px;

    }

}

/* =========================================================
VALUEFORIT ALERTS
========================================================= */

.vf-alert {
position: relative;


display: flex;
align-items: flex-start;
gap: 14px;

width: 100%;

padding: 16px 52px 16px 16px;
margin-bottom: 22px;

background: rgba(8, 17, 31, 0.90);

border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 14px;

backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);

box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.25);

animation: vfAlertIn 0.4s ease forwards;


}

/* =========================================================
LEFT ACCENT
========================================================= */

.vf-alert-success::before,
.vf-alert-error::before {
content: "";


position: absolute;

left: 0;
top: 14px;
bottom: 14px;

width: 3px;

border-radius: 0 4px 4px 0;


}

.vf-alert-success::before {
background: linear-gradient(
180deg,
#00e5ff,
#3b82f6,
#22c55e
);
}

.vf-alert-error::before {
background: linear-gradient(
180deg,
#ff5252,
#ff4081
);
}

/* =========================================================
ICON
========================================================= */

.vf-alert-icon {
flex: 0 0 36px;


width: 36px;
height: 36px;

display: flex;
align-items: center;
justify-content: center;

border-radius: 50%;


}

.vf-alert-icon svg {
width: 18px;
height: 18px;


fill: none;
stroke: currentColor;

stroke-width: 2.5;
stroke-linecap: round;
stroke-linejoin: round;


}

/* Success icon */

.vf-alert-success .vf-alert-icon {
color: #00e5ff;


background: rgba(0, 229, 255, 0.10);

border: 1px solid rgba(0, 229, 255, 0.22);

box-shadow:
    0 0 18px rgba(0, 229, 255, 0.12);


}

/* Error icon */

.vf-alert-error .vf-alert-icon {
color: #ff6b81;


background: rgba(255, 82, 82, 0.10);

border: 1px solid rgba(255, 82, 82, 0.22);

box-shadow:
    0 0 18px rgba(255, 82, 82, 0.10);


}

/* =========================================================
CONTENT
========================================================= */

.vf-alert-content {
display: flex;
flex-direction: column;


min-width: 0;

padding-top: 1px;


}

.vf-alert-title {
margin-bottom: 3px;


color: #ffffff;

font-size: 14px;
font-weight: 700;
line-height: 1.4;


}

.vf-alert-message {
color: #b8c4d4;


font-size: 13px;
line-height: 1.6;


}

/* =========================================================
ERROR LIST
========================================================= */

.vf-alert-errors {
margin: 4px 0 0;


padding-left: 18px;

color: #b8c4d4;

font-size: 13px;
line-height: 1.7;


}

.vf-alert-errors li {
padding-left: 2px;
}

/* =========================================================
CLOSE BUTTON
========================================================= */

.vf-alert-close {
position: absolute;


top: 50%;
right: 14px;

width: 30px;
height: 30px;

display: flex;
align-items: center;
justify-content: center;

padding: 0;

transform: translateY(-50%);

border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 8px;

background: rgba(255, 255, 255, 0.04);

color: #7f8da3;

cursor: pointer;

transition: all 0.25s ease;


}

.vf-alert-close svg {
width: 15px;
height: 15px;


fill: none;
stroke: currentColor;

stroke-width: 2;
stroke-linecap: round;


}

/* Hover */

.vf-alert-close:hover {
color: #ffffff;


background: rgba(255, 255, 255, 0.08);

border-color: rgba(255, 255, 255, 0.16);

transform: translateY(-50%) rotate(90deg);


}

/* =========================================================
ANIMATION
========================================================= */

@keyframes vfAlertIn {


from {
    opacity: 0;
    transform: translateY(-8px);
}

to {
    opacity: 1;
    transform: translateY(0);
}


}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 576px) {


.vf-alert {
    gap: 11px;

    padding: 14px 44px 14px 14px;

    border-radius: 12px;
}

.vf-alert-icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;
}

.vf-alert-icon svg {
    width: 16px;
    height: 16px;
}

.vf-alert-title {
    font-size: 13px;
}

.vf-alert-message,
.vf-alert-errors {
    font-size: 12px;
}

.vf-alert-close {
    right: 10px;

    width: 27px;
    height: 27px;
}

.vf-alert-close svg {
    width: 13px;
    height: 13px;
}


}
