/* Atta Quick Cleaning - Custom Styles */

:root {
    --primary-color: #4CAF50;
    --primary-hover: #43A047;
    --primary-light: #E8F5E9;
    --dark-blue: #1a2b4c;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --border-radius: 12px;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--dark-blue) !important;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 50px;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

.logo-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.brand-text {
    color: var(--dark-blue);
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-book-nav {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px;
    font-weight: 500;
}

.btn-book-nav:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 76px);
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 43, 76, 0.85) 0%, rgba(26, 43, 76, 0.6) 50%, rgba(26, 43, 76, 0.3) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(76, 175, 80, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
}

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

.hero-buttons .btn-outline-light {
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    border-width: 2px;
}

/* Section Styles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
}

.step-card {
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.step-number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.booking-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.booking-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.btn-booking {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    margin-top: 0.5rem;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid #e5e7eb;
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 0;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand .brand-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 0.5rem;
        box-shadow: var(--card-shadow);
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }

    .btn-book-nav {
        margin-top: 0.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .booking-card {
        padding: 1.5rem;
    }

    .service-card,
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0 !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}