/* Custom styles for Bajan Clean Service */

:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --secondary-color: #64748b;
    --light-bg: #f8fafc;
    --dark-bg: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Banner Slider Styles */
.banner-slide {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(37, 99, 235, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.service-icon {
    background: rgba(59, 130, 246, 0.1);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    background: rgba(59, 130, 246, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Info Cards */
.contact-info-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-info-card:hover {
    background: rgba(59, 130, 246, 0.05) !important;
    border-color: rgba(59, 130, 246, 0.2);
}

.contact-icon {
    background: rgba(59, 130, 246, 0.1);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Badges */
.stats-badge {
    position: absolute;
    z-index: 10;
}

.stats-badge-left {
    bottom: -20px;
    left: -20px;
}

.stats-badge-right {
    top: -20px;
    right: -20px;
}

/* Feature Icons */
.feature-icon {
    background: rgba(59, 130, 246, 0.1);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-slide {
        height: 60vh;
        min-height: 400px;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .stats-badge-left,
    .stats-badge-right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 1rem auto;
    }
}

/* Loading animation */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Success/Error messages */
.alert {
    border-radius: 0.5rem;
}

/* Carousel control styling */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}