/* =========================
   CONTACT HERO SECTION
========================= */

.contact-hero{
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* VIDEO */

.contact-bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* OVERLAY */

.contact-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

/* CONTAINER */
.contact-hero .container{
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
}

/* WRAPPER */

.contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */


/* FORM */

.contact-form-box{
    width: 450px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 25px;
    padding: 40px;
}

.contact-form-box h2{
    color: #fff;
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* INPUTS */

.form-group{
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea{
    width: 100%;
    border: none;
    outline: none;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 15px;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: rgba(255,255,255,0.75);
}

/* BUTTON */

.contact-form-box button{
    width: 100%;
    border: none;
    background: linear-gradient(90deg,#ff8c00,#1c9b45);
    color: #fff;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover{
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .contact-wrapper{
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-left{
        width: 100%;
    }

    .contact-form-box{
        width: 100%;
    }

    .contact-left h1{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .contact-hero{
        min-height: auto;
        padding: 80px 0;
    }

    .contact-left h1{
        font-size: 32px;
    }

    .contact-left p{
        font-size: 15px;
    }

    .contact-form-box{
        padding: 25px;
        border-radius: 20px;
    }

    .contact-form-box h2{
        font-size: 26px;
    }

}
/* =========================
   SUPPORT SECTION
========================= */

.kb-support-section{
    padding:100px 0;
    background:#f9fbf6;
    overflow:hidden;
}

.kb-support-content{
    padding-right:40px;
}

.kb-subtitle{
    display:inline-block;
    font-size:18px;
    font-weight:600;
    color:#ff7b00;
    margin-bottom:18px;
}

.kb-title{
    font-size:40px;
    line-height:1.3;
    font-weight:700;
    color:#1d3b1f;
    margin-bottom:25px;
}

.kb-desc{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

.kb-contact-list{
    margin-top:35px;
}

.kb-contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.kb-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:16px;
    background:linear-gradient(135deg,#2f8f2f,#ff8c00);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.kb-contact-item h6{
    font-size:20px;
    font-weight:700;
    color:#1d3b1f;
    margin-bottom:6px;
}

.kb-contact-item p{
    margin:0;
    font-size:16px;
    color:#666;
    line-height:1.7;
}

.kb-support-image{
    position:relative;
    text-align:center;
}

.kb-support-image img{
    width:100%;
    max-width:560px;
    border-radius:30px;
    transition:0.4s ease;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .kb-title{
        font-size:36px;
    }

}

@media(max-width:991px){

    .kb-support-section{
        padding:80px 0;
    }

    .kb-support-content{
        padding-right:0;
        text-align:center;
    }

    .kb-title{
        font-size:32px;
    }

    .kb-contact-item{
        justify-content:center;
        text-align:left;
    }

    .kb-support-image{
        margin-top:40px;
    }

}

@media(max-width:767px){

    .kb-title{
        font-size:28px;
    }

    .kb-desc{
        font-size:15px;
        line-height:1.8;
    }

    .kb-contact-item{
        gap:14px;
    }

    .kb-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:18px;
    }

    .kb-contact-item h6{
        font-size:17px;
    }

    .kb-contact-item p{
        font-size:14px;
    }

}

@media(max-width:575px){

    .kb-support-section{
        padding:70px 0;
    }

    .kb-subtitle{
        font-size:15px;
    }

    .kb-title{
        font-size:26px;
    }

    .kb-desc{
        font-size:14px;
    }

    .kb-contact-item{
        flex-direction:row;
        align-items:flex-start;
    }

}