/* =========================================
   1. VARIABLES & RESET (NEXGEN CLONE)
   ========================================= */
:root {
    /* Main Palette */
    --bg-dark: #0f1110;
    /* Close to almost black green */
    --bg-card-dark: #002D21;
    /* Deep Forest Green for dark cards */
    --accent-neon: #045470;
    /* High voltage green */

    /* Gradients/Pastels for Cards */
    --grad-mint: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    --grad-blue: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    --grad-peach: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
    --grad-ocean: linear-gradient(135deg, #2af598 0%, #009efd 100%);
    --grad-purple: linear-gradient(135deg, #cc2b5e 0%, #753a88 100%);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --text-white: #ffffff;
    --text-black: #1a1a1a;

    /* Layout */
    --container-max: 1480px;
    --radius-pill: 9999px;
    --radius-card: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f7f7f7;
    /* Main body background from image is light grey, sections have contrasting backgrounds */
    font-family: var(--font-body);
    color: var(--text-black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}



  /* Inline overrides/additions for specific content needs */
        .services-layout-split {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

fieldset{
        background: transparent !important;
    border: none;
}
.screen-reader-response{
    display: hidden;
}
.wpcf7 {
    position: sticky;
            top: 100px;
}
        .form-card {
            background: var(--bg-card-dark);
            padding: 30px;
            border-radius: var(--radius-card);
            color: white;
            height: fit-content;
        }
          .form-card-bg {
            background: #fff;
            border-radius: 5px;
        }
        
.form-card h3 {
   color: #fff;
}
.form-card-bg h3 {
   color: #000;
}
 .form-card .form-subtitle{
    padding-bottom: 1rem !important;
}
.form-card-bg .form-subtitle{
    color: #000;
}
        .form-card   p{
 padding-bottom: 0.1rem !important;
}

        
        .form-card input,
        .form-card select,
        .form-card .area input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
              color: white;
            font-family: var(--font-body);
        }
        
        
        .form-card-bg input,
        .form-card-bg select,
        .form-card-bg .area input {
            
            border: 1px solid rgb(30 29 29 / 10%);
            background: rgba(255, 255, 255, 0.05);
        }
        .form-card-bg select{
            color: black;
        }
 .form-card-bg  .area p{
    display:flex; gap:10px;
}
        .form-card select option {
            color: rgb(14, 14, 14);
        }

        .form-card button {
            width: 100%;
        }

        /* Accordion Styles (Re-integrated) */
        .accordion-wrapper {
            margin-top: 60px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .accordion-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .accordion-header {
            width: 100%;
            padding: 20px 30px;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-heading);
            font-weight: 700;
            cursor: pointer;
            font-size: 1.1rem;
            color: var(--bg-dark);
        }

        .accordion-content {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-content.open {
            padding-bottom: 30px;
        }

        .details-list-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        .details-list-grid ul {
            list-style: none;
        }

        .details-list-grid li {
            font-size: 0.9rem;
            margin-bottom: 5px;
            color: #555;
        }

        .details-list-grid strong {
            color: var(--bg-card-dark);
            display: block;
            margin-bottom: 10px;
        }

        @media (max-width: 900px) {
            .services-layout-split {
                grid-template-columns: 1fr;
            }

            .details-list-grid {
                grid-template-columns: 1fr;
            }
        }

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.container {
    max-width: 75% !important;
    margin: 0 auto;
    padding: 10px 40px 0 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-neon {
    background-color: var(--accent-neon) !important;
    color: var(--bg-white);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.section-spacer {
    padding: 100px 0;
}

/* =========================================
   2. HEADER (Simple Nav)
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.nav-links a {
    margin: 0 15px;
    color: var(--text-black);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-actions .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* =========================================
   3. HERO SECTION (Dark Mode)
   ========================================= */
.hero-wrapper {
    margin: 20px;
    border-radius: 30px;
    overflow: hidden;
    /* background-color: #0b221a; */
    /* Dark Green BG */
    color: white;
    position: relative;
    padding: 100px 60px;
    min-height: 500px;
    display: flex;
    align-items: center;
    gap: 20px;
    background-image: url('https://homelynn.in/wp-content/uploads/2025/11/view-professional-cleaning-service-person-holding-supplies-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    /* Darken image */
}

/* Overlay to ensure text readability */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* =========================================
   4. FEATURED CARDS (Bento Row)
   ========================================= */
.featured-section {
    padding-top: 80px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3rem;
    line-height: 1;
}

.section-header p {
    max-width: 300px;
    font-size: 0.9rem;
    color: #666;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius-card);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-mint {
    background: var(--grad-mint);
}

.card-dark {
    background: var(--bg-card-dark);
    color: white;
}

.card-silver {
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 100%);
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-image-placeholder {
    margin-top: 20px;
    height: 120px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
}

/* =========================================
   5. SPLIT SECTION (Image + Text)
   ========================================= */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 40px;
}

.split-image {
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* =========================================
   6. GRID / PACKAGES (Colorful)
   ========================================= */
.packages-section {
    padding-bottom: 100px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.package-card {
    border-radius: 20px;
    height: 200px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.package-card h4 {
    font-size: 1.5rem;
    z-index: 2;
     color: white;
    
}

.package-card span {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.9;
}

.pkg-1 {
    background: var(--grad-ocean);
}

.pkg-2 {
    background: var(--bg-card-dark);
}

.pkg-3 {
    background: var(--grad-purple);
}

.pkg-4 {
    background: var(--grad-peach);
    color: #333;
}

.pkg-5 {
    background: var(--grad-mint);
    color: #333;
    grid-column: span 2;
}

.pkg-6 {
    background: var(--grad-blue);
    color: #333;
    grid-column: span 2;
}

/* =========================================
   7. GREEN STEPS SECTION
   ========================================= */
.steps-section-wrapper {
    background-color: #beffbf;
    /* Light Green BG */
    padding: 100px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.steps-content h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--bg-dark);
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
   
}

.steps-image-block {
    background-color: var(--bg-card-dark);
    border-radius: 30px;
    height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-3d-mockup {
    width: 200px;
    height: 320px;
    background: white;
    border-radius: 15px;
    transform: rotate(-15deg);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.3);
}

/* =========================================
   8. TRUST / STATS
   ========================================= */
.trust-section {
    text-align: center;
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.trust-box {
    background: #f0f7ff;
    padding: 40px;
    border-radius: 20px;
    width: 250px;
}

.trust-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    display: block;
    margin-bottom: 5px;
}

/* =========================================
   9. CTA FOOTER
   ========================================= */
/* =========================================
   9. CTA FOOTER (Refined)
   ========================================= */
.cta-footer-wrapper {
    background-color: var(--accent-neon);
    padding: 80px 60px;
    margin: 40px 20px -80px 20px;
    /* Negative margin for overlap */
    border-radius: 40px;
    position: relative;
    z-index: 10;
    /* Ensure it sits above footer */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.cta-content-col h2 {
    font-size: 3.5rem;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 15px;
      margin-top: 30px;
    letter-spacing: -1px;
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--text-white);
    opacity: 0.8;
  
    max-width: 500px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.contact-box {
    padding: 10px 20px;
}

.icon-box {
    width: 76px;
    height: 76px;
    margin: 0 auto 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 35px;
}

.icon-box.red {
    background: #202020;
}

.icon-box.dark-red {
    background: #333;
}

.contact-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.contact-box a {
    color: inherit;
    text-decoration: none;
}


/* Responsive CTA */
   

/* .footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-col h5 {
    margin-bottom: 24px;
    color: #666;
    /* Muted gray header as per image */
/*    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 1.1rem;
    /* Slightly larger links 
    font-weight: 500;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--accent-neon);
} */

.mega-footer {
    background: var(--bg-dark);
    color: white;
    padding: 100px 40px 40px;
    margin-top: -50px;
    /* Overlap effect if structure allows, otherwise simple stacking */
    padding-top: 150px;
    /* Space for overlap */
}

.footer-logo-big {
    font-family: var(--font-heading);
    font-size: 12vw;
    text-align: center;
    opacity: 0.2;
    margin: 40px 0;
    line-height: 0.8;
}
.footer-logo-big {
    font-family: var(--font-heading);
    font-size: 15vw;
    /* Massive */
    text-align: center;
    color: #ffffff;
    opacity: 0.05;
    /* Verify faint */
    line-height: 0.8;
    margin-top: 60px;
    user-select: none;
    pointer-events: none;
}
@media (max-width: 2200px) {

   .container {
    max-width: var(--container-max) !important;
}
}

/* Responsive */
@media (max-width: 900px) {

    .hero-wrapper {
     flex-direction: column;
    /* Darken image */
}
    .split-section,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-5,
    .pkg-6 {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 3rem;
    }
     .cta-inner {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .cta-content-col h2 {
        font-size: 2.5rem;
    }

    .cta-action-col {
        width: 100%;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}



@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 520px) {
     

.container {
    margin: 0 auto;
    padding: 10px 20px 0 20px;
}
    .hero-wrapper {
         margin: 20px 10px;
    padding: 100px 20px;


}
.packages-grid {
    display: grid;
   grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 40px;
}
.package-card {
   padding: 15px;
   height: 230px;
   width: 280px;
}
.package-card h4 {
        line-height: 1;
        
}
}