:root{
    --primary:#0d6efd;
    --secondary:#00b894;
    --dark:#1f2937;
    --light:#f8fafc;
    --orange:#ff6b35;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:#333;
    overflow-x:hidden;
}

/* Top Bar */

.top-bar{
    background:#0d6efd;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
}

/* Navbar */

.navbar-brand{
    font-size:28px;
    color:#0d6efd !important;
}

.nav-link{
    font-weight:600;
    color:#222 !important;
    margin:0 8px;
}

.nav-link:hover{
    color:#0d6efd !important;
}

.active{
    color:#0d6efd !important;
}

/* Hero */

.hero-section{
    min-height:650px;
    display:flex;
    align-items:center;
    background:
    linear-gradient(
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
}

.hero-content h1{
    color:#fff;
    font-size:60px;
    font-weight:800;
}

.hero-content p{
    color:#fff;
    font-size:20px;
}

/* Section */

.section-padding{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
}

/* Service Card */

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-card-body{
    padding:25px;
}

/* Booking Form */

.booking-form{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.15);
}

/* Counter */

.counter-box{
    text-align:center;
    padding:30px;
}

.counter-box h3{
    color:#0d6efd;
    font-size:45px;
    font-weight:700;
}

/* Testimonial */

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* FAQ */

.accordion-button{
    font-weight:600;
}

/* CTA */

.cta-section{
    background:#0d6efd;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.cta-section h2{
    font-size:50px;
    font-weight:700;
}

/* Footer */

.footer{
    background:#111827;
    color:#fff;
    padding:70px 0 20px;
}

.footer h4,
.footer h5{
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

/* WhatsApp */

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

/* Mobile */

@media(max-width:768px){

.hero-content h1{
    font-size:38px;
}

.section-title h2{
    font-size:30px;
}

.cta-section h2{
    font-size:32px;
}

}