@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0bbb95;
    --primary-dark: #099c7a;
    --primary-light: #e8f8f4;
    --secondary-color: #2c3e50;
    --text-color: #4a5568;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== NAVBAR ========== */
.navbar-custom {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-custom .nav-link i {
    display: none;
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom .navbar-brand img {
    height: 55px;
    width: auto;
}

.navbar-custom .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 70%;
}

.navbar-custom .nav-link:hover {
    color: var(--primary-color);
}

.navbar-custom .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.navbar-custom .dropdown-item {
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--secondary-color);
}

.navbar-custom .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.navbar-custom .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: middle;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    font-size: 0.75rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.navbar-custom .dropdown-toggle:hover::after,
.navbar-custom .dropdown-toggle.show::after {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%230bbb95' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22 M4 15h22 M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 700px;
    background: linear-gradient(135deg, rgba(2, 32, 32, 0.822) 10%, rgba(0, 8, 7, 0.871) 100%),
                url("images/new-pic-cleaning.png");
    background-size: cover;
  background-position: 20% 10%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.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.05'%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.5;
}

.hero-content {
    position:relative;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 550px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========== PAGE HEADER ========== */



/* ========== SECTION STYLES ========== */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.service-card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ========== INFO BOX ========== */
.info-box {
    background: var(--white);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.info-box:hover {
    box-shadow: var(--shadow-md);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: var(--primary-color);
    padding: 5rem 0;
    color: var(--white);
}

.testimonials-section .section-title h2 {
    color: var(--white);
}

.testimonials-section .section-title h2::after {
    background: var(--white);
}

.testimonial-card {
    background:rgba(44, 62, 80, 0.55)!important ;
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 1rem;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.testimonial-card cite {
    font-weight: 600;
    font-style: normal;
}

/* ========== CONTACT FORM ========== */
.contact-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-control-custom {
    background: rgb(226, 243, 242);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control-custom:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(11, 187, 149, 0.1);
    outline: none;
}

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

/* ========== WHY CHOOSE US ========== */
.why-choose-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-color);
}

.feature-box h5 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

/* ========== FOOTER ========== */
.footer-custom {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-custom h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-custom p {
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.footer-custom a {
    opacity: 0.85;
}

.footer-custom a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* ========== MULTI-STEP MODAL ========== */
.modal-custom .modal-content {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.modal-custom .modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.modal-custom .modal-title {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-custom .modal-body {
    padding: 1.5rem;
}

.step-container {
    display: none;
}

.step-container.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-container h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-option {
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-option:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
}

.step-option.selected {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.step-option input {
    display: none;
}

.step-alert {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fed7d7;
    border-radius: var(--radius-sm);
}

.btn-step {
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.btn-step-prev {
    background: #e2e8f0;
    color: var(--secondary-color);
    border: none;
}

.btn-step-prev:hover {
    background: #cbd5e0;
}

.btn-step-next {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-step-next:hover {
    background: var(--primary-dark);
}

/* ========== UTILITIES ========== */
.bg-light-custom {
    background: var(--light-bg);
}

.bg-primary-custom {
    background: var(--primary-color);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.rounded-custom {
    border-radius: var(--radius-md);
}

/* ========== MOBILE HERO SECTION ========== */
.hero-mobile {
    display: none;
}

.hero-mobile-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 15rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-mobile-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.hero-mobile-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-mobile .btn-primary-custom,
.hero-mobile .btn-outline-custom {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 799px) {
    .hero-desktop {
        display: none;
    }
    
    .hero-mobile {
        display: block;
        position: relative;
        height: auto;
        
        background: linear-gradient(45deg, rgba(0, 7, 6, 0.4) 0%, rgba(30, 31, 31, 0.6) 100%),
                    url("images/Professional cleaner in modern living room.png");
       
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        max-width: 700px;
        margin: 0 auto;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .hero-mobile::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.05'%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.5;
    }
}

/* ========== IMPROVED MOBILE MENU ========== */
@media (max-width: 991px) {
    .navbar-custom {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar-custom .navbar-toggler {
        border: none;
        padding: 0.6rem 0.8rem;
        background: var(--primary-light);
        border-radius: var(--radius-sm);
        transition: var(--transition);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-custom .navbar-toggler:hover {
        background: var(--primary-color);
    }

    .navbar-custom .navbar-toggler:hover .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .navbar-custom .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-custom .navbar-toggler[aria-expanded="true"] {
        background: var(--primary-color);
    }

    .navbar-custom .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .navbar-collapse {
        animation: slideDown 0.3s ease-out;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin-top: 0;
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: var(--white);
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-custom .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-custom .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-custom .nav-link {
        padding: 0.85rem 1rem !important;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
        position: relative;
    }

    .navbar-custom .nav-link i {
        display: inline-flex;
        font-size: 1rem;
        width: 20px;
        margin-right: 0.5rem;
        color: var(--primary-color);
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
        background: var(--primary-light);
        color: var(--primary-color);
    }

    .navbar-custom .nav-link:hover i,
    .navbar-custom .nav-link.active i {
        color: var(--primary-color);
    }

    .navbar-custom .nav-link.btn-primary-custom {
        background: var(--primary-color);
        color: var(--white);
        justify-content: center;
        margin: 0.75rem 1rem;
        border-radius: var(--radius-sm);
        font-weight: 600;
    }

    .navbar-custom .nav-link.btn-primary-custom i {
        color: var(--white);
        margin-right: 0.4rem;
        width: auto;
    }

    .navbar-custom .nav-link.btn-primary-custom:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

    .navbar-custom .dropdown {
        position: relative;
    }

    .navbar-custom .dropdown-toggle {
        position: relative;
    }

    .navbar-custom .dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.5rem;
        vertical-align: middle;
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        border: none;
        font-size: 1rem;
        color: var(--secondary-color);
        transition: transform 0.3s ease;
    }

    .navbar-custom .dropdown-toggle.show::after {
        transform: rotate(180deg);
        color: var(--primary-color);
    }

    .navbar-custom .dropdown-menu {
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: var(--light-bg);
        border: none;
        border-radius: 0;
    }

    .navbar-custom .dropdown-menu.show {
        display: block;
        animation: fadeIn 0.2s ease-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .navbar-custom .dropdown-item {
        padding: 0.75rem 1rem 0.75rem 1.5rem;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        transition: all 0.2s ease;
    }

    .navbar-custom .dropdown-item:last-child {
        border-bottom: none;
    }

    .navbar-custom .dropdown-item i {
        margin-right: 0.5rem;
        font-size: 0.85rem;
        color: var(--primary-color);
        width: 16px;
    }

    .navbar-custom .dropdown-item:hover {
        background: var(--primary-color);
        color: var(--white);
        padding-left: 1.75rem;
    }

    .navbar-custom .dropdown-item:hover i {
        color: var(--white);
    }
}

@media (max-width: 991px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .footer-custom {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .page-header {
        height: 35vh;
        min-height: 250px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 576px) {
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
}
