/* 
   =============================================
   MAMA CLEANS LEVIN - MAIN STYLESHEET
   =============================================
*/

:root {
    /* Brand Colors derived from Logo */
    --purple: #6D51A4;
    --purple-light: #8A6FC4;
    --purple-dark: #4C377A;
    
    --pink: #F3A9CB;
    --pink-light: #F8C6DB;
    --pink-dark: #D88AA9;
    
    /* Neutral Colors */
    --bg-color: #FAFAFC;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    
    /* Layout & Utilities */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(109, 81, 164, 0.1);
    --box-shadow-hover: 0 15px 40px rgba(109, 81, 164, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

/* =========================================
   TYPOGRAPHY & UTILS
   ========================================= */
.highlight {
    color: var(--purple);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(243, 169, 203, 0.4);
    z-index: -1;
    border-radius: 4px;
}

.section-title {
    font-size: 3rem;
    color: var(--purple-dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(109, 81, 164, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 81, 164, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.header .container {
    max-width: 100%;
    padding: 0 40px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling matching the uploaded image */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

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

.footer-logo .logo-img {
    filter: brightness(0) invert(1);
}

.logo-text-1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    color: var(--purple);
    letter-spacing: -1px;
    margin-bottom: -5px;
}

.logo-text-2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--purple);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-text-3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--purple);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--purple);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: url('/images/hero.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: var(--purple-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Abstract decorations inspired by the pink swoosh */
.hero-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.8;
}

.decor-top-right {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    border: 30px solid var(--pink-light);
    clip-path: circle(50% at right 50%);
}

.decor-bottom-left {
    bottom: -15%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    top: 0;
}

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

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pink-light), var(--pink));
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 190px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--purple);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--purple-dark);
}

.service-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    color: var(--pink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--purple);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background: linear-gradient(135deg, rgba(109, 81, 164, 0.05), rgba(243, 169, 203, 0.1));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.features-list i {
    color: var(--pink);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-card:nth-child(3) {
    grid-column: span 2;
}

.stat-number {
    font-size: 3rem;
    color: var(--purple);
    margin-bottom: 5px;
}

.stat-label {
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-title {
    font-size: 3rem;
    color: var(--purple-dark);
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(243, 169, 203, 0.3);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(243, 169, 203, 0.2);
    color: var(--pink-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.method-details strong {
    font-size: 1.2rem;
    color: var(--purple-dark);
}

/* Glassmorphism Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--purple);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(243, 169, 203, 0.2);
}

/* Custom Dropdown */
.custom-select {
    position: relative;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(243, 169, 203, 0.2);
}

.custom-select-trigger.selected {
    color: var(--text-main);
}

.custom-select-arrow {
    color: var(--purple);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(109, 81, 164, 0.15);
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-select.open .custom-select-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.custom-select-options li {
    padding: 13px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
}

.custom-select-options li i {
    color: var(--purple);
    width: 16px;
    text-align: center;
}

.custom-select-options li:hover {
    background: rgba(243, 169, 203, 0.1);
    color: var(--purple);
    padding-left: 26px;
}

.custom-select-options li.selected {
    background: rgba(109, 81, 164, 0.06);
    color: var(--purple);
    font-weight: 600;
}

/* =========================================
   POLICIES ACCORDION
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--purple-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--pink-dark);
}

.accordion-header i {
    color: var(--purple);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fdfdfd;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 25px 20px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--purple-dark);
    color: var(--white);
}

/* Top contact bar */
.footer-top-bar {
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
}

.footer-top-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-top-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,1);
}

.footer-top-item i {
    color: var(--pink);
    font-size: 1rem;
}

.footer-top-item a {
    color: rgba(255,255,255,1);
}

.footer-top-item a:hover {
    color: var(--pink);
}

/* Main body */
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(255,255,255,1);
    max-width: 300px;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-logo {
    align-items: flex-start;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer link columns */
.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,1);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--pink);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-bottom-links span {
    color: rgba(255,255,255,0.2);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
    .about-grid, .contact-container { grid-template-columns: 1fr; }
    .about-text { text-align: center; }
    .features-list { justify-content: center; text-align: left; max-width: 500px; margin: 0 auto; }
    .hero-overlay { background: rgba(255,255,255,0.85); }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-cta { justify-content: center; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-links h4 { margin-top: 20px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; }
}
