/* --- Global & Typography --- */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa; /* Light grey background */
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-weight: 700;
}

.display-5, .display-4, .display-3 {
    font-weight: 900;
}

/* --- Navbar --- */
.navbar-logo {
    height: 45px; /* Slightly larger for retina */
    width: auto;
    max-width: 180px; /* Max width for longer logos */
}

/* --- Hero Section --- */
.hero-section {
    /* Base hero image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-background.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
}

/* --- Retina-Ready Hero --- */
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) { 
    .hero-section {
        /* Assumes you have a @2x version for high-DPI screens */
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-background@2x.webp');
    }
}

.hero-section h1 {
    font-weight: 900;
}

/* --- Service Cards --- */
.service-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card img {
    height: 250px; /* Uniform height */
    width: 100%;
    object-fit: cover; /* Ensures image covers the area, crops if needed */
}

/* --- Floating CTA Buttons --- */
.call-btn-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #ffc107; /* Bootstrap Warning */
    color: #000;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.whatsapp-btn-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.call-btn-floating:hover, .whatsapp-btn-floating:hover {
    transform: scale(1.05);
}

.floating-cta-icon {
    font-size: 1.3rem;
    margin-right: 8px;
}

/* --- WhatsApp Modal Styles --- */
#whatsappModal .input-group-text {
    width: 45px; /* Uniform width for icons */
    justify-content: center;
}

#locationSpinner {
    display: none;
}

#getLocationBtn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* --- Mobile Responsive Floating CTAs --- */
@media (max-width: 768px) {
    .floating-cta-text {
        display: none;
    }
    .floating-cta-icon {
        margin-right: 0;
        font-size: 1.5rem;
    }
     .call-btn-floating, .whatsapp-btn-floating {
        padding: 15px;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* --- NEW: Category Cards (Homepage) --- */
.category-card {
    border: none;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.category-card .fas {
    color: #0d6efd; /* Bootstrap Primary Blue */
}

/* --- NEW: How It Works Section (Homepage) --- */
.step-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- NEW: Pickup Badge on Service Cards --- */
.service-card {
    position: relative; /* Needed for the badge */
}

.pickup-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}