/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Search Box Styles */
.search-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Featured Services Styles */
.featured-services .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.featured-services .card:hover {
    transform: translateY(-5px);
}

.featured-services .card img {
    height: 200px;
    object-fit: cover;
}

/* Sidebar Styles */
.sidebar .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.featured-provider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.provider-info {
    flex: 1;
}

/* Rating Stars */
.rating .text-warning {
    color: #ffc107;
}

/* Footer Styles */
footer {
    background-color: #343a40;
}

footer h5 {
    color: #fff;
    margin-bottom: 1.2rem;
}

footer .social-links a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
}

footer .social-links a:hover {
    background: rgba(255,255,255,0.2);
    color: #fff !important;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured-services .card img {
        height: 150px;
    }
    
    footer {
        text-align: center;
    }
    
    footer .social-links {
        margin-bottom: 20px;
    }
    
    .col-md-6.text-end {
        text-align: center !important;
    }
} 