/* Global Styles */
:root {
    --primary-color: #2C7BE5;
    --secondary-color: #00B8D9;
    --accent-color: #6B5ECD;
    --dark-color: #1B2A4E;
    --light-color: #F0F9FF;
    --gradient-primary: linear-gradient(135deg, #2C7BE5 0%, #00B8D9 100%);
    --gradient-secondary: linear-gradient(135deg, #6B5ECD 0%, #7F69F4 100%);
    --text-dark: #1B2A4E;
    --text-light: #95AAC9;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FAFBFE;
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
    transition: var(--transition);
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(44, 123, 229, 0.9), rgba(0, 184, 217, 0.9)), url('../images/cleaning-services-9663247_1280.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Hero Background Patterns */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 1;
}

.hero-section::after {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Floating Animation for Pattern */
@keyframes float-pattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero-section::before {
    animation: float-pattern 60s linear infinite;
}

/* Update hero content styles */
.hero-section .display-4 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Additional decorative elements */
.hero-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
}

.hero-dots-1 {
    top: 10%;
    right: 5%;
    transform: rotate(15deg);
}

.hero-dots-2 {
    bottom: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Section */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gradient-secondary);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(44, 123, 229, 0.1);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(44, 123, 229, 0.15);
}

.service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.service-features li:before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.service-card .btn-whatsapp {
    margin-top: auto;
    position: relative;
    z-index: 10;
    width: 100%;
    justify-content: center;
}

/* About Section */
.about-section {
    background: var(--light-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-features {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--light-color);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--accent-color);
}

/* Why Us Section */
.why-us-section {
    background: white;
    padding: 80px 0;
}

.why-us-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(44, 123, 229, 0.1);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.why-us-icon {
    font-size: 3rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: white;
    position: relative;
}

.contact-form {
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(44, 123, 229, 0.15);
}

.form-control {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 123, 229, 0.25);
}

.contact-info {
    padding: 2.5rem;
    color: white;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.info-item i {
    font-size: 2.5rem;
    color: white;
    margin-right: 1.5rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.info-item p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Footer */
.footer {
    background: var(--dark-color);
    padding: 60px 0 30px;
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255,255,255,0.8);
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    color: white;
    font-size: 1.8rem;
    margin-left: 2rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-section .display-4 {
        font-size: 2.2rem;
    }

    .hero-section img {
        max-height: 450px;
        margin-top: 2rem;
    }
    
    .about-section img {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .navbar {
        background: white;
    }

    .hero-dots {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .why-us-card {
        margin-bottom: 1.5rem;
    }
    
    .footer-link {
        margin-left: 1rem;
    }
    
    .social-link {
        margin-left: 1rem;
    }

    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }

    .hero-section .display-4 {
        font-size: 2rem;
    }

    .hero-section img {
        max-height: 350px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-dots {
        width: 100px;
        height: 100px;
    }
}

/* Animation Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-section img {
    animation: float 6s ease-in-out infinite;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 123, 229, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(107, 94, 205, 0.3);
    z-index: 1000;
    cursor: pointer;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(107, 94, 205, 0.4);
    color: white;
}

.scroll-to-top i {
    font-size: 24px;
}

/* Navbar Scroll */
.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Custom Gradients for Cards */
.service-card::before {
    background: var(--gradient-primary);
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: #25D366;
    color: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-whatsapp i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.service-card .btn-whatsapp {
    margin-top: 1rem;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.contact-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-whatsapp h4 {
    color: #25D366;
    margin-bottom: 1rem;
}

.contact-whatsapp p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* Update hero section buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
} 