﻿ 
:root {
    --pro-yellow: #FFC107;
    --fix-red: #E53935;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Branding Colors */
.text-pro {
    color: var(--pro-yellow);
}

.text-fix {
    color: var(--fix-red);
}

.bg-pro {
    background-color: var(--pro-yellow);
}

.bg-fix {
    background-color: var(--fix-red);
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: 0.3s;
}

    .nav-link:hover {
        color: var(--fix-red) !important;
    }

.btn-book {
    background-color: var(--fix-red);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

    .btn-book:hover {
        background-color: var(--pro-yellow);
        color: #333;
        transform: translateY(-2px);
    }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/assets/banner.jpg') no-repeat center center / cover;
    height: 90vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

    .hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

/* Features */
.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--fix-red);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-weight: 700;
        position: relative;
        padding-bottom: 15px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--pro-yellow);
        }

/* Services Cards */
.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .service-card:hover {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .service-card img {
        height: 220px;
        width: 100%;
        object-fit: cover;
        background-color: #eee;
    }

/* Common Problems */
.problem-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
    background: white;
    height: 100%;
}

    .problem-item:hover {
        background: var(--pro-yellow);
        border-color: var(--pro-yellow);
        transform: translateY(-5px);
    }

    .problem-item i {
        font-size: 2rem;
        margin-bottom: 10px;
        color: var(--fix-red);
    }

/* FAQ */
.accordion-button:not(.collapsed) {
    background-color: var(--pro-yellow);
    color: #333;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        background-color: #128c7e;
        color: white;
        transform: scale(1.1);
    }

/* Back to top */
#backToTop {
    position: fixed;
    bottom: 115px;
    right: 40px;
    display: none;
    background: var(--fix-red);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Footer Improvements */
footer {
    background: var(--dark-bg);
    color: #ffffff; /* Brighter default text */
    padding: 80px 0 30px;
}

    footer .text-muted {
        color: #d1d1d1 !important; /* Lighter grey for visibility */
    }

.footer-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

    .footer-link:hover {
        color: var(--pro-yellow);
        padding-left: 8px;
    }

.footer-social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--pro-yellow);
    transition: 0.3s;
    text-decoration: none;
}

    .footer-social-link:hover {
        background: var(--pro-yellow);
        color: #000;
        transform: translateY(-3px);
    }

 @media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .feature-card {
        margin-top: 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    #backToTop {
        bottom: 90px;
        right: 20px;
    }
}
 
/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */
 @media (max-width: 992px) {
    section

{
    padding: 70px 0;
}

.hero {
    height: auto;
    padding: 120px 0 80px;
    text-align: center;
}

    .hero h1 {
        font-size: 2.5rem;
    }

.feature-card {
    margin-top: 20px;
}

.service-card img {
    height: 200px;
}

.navbar-nav {
    text-align: center;
    padding-top: 15px;
}

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

.btn-book {
    padding: 8px 20px;
}

}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */
 @media (max-width: 768px) {

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-card img {
        height: 180px;
    }

    .problem-item {
        padding: 15px;
    }

        .problem-item i {
            font-size: 1.6rem;
        }

        .problem-item h6 {
            font-size: 0.9rem;
        }

    footer {
        text-align: center;
    }

    .footer-social-link {
        margin: 5px;
    }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
 @media (max-width: 576px) {

    .hero {
        padding-top: 110px;
    }

        .hero h1 {
            font-size: 1.7rem;
        }

    .lead {
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .btn-book {
        padding: 8px 18px;
        font-size: 14px;
    }

    .feature-card h5 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .service-card img {
        height: 160px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    #backToTop {
        width: 40px;
        height: 40px;
        bottom: 80px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}
 
