/* ==========================================
   RSSS PREMIUM CONTACT PAGE
========================================== */

.rsss-contact-page{
    padding:0 0 80px;
    background:#f8fbff;
}

.rsss-contact-hero{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    text-align:center;
    padding:90px 20px 140px;
    position:relative;
    overflow:hidden;
}

.rsss-contact-hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-150px;
    right:-120px;
}

.rsss-contact-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    bottom:-160px;
    left:-100px;
}

.rsss-contact-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    margin-bottom:22px;
}

.rsss-contact-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.2;
}

.rsss-contact-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.9;
    line-height:1.8;
}
/*==============================
    MAIN WRAPPER
==============================*/

.rsss-contact-wrapper{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:35px;
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.rsss-contact-form-card,
.rsss-info-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid rgba(37,99,235,.08);
}

.rsss-card-heading span,
.rsss-info-badge{
    display:inline-block;
    color:#2563eb;
    background:#eff6ff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.rsss-card-heading h2,
.rsss-info-card h2{
    font-size:32px;
    color:#0f172a;
    margin-bottom:12px;
}

.rsss-card-heading p,
.rsss-info-card p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}
/*==============================
        FORM
==============================*/

.rsss-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.rsss-form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:22px;
}

.rsss-form-group label{
    font-size:14px;
    font-weight:600;
    color:#334155;
    margin-bottom:8px;
}

.rsss-form-group input,
.rsss-form-group textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #dbe4ee;
    border-radius:14px;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.rsss-form-group input:focus,
.rsss-form-group textarea:focus{
    border-color:#2563eb;
    outline:none;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.rsss-form-group textarea{
    resize:none;
}
/*==================================
        SUBMIT BUTTON
==================================*/

.rsss-contact-btn{
    width:100%;
    border:none;
    outline:none;
    cursor:pointer;
    padding:16px 24px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-size:16px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.rsss-contact-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(37,99,235,.35);
}

/*==================================
        CONTACT INFO
==================================*/

.rsss-info-item{
    padding:18px 0;
    border-bottom:1px solid #eef2f7;
}

.rsss-info-item:last-child{
    border-bottom:none;
}

.rsss-info-item h4{
    color:#0f172a;
    font-size:17px;
    margin-bottom:10px;
}

.rsss-info-item p{
    margin:6px 0;
    color:#64748b;
    line-height:1.7;
}

/*==================================
        ACTION BUTTONS
==================================*/

.rsss-contact-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.rsss-action-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.rsss-action-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}