/* Custom styles for Bill's Movers website */

/* Hero Section */
.hero-section {
    margin-top: 56px; /* Account for fixed navbar */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center;
    background-size: cover;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Rating Stars */
.rating {
    color: #ffc107;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Navbar adjustments */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Section spacing */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        margin-top: 0;
    }
    
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Form styling */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Button styling */
.btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 25px;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-light {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: #212529;
}

.btn-light:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Card styling */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Map container if added later */
.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

/* Social links in footer */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6c757d;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
}

/* Testimonial section background */
.testimonial-bg {
    background-color: #f8f9fa;
}

/* Adjustments for mobile */
@media (max-width: 575.98px) {
    .display-4 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}