/* ===============================
   AYURVEDIC CLIENT FORM
================================= */

.ayur-form-box{
    max-width:1000px;
    margin:60px auto;
    background:#f8f5f0;
    padding:45px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.ayur-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
    color:#23452f;
}

.ayur-subtitle{
    text-align:center;
    color:#8b8b8b;
    margin-bottom:40px;
    font-size:18px;
}

.section-title{
    margin:40px 0 25px;
    color:#23452f;
    border-bottom:2px solid #e7ece8;
    padding-bottom:12px;
    font-size:24px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.form-group{
    margin-bottom:22px;
}

.full-width{
    grid-column:1 / -1;
}

.form-group label,
.radio-title{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#23452f;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #d9e3dc;
    border-radius:10px;
    padding:14px 16px;
    font-size:15px;
    transition:.3s;
    background:#fffdfb;
    box-sizing:border-box;
}

.form-group textarea{
    resize:vertical;
    min-height:120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#3f6f4d;
    outline:none;
    box-shadow:0 0 0 3px rgba(63,111,77,.15);
}

.radio-section{
    margin:30px 0;
}

.radio-group{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:15px;
}

.radio-group label{
    background:#f7f9f7;
    padding:14px 18px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    border:1px solid #e3e8e4;
}

.radio-group label:hover{
    background:#eef5ef;
    border-color:#3f6f4d;
}

.radio-group input{
    margin-right:8px;
}

.submit-area{
    text-align:center;
    margin-top:45px;
}

.ayur-btn{
    background:#3f6f4d;
    color:#fff;
    border:none;
    padding:16px 45px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.ayur-btn:hover{
    background:#23452f;
}

@media(max-width:768px){

    .ayur-form-box{
        padding:25px;
        margin:30px 15px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .radio-group{
        grid-template-columns:1fr;
    }

    .ayur-title{
        font-size:30px;
    }

}







.about-section{
    padding:90px 0;
    background:#fffdf9;
}

.about-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:70px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:18px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.about-content{
    flex:1;
}

.about-tag{
    color:#3f6f4d;
    font-size:14px;
    letter-spacing:2px;
    font-weight:700;
    text-transform:uppercase;
}

.about-content h2{
    font-size:42px;
    line-height:1.3;
    color:#23452f;
    margin:18px 0 22px;
}

.about-short{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}

.about-details{
    margin-top:30px;
}

.about-details h3{
    font-size:34px;
    color:#23452f;
    margin-bottom:20px;
}

.about-details p{
    font-size:17px;
    line-height:2;
    color:#666;
    margin-bottom:24px;
}

@media(max-width:992px){

    .about-wrapper{
        flex-direction:column;
    }

    .about-content h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .about-section{
        padding:60px 15px;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-details h3{
        font-size:26px;
    }

    .about-details p,
    .about-short{
        font-size:16px;
        line-height:1.8;
    }

}