/* =========================================================
   FIFTHMAY PREMIUM SAAS CONTACT SECTION
   ========================================================= */

.fifthmay-contact-section{
    position:relative;
    overflow:hidden;
    padding:120px 5%;
    background:#ffffff;
    font-family:'Inter',sans-serif;
}

.fifthmay-contact-section *{
    box-sizing:border-box;
}

.fifthmay-container{
    max-width:1450px;
    margin:auto;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:90px;
    position:relative;
    z-index:5;
}

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

.fifthmay-left-wrapper{
    flex:1.08;
    max-width:760px;
}

.fifthmay-top-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border:1px solid rgba(0,87,255,.08);
    border-radius:100px;
    background:rgba(0,87,255,.03);
    color:#0057ff;
    font-size:13px;
    font-weight:600;
    letter-spacing:.3px;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
    transition:all .35s ease;
}

.fifthmay-top-badge:hover{
    transform:translateY(-2px);
    border-color:rgba(0,87,255,.18);
    background:rgba(0,87,255,.05);
}

.fifthmay-main-title{
    font-size:72px;
    line-height:1.02;
    font-weight:800;
    letter-spacing:-3px;
    color:#0f172a;
    margin-bottom:32px;
}

.fifthmay-main-title span{
    background:linear-gradient(
        135deg,
        #0057ff,
        #4f8cff
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fifthmay-description-wrapper{
    max-width:690px;
}

.fifthmay-description{
    font-size:17px;
    line-height:1.95;
    color:#5b6475;
    margin-bottom:22px;
    font-weight:400;
}

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

.fifthmay-contact-grid{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:45px;
}

.fifthmay-contact-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 24px;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;

    background:
        linear-gradient(
            145deg,
            #07152d,
            #0d2244
        );

    border:1px solid rgba(255,255,255,.05);

    box-shadow:
        0 18px 40px rgba(2,12,27,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.fifthmay-contact-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.20),
            transparent
        );
}

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

    background:
        linear-gradient(
            145deg,
            #07152d,
            #0d2244
        );

    box-shadow:
        0 28px 55px rgba(2,12,27,.14);
}

.fifthmay-icon-wrapper{
    width:56px;
    height:56px;
    min-width:56px;

    border-radius:18px;

    background:
        rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.05);

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

.fifthmay-icon-wrapper i{
    color:#ffffff;
    font-size:18px;
}

.fifthmay-whatsapp-icon{
    background:
        rgba(37,211,102,.14);
}

.fifthmay-email-icon{
    background:
        rgba(255,255,255,.08);
}

.fifthmay-card-content span{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,.62);
    margin-bottom:5px;
    font-weight:500;
}

.fifthmay-card-content h3{
    margin:0;
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    line-height:1.5;
}

/* =========================================================
   ADDRESS CARDS
   ========================================================= */

.fifthmay-address-wrapper{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-top:40px;
}

.fifthmay-address-card{
    position:relative;
    padding:28px 30px;
    border-radius:28px;
    background:#ffffff;
    border:1px solid #edf2f7;
    transition:all .35s ease;
    overflow:hidden;
}

.fifthmay-address-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0,87,255,.18),
            transparent
        );
}

.fifthmay-address-card:hover{
    transform:translateY(-4px);

    box-shadow:
        0 18px 40px rgba(15,23,42,.06);
}

.fifthmay-address-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
}

