.contact-page{
    padding-top: 140px;
    padding-bottom: 100px;
    background: #081126;
    min-height: 100vh;
}

/* =========================
   WRAPPER
========================= */
.contact-wrapper{
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    gap: 60px;
    align-items: start;
}

/* =========================
   TITLES
========================= */
.contact-left .section-title{
    margin-bottom: 40px;
}

.contact-left .section-title span{
    color: #4fc667;
    font-weight: 700;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-left .section-title h2{
    color: white;
    font-size: 4rem;
    line-height: 1.1;

    margin-bottom: 20px;
}

.contact-left .section-title p{
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
}

/* =========================
   FORM
========================= */
.contact-form{
    background: white;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* =========================
   GRID
========================= */
.form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* =========================
   INPUTS
========================= */
.contact-form input,
.contact-form textarea{
    width: 100%;
    border: 1px solid #dbe2ef;
    border-radius: 18px;
    padding: 18px 22px;
    font-size: 16px;
    font-family: 'Outfit';
    transition: .3s ease;
    background: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #4fc667;
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(79,198,103,.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #7b8794;
}

/* =========================
   TEXTAREA
========================= */
.contact-form textarea{
    min-height: 180px;
    resize: none;
    margin-bottom: 25px;
}

/* =========================
   PRIVACY
========================= */
.privacy-box{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 30px;
}

.privacy-box input{
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.privacy-box label{
    color: #081126;
    line-height: 1.7;
    font-size: 15px;
}

.privacy-box a{
    color: #4fc667;
    font-weight: 700;
    text-decoration: none;}

/* =========================
   BUTTON
========================= */
.submit-btn{
    width: 100%;
    height: 68px;
    border: none;
    border-radius: 18px;
    background: #4fc667;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease;
    position: relative;
}

.submit-btn:hover{
    background: #39b653;
    transform: translateY(-2px);
}

/* =========================
   SPINNER
========================= */
.spinner{
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,.4);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    margin-left: 12px;
    vertical-align: middle;
}

@keyframes spin{
    100%{

        transform: rotate(360deg);
    }
}

/* =========================
   MESSAGE
========================= */
.form-message{
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
}

.form-message.success{
    color: #35c46b;}

.form-message.error{
    color: #ff5f5f;
}

/* =========================
   RIGHT SIDE
========================= */
.contact-right{
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 90px;
}

/* =========================
   CONTACT CARD
========================= */
.contact-card{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: .3s ease;
}

.contact-card:hover{
    transform: translateY(-3px);
    background: rgba(255,255,255,.08);
}

.contact-card i{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(79,198,103,.15);
    color: #4fc667;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card h4{
    color: white;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p{
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 1100px){
    .contact-wrapper{
        grid-template-columns: 1fr;
    }

    .contact-right{
        padding-top: 0;
    }
}

@media(max-width: 768px){
    .contact-page{
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .contact-left .section-title h2{
        font-size: 2.8rem;
    }

    .contact-form{
        padding: 30px 24px;
    }

    .form-grid{
        grid-template-columns: 1fr;
    }

    .contact-card{
        padding: 20px;
    }
}