.athena-recovery{
    position:relative;
    padding:150px 8%;
    background:url("https://toprehabinindia.com/asset/luxus/2150229932.jpg") center/cover no-repeat;
}

.athena-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45); /* lighter like screenshot */
}

.athena-container{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:100px;
}

/* LEFT SIDE */

.athena-left{
    width:55%;
    color:#fff;
}

.athena-left h2{
    font-family: 'Cinzel', serif;
    font-size:46px;
    font-weight:600;
    margin-bottom:50px;
}

.athena-item{
    display:flex;
    gap:18px;
    margin-bottom:40px;
}

.arrow{
    font-size:22px;
    margin-top:5px;
}

.athena-item h4{
    font-family: 'Cinzel', serif;
    font-size:18px;
    margin-bottom:10px;
    font-weight:600;
}

.athena-item p{
    font-family: 'Cinzel', serif;
    font-size:15px;
    line-height:1.8;
    color:#e6e6e6;
}

/* RIGHT FORM */

.athena-form{
    width:42%;
    background:#efece6;
    padding:55px 50px;
    border-radius:14px;
    box-shadow:0 30px 70px rgba(0,0,0,0.35);
}

.athena-form h3{
    font-family: 'Cinzel', serif;
    text-align:center;
    font-size:28px;
    margin-bottom:15px;
}

.divider{
    height:3px;
    width:80%;
    background:#1f3b4d;
    margin:0 auto 30px auto;
}

.athena-form form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.row{
    display:flex;
    gap:14px;
}

.row.three input{
    flex:1;
}

.athena-form input,
.athena-form textarea{
    padding:14px;
    border:1px solid #d6d6d6;
    border-radius:4px;
    font-size:14px;
    width:100%;
    background:#fff;
}

.athena-form textarea{
    height:110px;
    resize:none;
}

.athena-form button{
    background:#b08a32;
    color:#fff;
    padding:15px;
    border:none;
    font-size:15px;
    cursor:pointer;
    transition:0.3s;
}

.athena-form button:hover{
    background:#162a38;
}

.privacy{
    font-size:12px;
    text-align:center;
    margin-top:18px;
    color:#666;
}

/* RESPONSIVE */

@media(max-width:992px){
    .athena-container{
        flex-direction:column;
    }
    .athena-left,
    .athena-form{
        width:100%;
    }
}


/* ===============================
   TABLET (Below 1200px)
================================= */
@media(max-width:1200px){

    .athena-container{
        gap:60px;
    }

    .athena-left h2{
        font-size:38px;
    }

    .athena-form{
        padding:45px 35px;
    }
}

/* ===============================
   SMALL TABLET (Below 992px)
================================= */
@media(max-width:992px){

    .athena-recovery{
        padding:100px 6%;
    }

    .athena-container{
        flex-direction:column;
        gap:60px;
    }

    .athena-left,
    .athena-form{
        width:100%;
    }

    .athena-left h2{
        font-size:34px;
        text-align:center;
    }

    .athena-item{
        margin-bottom:30px;
    }

    .athena-form{
        padding:40px 30px;
    }
}

/* ===============================
   MOBILE (Below 768px)
================================= */
@media(max-width:768px){

    .athena-recovery{
        padding:80px 5%;
    }

    .athena-left h2{
        font-size:28px;
        margin-bottom:30px;
    }

    .athena-item{
        flex-direction:row;
        gap:12px;
    }

    .athena-item h4{
        font-size:16px;
    }

    .athena-item p{
        font-size:14px;
        line-height:1.6;
    }

    .athena-form{
        padding:30px 20px;
        border-radius:10px;
    }

    .athena-form h3{
        font-size:22px;
    }

    .divider{
        width:60%;
        margin-bottom:20px;
    }

    /* Make all rows stack */
    .row{
        flex-direction:column;
        gap:10px;
    }

    .row.three{
        flex-direction:column;
    }

    .athena-form input,
    .athena-form textarea{
        font-size:14px;
        padding:12px;
    }

    .athena-form button{
        padding:14px;
    }
}

/* ===============================
   SMALL MOBILE (Below 480px)
================================= */
@media(max-width:480px){

    .athena-left h2{
        font-size:24px;
    }

    .athena-item{
        margin-bottom:25px;
    }

    .arrow{
        font-size:18px;
    }

    .athena-form{
        padding:25px 15px;
    }

    .athena-form h3{
        font-size:20px;
    }

    .privacy{
        font-size:11px;
    }
}