.fifthmay-address-icon{
    width:54px;
    height:54px;
    border-radius:18px;

    background:
        linear-gradient(
            145deg,
            rgba(0,87,255,.08),
            rgba(79,140,255,.08)
        );

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

.fifthmay-address-icon i{
    color:#0057ff;
    font-size:18px;
}

.fifthmay-uk-icon{
    background:
        linear-gradient(
            145deg,
            rgba(255,0,76,.08),
            rgba(255,0,76,.04)
        );
}

.fifthmay-uk-icon i{
    color:#ff004c;
}

.fifthmay-address-label{
    display:block;
    font-size:13px;
    color:#7b8494;
    margin-bottom:4px;
}

.fifthmay-address-title{
    margin:0;
    font-size:24px;
    color:#0f172a;
    font-weight:700;
}

.fifthmay-address-text{
    margin:0 0 12px;
    font-size:15px;
    line-height:1.9;
    color:#5b6475;
}

/* =========================================================
   RIGHT SIDE FORM
   ========================================================= */

.fifthmay-right-wrapper{
    flex:.85;
    position:sticky;
    top:40px;
}

.fifthmay-form-card{
    position:relative;
    overflow:hidden;
    border-radius:36px;
    padding:48px;

    background:
        linear-gradient(
            145deg,
            #07152d,
            #0f274d
        );

    border:1px solid rgba(255,255,255,.06);

    box-shadow:
        0 40px 100px rgba(2,12,27,.18);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.fifthmay-form-card:hover{
    transform:translateY(-4px);

    background:
        linear-gradient(
            145deg,
            #07152d,
            #0f274d
        );

    box-shadow:
        0 50px 120px rgba(2,12,27,.22);
}

/* =========================================================
   GLOW EFFECTS
   ========================================================= */

.fifthmay-form-card::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(79,140,255,.35),
            transparent 70%
        );

    top:-120px;
    right:-100px;
    filter:blur(10px);
}

.fifthmay-form-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(0,87,255,.25),
            transparent 70%
        );

    bottom:-120px;
    left:-100px;
}

.fifthmay-form-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    color:#ffffff;
    font-size:13px;
    font-weight:600;
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.fifthmay-form-title{
    position:relative;
    z-index:2;
    color:#ffffff;
    font-size:50px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:20px;
}

.fifthmay-form-description{
    position:relative;
    z-index:2;
    color:rgba(255,255,255,.68);
    font-size:16px;
    line-height:1.9;
    margin-bottom:34px;
}

/* =========================================================
   FINAL CONTACT FORM 7 INPUT SYSTEM
   ========================================================= */

.fifthmay-cf7-wrapper{
    position:relative;
    z-index:2;
}

.fifthmay-cf7-wrapper p{
    margin:0 0 18px;
}

.fifthmay-cf7-wrapper label{
    display:block;
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
    letter-spacing:.2px;
}

.fifthmay-cf7-wrapper input:not([type="submit"]),
.fifthmay-cf7-wrapper textarea,
.fifthmay-cf7-wrapper select{

    width:100% !important;

    padding:18px 22px !important;

    border-radius:18px !important;

    border:1.5px solid rgba(255,255,255,.30) !important;

    background:rgba(255,255,255,.10) !important;

    color:#ffffff !important;

    font-size:15px !important;

    font-weight:500 !important;

    line-height:1.5 !important;

    outline:none !important;

    appearance:none !important;
    -webkit-appearance:none !important;

    transition:all .35s ease !important;

    backdrop-filter:blur(14px) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 4px 12px rgba(0,0,0,.06) !important;
}

/* PLACEHOLDER */

.fifthmay-cf7-wrapper input::placeholder,
.fifthmay-cf7-wrapper textarea::placeholder{

    color:rgba(255,255,255,.70) !important;

    opacity:1 !important;
}

/* HOVER */

.fifthmay-cf7-wrapper input:not([type="submit"]):hover,
.fifthmay-cf7-wrapper textarea:hover,
.fifthmay-cf7-wrapper select:hover{

    border:1.5px solid rgba(255,255,255,.45) !important;

    background:rgba(255,255,255,.13) !important;
}

/* FOCUS */

.fifthmay-cf7-wrapper input:not([type="submit"]):focus,
.fifthmay-cf7-wrapper textarea:focus,
.fifthmay-cf7-wrapper select:focus{

    border:1.5px solid rgba(79,140,255,.95) !important;

    background:rgba(255,255,255,.14) !important;

    box-shadow:
        0 0 0 4px rgba(79,140,255,.16) !important;
}

