/* ===================================
   BS Service Hub
   Main Stylesheet
=================================== */

:root{
    --primary:#2563eb;
    --secondary:#f97316;
    --dark:#0f172a;
    --light:#f8fafc;
    --gray:#64748b;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:#222;
    background:#fff;
    line-height:1.6;
}

/* Navbar */

.navbar{
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:1.5rem;
    font-weight:700;
}

/* Hero Section */

.hero-section{
    background:linear-gradient(
        135deg,
        #2563eb,
        #0f172a
    );

    color:#fff;
    padding:100px 0;
}

.hero-section h1{
    font-size:3rem;
    font-weight:800;
    margin-bottom:20px;
}

.hero-section p{
    font-size:1.2rem;
}

.hero-section img{
    max-width:100%;
}

/* Buttons */

.btn-warning{
    background:var(--secondary);
    border:none;
}

.btn-warning:hover{
    background:#ea580c;
}

.btn-primary{
    background:var(--primary);
    border:none;
}

/* Service Cards */

.service-card{
    border:none;
    border-radius:15px;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card i{
    color:var(--primary);
}

.service-card h4{
    font-weight:700;
}

/* AMC Cards */

.card{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h2{
    color:var(--primary);
    font-weight:700;
}

.card.border-primary{
    border:2px solid var(--primary)!important;
}

/* CTA */

.cta-section{
    background:var(--primary);
    color:#fff;
    padding:80px 0;
}

.cta-section h2{
    font-size:2.5rem;
    font-weight:700;
}

.cta-section p{
    font-size:1.1rem;
}

/* Footer */

footer{
    background:var(--dark);
}

footer h4{
    font-weight:700;
}

/* WhatsApp Button */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.whatsapp-btn:hover{
    color:#fff;
    transform:scale(1.05);
}

/* Forms */

form input,
form select,
form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:15px;
}

form button{
    width:100%;
}

/* Section Headings */

section h2{
    font-weight:700;
    margin-bottom:15px;
}

section p{
    color:var(--gray);
}

/* Testimonials */

.testimonial{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* FAQ */

.accordion-button:not(.collapsed){
    background:#eff6ff;
    color:var(--primary);
}

/* Responsive */

@media(max-width:991px){

.hero-section{
    text-align:center;
    padding:80px 0;
}

.hero-section h1{
    font-size:2.3rem;
}

}

@media(max-width:768px){

.hero-section h1{
    font-size:2rem;
}

.cta-section h2{
    font-size:1.8rem;
}

.whatsapp-btn{
    width:55px;
    height:55px;
}

}

@media(max-width:576px){

.hero-section{
    padding:60px 0;
}

.hero-section h1{
    font-size:1.7rem;
}

.navbar-brand{
    font-size:1.2rem;
}

}