:root {
    --light-blue: #4FC3F7;
    --aqua: #00CFFF;
    --white: #ffffff;
    --neon-green: #76FF03;
    --bg: #EAF8FF;
    --glass: rgba(255, 255, 255, 0.6);
    --glass-2: rgba(255, 255, 255, 0.12);
    --card-shadow: 0 10px 30px rgba(2, 20, 36, 0.06);
    --radius: 18px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    background: linear-gradient(180deg, var(--bg), #f7fdff);
    color: #022;
}

a {
    color: inherit;
    text-decoration: none
}

/* Layout */
header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 80
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
    backdrop-filter: blur(6px);
    box-shadow: var(--card-shadow);
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--light-blue), var(--aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800
}

nav ul {
    display: flex;
    gap: 14px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0
}

nav li {
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer
}

nav li:hover {
    background: rgba(255, 255, 255, 0.35)
}

.cta {
    background: linear-gradient(90deg, var(--neon-green), #c7ff5a);
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(118, 255, 3, 0.12)
}

main {
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 24px
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 36px;
    align-items: center
}

.hero-left {
    padding: 12px
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: var(--glass-2);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px
}

h1 {
    font-size: clamp(28px, 6vw, 52px);
    margin: 12px 0;
    line-height: 1.02
}

p.lead {
    color: #03434f;
    margin: 12px 0 20px;
    font-size: 16px
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--light-blue), var(--aqua));
    color: var(--white);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transform-origin: center
}

.book-btn:hover {
    filter: brightness(1.03);
}

.hero-right {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center
}

.card-stage {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow: 0 14px 40px rgba(2, 40, 80, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

/* laundry graphic */
.laundry-canvas {
    position: relative;
    width: 92%;
    height: 88%;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.85
}

/* small icons */
.icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 18px rgba(2, 20, 36, 0.06)
}

/* About timeline */
.timeline {
    margin-top: 60px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
}

.milestone {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 8px
}

.milestone .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-blue);
    margin-top: 6px
}

/* Contact */
.contact {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px
}

.contact-form {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

.field {
    position: relative;
    margin-bottom: 14px
}

.field input,
.field textarea {
    width: 100%;
    padding: 18px 12px;
    border-radius: 12px;
    border: 1px solid rgba(2, 40, 60, 0.06);
    outline: none;
    font-size: 15px;
    background: transparent
}

.field label {
    position: absolute;
    left: 12px;
    top: 14px;
    transition: all .18s ease;
    font-size: 13px;
    color: #035
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
    transform: translateY(-52%) scale(.92);
    background: var(--white);
    padding: 0 8px;
    border-radius: 6px
}

footer {
    margin-top: 36px;
    padding: 22px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    display: flex;
    justify-content: space-between;
    align-items: center
}

/* responsive */
@media (max-width:1000px) {
    .hero {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact {
        grid-template-columns: 1fr
    }

    header {
        left: 12px;
        transform: none;
        width: auto
    }
}

@media (max-width:560px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    h1 {
        font-size: 28px
    }

    .hero-right {
        height: 320px
    }
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 14px 40px rgba(2, 40, 80, 0.08);
    animation: floatImg 4s ease-in-out infinite alternate;
}

@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.why-us h2,
.testimonials h2,
.stats h2 {
    font-size: clamp(24px, 4vw, 36px);
    text-align: center;
}

/* small flourish */
.floating-note {
    position: absolute;
    right: 18px;
    top: 16px;
    font-size: 12px;
    padding: 8px 10px;
    background: linear-gradient(90deg, var(--light-blue), var(--aqua));
    color: var(--white);
    border-radius: 999px
}






/* ==== Service Blocks ==== */
.services-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 60px 8%;
}

.service-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(8px);

    box-shadow: 0 6px 20px rgba(0, 50, 80, 0.08);
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(0, 70, 120, 0.15);
}

.service-block h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #06c;
}

.service-block p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #044;
}

.service-block ul {
    margin: 0 0 16px 18px;
    padding: 0;
    color: #055;
}

.service-block .price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #024;
}

.service-block .book-btn {
    padding: 10px 18px;
    background: #06c;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.service-block .book-btn:hover {
    background: #048;
}

/* ==== Packages ==== */
.packages {
    padding: 60px 8%;
    text-align: center;
    background: #f0faff;
}

.packages h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #024;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.package-card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    width: 280px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 60, 100, 0.08);
    transition: 0.3s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 70, 120, 0.15);
}

.package-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #06c;
}

.package-card p {
    font-size: 14px;
    color: #055;
    margin-bottom: 16px;
}

.package-card .price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #024;
}

.package-card .book-btn {
    background: #06c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.package-card .book-btn:hover {
    background: #059;
}

.package-card.highlight {
    border: 2px solid #06c;
    transform: scale(1.05);
}

/* ==== FAQ ==== */
.faq {
    padding: 70px 8%;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #024;
}

.faq-item {
    background: #f8fbfd;
    border: 1px solid #d9ebf7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: 0.3s;
}

.faq-item:hover {
    background: #eaf6ff;
}

.faq-item h4 {
    margin: 0 0 8px;
    color: #06c;
    font-size: 18px;
}

.faq-item p {
    margin: 0;
    font-size: 15px;
    color: #044;
}


/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 100;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #022;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
@media (max-width:900px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        /* full screen height */
        width: 240px;
        flex-direction: column;
        background: #fff;
        /* full white background */
        padding-top: 80px;
        gap: 20px;
        transition: right 0.35s ease;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
        z-index: 99;
    }

    nav ul.open {
        right: 0;
    }

    nav li {
        padding: 14px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    header {
        left: 12px;
        transform: none;
        width: calc(100% - 24px);
    }

    /* Optional: overlay to cover rest of screen when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        /* semi-transparent overlay */
        z-index: 98;
    }
}