/* TEXTAREA */

.fifthmay-cf7-wrapper textarea{
    min-height:160px !important;
    resize:none !important;
}

/* DROPDOWN */

.fifthmay-cf7-wrapper select{

    cursor:pointer !important;

    color:#ffffff !important;

    background-color:rgba(255,255,255,.10) !important;
}

/* DROPDOWN OPTIONS */

.fifthmay-cf7-wrapper select option{

    background:#07152d !important;

    color:#ffffff !important;
}

/* SUBMIT BUTTON */

.fifthmay-cf7-wrapper input[type="submit"],
.fifthmay-cf7-wrapper .wpcf7-submit{

    width:100% !important;

    padding:18px 22px !important;

    border:none !important;

    border-radius:18px !important;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #dbeafe
        ) !important;

    color:#07152d !important;

    font-size:15px !important;

    font-weight:700 !important;

    cursor:pointer !important;

    transition:all .35s ease !important;

    margin-top:10px !important;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12) !important;
}

.fifthmay-cf7-wrapper input[type="submit"]:hover,
.fifthmay-cf7-wrapper .wpcf7-submit:hover{

    transform:translateY(-3px) !important;

    box-shadow:
        0 20px 40px rgba(0,0,0,.18) !important;
}

/* ERROR */

.fifthmay-cf7-wrapper .wpcf7-not-valid-tip{
    color:#ffb4b4 !important;
    font-size:13px !important;
    margin-top:6px !important;
}

/* RESPONSE */

.fifthmay-cf7-wrapper .wpcf7-response-output{

    margin:20px 0 0 !important;

    padding:14px 18px !important;

    border-radius:14px !important;

    color:#ffffff !important;

    border:none !important;

    background:rgba(255,255,255,.08) !important;
}

/* =========================================================
   BACKGROUND SHAPES
   ========================================================= */

.fifthmay-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    pointer-events:none;
}

.fifthmay-shape-one{
    width:420px;
    height:420px;
    background:rgba(0,87,255,.08);
    top:-180px;
    left:-160px;
}

.fifthmay-shape-two{
    width:500px;
    height:500px;
    background:rgba(79,140,255,.08);
    bottom:-250px;
    right:-220px;
}

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

@media(max-width:1200px){

    .fifthmay-container{
        flex-direction:column;
    }

    .fifthmay-right-wrapper{
        width:100%;
        position:relative;
        top:0;
    }

}

@media(max-width:768px){

    .fifthmay-contact-section{
        padding:90px 24px;
    }

    .fifthmay-main-title{
        font-size:46px;
        letter-spacing:-2px;
    }

    .fifthmay-form-card{
        padding:34px 26px;
        border-radius:28px;
    }

    .fifthmay-form-title{
        font-size:36px;
    }

    .fifthmay-contact-card{
        padding:18px;
        border-radius:20px;
    }

    .fifthmay-address-card{
        padding:24px;
    }

}







/* ===============================
   CF7 CLEAN INPUT UX FIX
   =============================== */

/* TYPED TEXT (WHAT USER WRITES) */
.fifthmay-form-card .wpcf7-form input,
.fifthmay-form-card .wpcf7-form textarea,
.fifthmay-form-card .wpcf7-form select,
.fifthmay-form-card .wpcf7-form-control{

    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    caret-color: #111111 !important;
}

/* PLACEHOLDER TEXT (Enter your full name, etc.) */
.fifthmay-form-card .wpcf7-form input::placeholder,
.fifthmay-form-card .wpcf7-form textarea::placeholder{

    color: rgba(0,0,0,.28) !important;  /* LIGHT GREY */
    opacity: 1 !important;
}

/* SAFARI / CHROME FIX FOR PLACEHOLDER */
.fifthmay-form-card .wpcf7-form input::-webkit-input-placeholder,
.fifthmay-form-card .wpcf7-form textarea::-webkit-input-placeholder{

    color: rgba(0,0,0,.28) !important;
}



