:root { 
    --navy: #061d3d;
    --navy-dark: #031329;
    --teal: #11a7a7;
    --teal-dark: #078b8b;
    --white: #ffffff;
    --light: #f5f9fb;
    --text: #233044;
    --muted: #6d7a8a;
    --border: #dbe7ee;
    --shadow: 0 16px 40px rgba(6, 29, 61, 0.12);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    font-size: 14px;
}

.top-bar-content {
    padding: 9px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.main-header {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(6, 29, 61, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 700;
}

.brand h1 {
    font-size: 32px;
    color: var(--navy);
    line-height: 1;
    letter-spacing: 1px;
}

.brand p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
}

.site-nav a:hover,
.site-nav a.active {
    background: var(--teal);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    background:
        linear-gradient(110deg, rgba(6, 29, 61, 0.95), rgba(17, 167, 167, 0.78)),
        url("../images/cleaning-hero.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 95px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.eyebrow {
    display: inline-block;
    color: var(--teal);
    background: rgba(255, 255, 255, 0.95);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero p {
    max-width: 620px;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    border: 2px solid transparent;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-dark);
}

.btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.hero-card {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 34px;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.hero-card-inner {
    background: var(--white);
    color: var(--navy);
    border-radius: 25px;
    padding: 45px 35px;
    box-shadow: var(--shadow);
}

.hero-card-inner h3 {
    font-size: 42px;
}

.hero-card-inner h4 {
    font-size: 34px;
    color: var(--teal);
    margin-bottom: 12px;
}

.hero-card-inner p {
    color: var(--text);
    font-size: 17px;
}

.section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading span {
    color: var(--teal);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    margin: 8px 0 12px;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.services-preview {
    background: var(--light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    width: 62px;
    height: 62px;
    background: var(--teal);
    color: var(--white);
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 20px;
}

.service-card p {
    color: var(--muted);
}

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.why-grid h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 45px);
    margin-bottom: 14px;
}

.why-grid p {
    color: var(--muted);
}

.why-list {
    display: grid;
    gap: 16px;
}

.why-list div {
    background: var(--light);
    border-left: 5px solid var(--teal);
    padding: 20px;
    border-radius: 14px;
}

.why-list strong {
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
}

.cta-section {
    padding: 70px 0;
    background: var(--light);
}

.cta-box {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    border-radius: 30px;
    padding: 55px 35px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 35px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--teal) !important;
    font-weight: 700;
    margin-top: 12px;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: var(--white);
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    z-index: 200;
}

/* Public inner pages */
.page-hero {
    background:
        linear-gradient(120deg, rgba(6, 29, 61, 0.96), rgba(17, 167, 167, 0.78)),
        url("../images/cleaning-hero.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 85px 0;
}

.page-hero h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    max-width: 820px;
    margin-bottom: 15px;
}

.page-hero p {
    max-width: 760px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.section-label {
    color: var(--teal);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-grid,
.contact-grid,
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.about-grid h2,
.contact-grid h2,
.quote-grid h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.about-grid p,
.contact-grid p,
.quote-grid p {
    color: var(--muted);
    margin-bottom: 15px;
}

.light-section {
    background: var(--light);
}

.info-card,
.contact-form-box,
.value-card,
.detailed-service-card,
.contact-card,
.gallery-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-card {
    padding: 30px;
}

.info-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    font-weight: 900;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    padding: 28px;
}

.value-card h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detailed-service-card {
    padding: 30px;
}

.detailed-service-card h3 {
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 10px;
}

.detailed-service-card p {
    color: var(--muted);
    margin-bottom: 15px;
}

.detailed-service-card ul {
    padding-left: 18px;
    color: var(--text);
}

.detailed-service-card li {
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    background: #dfe8ee;
}

.gallery-item h3 {
    color: var(--navy);
    padding: 18px;
}

.contact-cards {
    display: grid;
    gap: 15px;
    margin-top: 25px;
}

.contact-card {
    padding: 20px;
}

.contact-card strong {
    color: var(--navy);
    display: block;
    margin-bottom: 5px;
}

.contact-card a {
    color: var(--teal);
    font-weight: 700;
}

.contact-form-box {
    padding: 30px;
}

.contact-form-box h3 {
    color: var(--navy);
    font-size: 26px;
    margin-bottom: 20px;
}

.site-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group label {
    font-weight: 700;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(17, 167, 167, 0.12);
}

.quote-info {
    position: sticky;
    top: 110px;
}

@media (max-width: 950px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        background: var(--white);
        padding: 15px;
        flex-direction: column;
        display: none;
        box-shadow: 0 15px 25px rgba(6, 29, 61, 0.12);
    }

    .site-nav.show {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        text-align: center;
    }

    .hero-grid,
    .why-grid,
    .footer-grid,
    .about-grid,
    .contact-grid,
    .quote-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .service-list-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-info {
        position: static;
    }
}

@media (max-width: 620px) {
    .brand h1 {
        font-size: 26px;
    }

    .brand p {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-card-inner {
        padding: 30px 24px;
    }

    .service-grid,
    .service-list-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .page-hero {
        padding: 65px 0;
    }

    .contact-form-box,
    .info-card,
    .detailed-service-card {
        padding: 22px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 11px 15px;
    }
}