/* ===========================
   SOLE PROPRIETORSHIP INTRO SECTION
=========================== */

.sp-intro{
    width:90%;
    margin:70px auto;
    display:grid;
    grid-template-columns:1.3fr .8fr;
    gap:50px;
    align-items:center;
}

.sp-left .tag{
    display:inline-block;
    color:var(--accent);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.sp-left h2{
    font-size:40px;
    color:var(--accent);
    margin-bottom:20px;
    line-height:1.3;
}

.sp-left p{
    line-height:1.9;
    color:var(--text-color);
    opacity:.9;
    margin-bottom:30px;
}

.sp-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
}

.feature i{
    color:var(--accent);
    font-size:18px;
}

.feature span{
    font-size:15px;
}

/* ===========================
   ENQUIRY FORM
=========================== */

.enquiry-box{
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:35px;
    transition:.3s;
}

.enquiry-box:hover{
    border-color:var(--accent);
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.enquiry-box h3{
    color:var(--accent);
    font-size:28px;
    margin-bottom:10px;
}

.enquiry-box p{
    margin-bottom:25px;
    opacity:.8;
}

.enquiry-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.enquiry-box input,
.enquiry-box select{
    width:100%;
    height:48px;
    border:1px solid var(--border-color);
    background:transparent;
    color:var(--text-color);
    padding:0 15px;
    border-radius:8px;
    outline:none;
}

.enquiry-box input::placeholder{
    color:#999;
}

.enquiry-box input:focus{
    border-color:var(--accent);
}

.enquiry-box button{
    height:50px;
    background:var(--accent);
    color:var(--bg-color);
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.enquiry-box button:hover{
    background:var(--hover);
}

/* ===========================
   ABOUT SOLE PROPRIETORSHIP
=========================== */

.about-sp{
    width:90%;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-sp-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.section-tag{
    display:inline-block;
    color:var(--accent);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-sp-content h2{
    font-size:32px;
    color:var(--accent);
    margin-bottom:20px;
    line-height:1.3;
}

.about-sp-content p{
    font-size:16px;
    line-height:1.9;
    color:var(--text-color);
    margin-bottom:18px;
}

/* ===========================
   WHY CHOOSE SOLE PROPRIETORSHIP
=========================== */

.why-sp{
    width:90%;
    margin:70px auto;
}

.why-sp .section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 50px;
}

.why-sp .section-tag{
    display:inline-block;
    color:var(--accent);
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.why-sp .section-header h2{
    font-size:36px;
    color:var(--accent);
    margin-bottom:20px;
    line-height:1.3;
}

.why-sp .section-header p{
    color:var(--text-color);
    line-height:1.9;
    opacity:.9;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-card{
    background:var(--card-bg);
    border:1px solid var(--border-color);
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.3s;
}

.benefit-card:hover{
    border-color:var(--accent);
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.benefit-card i{
    width:70px;
    height:70px;
    line-height:70px;
    background:var(--accent);
    color:var(--bg-color);
    border-radius:50%;
    font-size:28px;
    margin-bottom:20px;
}

.benefit-card h3{
    font-size:22px;
    color:var(--accent);
    margin-bottom:15px;
}

.benefit-card p{
    color:var(--text-color);
    line-height:1.8;
    opacity:.9;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

.sp-intro{
    grid-template-columns:1fr;
    gap:40px;
}

.about-sp{
    grid-template-columns:1fr;
}

.about-sp-image{
    order:1;
}

.about-sp-content{
    order:2;
}

.about-sp-content h2{
    font-size:30px;
}

.benefits-grid{
    grid-template-columns:repeat(2,1fr);
}

.why-sp .section-header h2{
    font-size:30px;
}

}

@media(max-width:768px){

.sp-intro{
    width:92%;
    margin:50px auto;
}

.sp-left{
    text-align:center;
}

.sp-left h2{
    font-size:30px;
}

.sp-features{
    grid-template-columns:1fr;
}

.feature{
    justify-content:center;
}

.enquiry-box{
    padding:25px;
}

.enquiry-box h3{
    font-size:24px;
}

.why-sp{
    width:92%;
    margin:50px auto;
}

.benefits-grid{
    grid-template-columns:1fr;
}

.benefit-card{
    padding:30px 20px;
}

.why-sp .section-header h2{
    font-size:28px;
}

}