/*
Theme Name: Calm & Clean
Theme URI: https://calmandcleanuae.com/
Author: CALM & CLEAN
Description: Custom responsive WordPress theme for CALM & CLEAN Building Cleaning Services L.L.C.
Version: 1.0
*/

/* ============================================================
   1. GLOBAL RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, sans-serif;
    color: #0d1b2a;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
}


/* ============================================================
   2. VARIABLES
============================================================ */

:root {
    --cc-navy: #0d1b2a;
    --cc-navy-light: #16324f;
    --cc-green: #2ecc71;
    --cc-green-dark: #20a85a;
    --cc-white: #ffffff;
    --cc-bg: #f8fafc;
    --cc-bg-soft: #f1f5f9;
    --cc-border: #e2e8f0;
    --cc-text: #334155;
    --cc-muted: #64748b;
    --cc-shadow: 0 15px 45px rgba(13, 27, 42, 0.08);
    --cc-radius: 18px;
    --cc-radius-small: 12px;
    --cc-container: 1200px;
}


/* ============================================================
   3. GLOBAL CONTAINER
============================================================ */

.cc-container {
    width: min(100% - 40px, var(--cc-container));
    margin-left: auto;
    margin-right: auto;
}


/* ============================================================
   4. MAIN PAGE
============================================================ */

.homepage {
    width: 100%;
    overflow: hidden;
}

.site-main {
    width: 100%;
}


/* ============================================================
   5. TYPOGRAPHY
============================================================ */

.cc-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--cc-green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.cc-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.cc-section-heading h2 {
    margin-bottom: 16px;
    color: var(--cc-navy);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
}

.cc-section-heading p {
    margin-bottom: 0;
    color: var(--cc-muted);
    font-size: 17px;
    line-height: 1.7;
}


/* ============================================================
   6. BUTTONS
============================================================ */

.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.cc-btn:hover {
    transform: translateY(-2px);
}

.cc-btn-primary {
    color: #ffffff;
    background: var(--cc-navy);
    box-shadow: 0 8px 20px rgba(13, 27, 42, 0.16);
}

.cc-btn-primary:hover {
    color: #ffffff;
    background: var(--cc-navy-light);
}

.cc-btn-secondary {
    color: var(--cc-navy);
    background: #ffffff;
    border-color: var(--cc-navy);
}

.cc-btn-secondary:hover {
    color: #ffffff;
    background: var(--cc-navy);
}

.cc-btn-whatsapp {
    gap: 9px;
    color: #ffffff;
    background: var(--cc-green);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.20);
}

.cc-btn-whatsapp:hover {
    color: #ffffff;
    background: var(--cc-green-dark);
}


/* ============================================================
   7. HERO
============================================================ */

.cc-hero {
    position: relative;
    padding: 85px 0 90px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(46, 204, 113, 0.10),
            transparent 32%
        ),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 65%);
}

.cc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 70px;
    align-items: center;
}

.cc-hero-content {
    min-width: 0;
}

.cc-hero-content h1 {
    max-width: 700px;
    margin: 0 0 22px;
    color: var(--cc-navy);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.cc-hero-text {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--cc-text);
    font-size: 18px;
    line-height: 1.75;
}

.cc-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cc-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 35px;
    max-width: 700px;
}

.cc-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--cc-muted);
    font-size: 12px;
    font-weight: 700;
}

.cc-trust-item i {
    flex: 0 0 auto;
    color: var(--cc-green-dark);
    font-size: 15px;
}

.cc-hero-image {
    position: relative;
    min-width: 0;
}

.cc-hero-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #e2e8f0;
    box-shadow: 0 25px 60px rgba(13, 27, 42, 0.16);
}

.cc-hero-image-wrap img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.cc-hero-badge {
    position: absolute;
    right: -18px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 240px;
    padding: 16px 20px;
    border-radius: 14px;
    color: #ffffff;
    background: var(--cc-navy);
    box-shadow: var(--cc-shadow);
}

.cc-hero-badge strong {
    font-size: 15px;
}

.cc-hero-badge span {
    color: #dbeafe;
    font-size: 12px;
}


/* ============================================================
   8. BOOKING SECTION
============================================================ */

.cc-booking-section {
    position: relative;
    z-index: 2;
    padding: 70px 0;
    background: #ffffff;
}

.cc-booking-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
    align-items: center;
    padding: 45px;
    border: 1px solid var(--cc-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--cc-shadow);
}

.cc-booking-intro h2 {
    margin-bottom: 15px;
    color: var(--cc-navy);
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.15;
}

.cc-booking-intro p {
    margin-bottom: 0;
    color: var(--cc-muted);
    font-size: 16px;
}

.cc-booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cc-form-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cc-form-group label {
    margin-bottom: 7px;
    color: var(--cc-navy);
    font-size: 13px;
    font-weight: 700;
}

.cc-form-group input,
.cc-form-group select,
.cc-form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    outline: none;
    color: var(--cc-navy);
    background: #ffffff;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.cc-form-group input:focus,
.cc-form-group select:focus,
.cc-form-group textarea:focus {
    border-color: var(--cc-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.12);
}

.cc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cc-error {
    display: none;
    margin-top: 5px;
    color: #dc2626;
    font-size: 12px;
    line-height: 1.4;
}

.cc-booking-submit {
    width: 100%;
    margin-top: 4px;
    border: 0;
}


/* ============================================================
   9. GENERAL SECTIONS
============================================================ */

.cc-section {
    padding: 95px 0;
}

.cc-services {
    background: var(--cc-bg);
}

.cc-why {
    background: #ffffff;
}

.cc-move {
    background: var(--cc-bg);
}

.cc-process {
    background: #ffffff;
}

.cc-areas {
    background: var(--cc-bg);
}

.cc-faq {
    background: #ffffff;
}


/* ============================================================
   10. SERVICE CARDS
============================================================ */

.cc-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cc-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.05);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.cc-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.45);
    box-shadow: var(--cc-shadow);
}

.cc-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--cc-green-dark);
    background: rgba(46, 204, 113, 0.10);
    font-size: 21px;
}

.cc-service-card h3 {
    margin-bottom: 10px;
    color: var(--cc-navy);
    font-size: 21px;
    line-height: 1.25;
}

.cc-service-card p {
    margin-bottom: 18px;
    color: var(--cc-muted);
    font-size: 14px;
    line-height: 1.65;
}

.cc-service-price {
    margin-top: auto;
    margin-bottom: 18px;
    color: var(--cc-muted);
    font-size: 14px;
}

.cc-service-price strong {
    color: var(--cc-navy);
    font-size: 24px;
    font-weight: 800;
}

.cc-service-price small {
    font-size: 13px;
}

.cc-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--cc-border);
    color: var(--cc-green-dark);
    font-size: 14px;
    font-weight: 800;
}

.cc-service-link:hover {
    color: var(--cc-navy);
}


/* ============================================================
   11. MONTHLY SERVICE CARD
============================================================ */

.cc-monthly-service-card {
    border-color: rgba(46, 204, 113, 0.35);
}

.cc-service-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 5px 9px;
    border-radius: 50px;
    color: #166534;
    background: #dcfce7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.cc-monthly-mini-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.cc-monthly-mini-info span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--cc-text);
    font-size: 12px;
    line-height: 1.4;
}

.cc-monthly-mini-info i {
    margin-top: 3px;
    color: var(--cc-green-dark);
}


/* ============================================================
   12. MONTHLY PROMO
============================================================ */

.cc-monthly-plan-promo {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    margin-top: 35px;
    padding: 28px 32px;
    border-radius: var(--cc-radius);
    background: var(--cc-navy);
    color: #ffffff;
}

.cc-monthly-plan-promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 15px;
    color: var(--cc-green);
    background: rgba(46, 204, 113, 0.12);
    font-size: 22px;
}

.cc-monthly-plan-promo-content .cc-eyebrow {
    margin-bottom: 5px;
}

.cc-monthly-plan-promo-content h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 22px;
}

.cc-monthly-plan-promo-content p {
    max-width: 720px;
    margin-bottom: 0;
    color: #cbd5e1;
    font-size: 14px;
}

.cc-monthly-plan-promo-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
    white-space: nowrap;
}

.cc-monthly-plan-promo-action strong {
    color: #ffffff;
    font-size: 18px;
}

.cc-services-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
    text-align: center;
}

.cc-services-footer p {
    margin-bottom: 0;
    color: var(--cc-muted);
    font-size: 15px;
}


/* ============================================================
   13. WHY CHOOSE US
============================================================ */

.cc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.cc-benefit {
    padding: 30px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: #ffffff;
}

.cc-benefit > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 13px;
    color: var(--cc-green-dark);
    background: rgba(46, 204, 113, 0.10);
    font-size: 20px;
}

.cc-benefit h3 {
    margin-bottom: 9px;
    color: var(--cc-navy);
    font-size: 18px;
}

.cc-benefit p {
    margin-bottom: 0;
    color: var(--cc-muted);
    font-size: 14px;
    line-height: 1.65;
}


/* ============================================================
   14. MOVE-IN / MOVE-OUT
============================================================ */

.cc-move-grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 25px;
    align-items: stretch;
}

.cc-move-content,
.cc-move-cta {
    padding: 35px;
    border-radius: var(--cc-radius);
}

.cc-move-content {
    border: 1px solid var(--cc-border);
    background: #ffffff;
}

.cc-move-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background: var(--cc-navy);
}

.cc-move-content h3,
.cc-move-cta h3 {
    margin-bottom: 18px;
    font-size: 23px;
}

.cc-move-cta h3 {
    color: #ffffff;
}

.cc-move-cta p {
    margin-bottom: 22px;
    color: #cbd5e1;
}

.cc-check-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    list-style: none;
}

.cc-check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--cc-text);
    font-size: 15px;
}

.cc-check-list i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--cc-green-dark);
}


/* ============================================================
   15. HOW IT WORKS
============================================================ */

.cc-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.cc-process-step {
    position: relative;
    padding: 30px 25px;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);
    background: #ffffff;
    text-align: center;
}

.cc-process-step > span {
    position: absolute;
    top: 15px;
    right: 18px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 800;
}

.cc-process-step > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: var(--cc-green-dark);
    background: rgba(46, 204, 113, 0.10);
    font-size: 22px;
}

.cc-process-step h3 {
    margin-bottom: 9px;
    color: var(--cc-navy);
    font-size: 18px;
}

.cc-process-step p {
    margin-bottom: 0;
    color: var(--cc-muted);
    font-size: 13px;
}


/* ============================================================
   16. SERVICE AREAS
============================================================ */

.cc-area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.cc-area-list span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 16px;
    border: 1px solid var(--cc-border);
    border-radius: 50px;
    color: var(--cc-text);
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
}


/* ============================================================
   17. FAQ
============================================================ */

.cc-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.cc-faq-list details {
    border-bottom: 1px solid var(--cc-border);
}

.cc-faq-list details:first-child {
    border-top: 1px solid var(--cc-border);
}

.cc-faq-list summary {
    position: relative;
    padding: 21px 45px 21px 0;
    color: var(--cc-navy);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    list-style: none;
}

.cc-faq-list summary::-webkit-details-marker {
    display: none;
}

.cc-faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    color: var(--cc-green-dark);
    font-size: 24px;
    font-weight: 400;
}

.cc-faq-list details[open] summary::after {
    content: "−";
}

.cc-faq-list details p {
    max-width: 760px;
    margin: -5px 0 22px;
    color: var(--cc-muted);
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   18. FINAL CTA
============================================================ */

.cc-final-cta {
    padding: 90px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(46, 204, 113, 0.18),
            transparent 30%
        ),
        var(--cc-navy);
}

.cc-final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cc-final-cta .cc-eyebrow {
    color: var(--cc-green);
}

.cc-final-cta h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
}

.cc-final-cta p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: #cbd5e1;
    font-size: 17px;
}


/* ============================================================
   19. FLOATING BUTTONS
============================================================ */

.cc-floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 125px;
    min-height: 48px;
    padding: 10px 15px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease;
}

.cc-floating-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.cc-floating-call {
    background: var(--cc-navy);
}

.cc-floating-whatsapp {
    background: var(--cc-green);
}


/* ============================================================
   20. WORDPRESS / THEME SAFETY
============================================================ */

.wp-site-blocks,
.wp-block-group,
.entry-content {
    max-width: none;
}

.entry-content > * {
    max-width: none;
}

.site-main > article {
    margin: 0;
}

.page-template-page-home .site-content,
.page-template-front-page .site-content {
    padding: 0;
}

.homepage p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   21. TABLET
============================================================ */

@media (max-width: 1024px) {

    .cc-container {
        width: min(100% - 32px, var(--cc-container));
    }

    .cc-hero {
        padding: 65px 0 70px;
    }

    .cc-hero-grid {
        gap: 40px;
    }

    .cc-hero-content h1 {
        font-size: clamp(36px, 5vw, 52px);
    }

    .cc-hero-image-wrap img {
        min-height: 450px;
    }

    .cc-booking-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }

    .cc-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-monthly-plan-promo {
        grid-template-columns: auto 1fr;
    }

    .cc-monthly-plan-promo-action {
        grid-column: 1 / -1;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

}


/* ============================================================
   22. MOBILE
============================================================ */

@media (max-width: 767px) {

    .cc-container {
        width: min(100% - 28px, var(--cc-container));
    }

    .cc-hero {
        padding: 45px 0 55px;
    }

    .cc-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cc-hero-content h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
    }

    .cc-hero-text {
        font-size: 16px;
        line-height: 1.65;
    }

    .cc-hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cc-btn {
        width: 100%;
    }

    .cc-trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px 10px;
        margin-top: 28px;
    }

    .cc-trust-item {
        font-size: 11px;
    }

    .cc-hero-image-wrap {
        border-radius: 20px;
    }

    .cc-hero-image-wrap img {
        min-height: 340px;
        max-height: 470px;
    }

    .cc-hero-badge {
        right: 12px;
        bottom: 15px;
        max-width: 200px;
        padding: 12px 14px;
    }

    .cc-hero-badge strong {
        font-size: 13px;
    }

    .cc-hero-badge span {
        font-size: 11px;
    }

    .cc-booking-section {
        padding: 45px 0;
    }

    .cc-booking-box {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .cc-form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cc-section {
        padding: 65px 0;
    }

    .cc-section-heading {
        margin-bottom: 32px;
    }

    .cc-section-heading h2 {
        font-size: 30px;
    }

    .cc-section-heading p {
        font-size: 15px;
    }

    .cc-service-grid,
    .cc-benefit-grid,
    .cc-process-grid {
        grid-template-columns: 1fr;
    }

    .cc-service-card,
    .cc-benefit,
    .cc-process-step {
        padding: 24px;
    }

    .cc-monthly-plan-promo {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 25px 22px;
    }

    .cc-monthly-plan-promo-action {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cc-monthly-plan-promo-action .cc-btn {
        width: 100%;
    }

    .cc-move-grid {
        grid-template-columns: 1fr;
    }

    .cc-move-content,
    .cc-move-cta {
        padding: 25px;
    }

    .cc-final-cta {
        padding: 65px 0;
    }

    .cc-final-cta h2 {
        font-size: 32px;
    }

    .cc-final-cta p {
        font-size: 15px;
    }

    .cc-floating-buttons {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }

    .cc-floating-btn {
        min-width: 108px;
        min-height: 44px;
        padding: 9px 12px;
        font-size: 12px;
    }

}


/* ============================================================
   23. SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .cc-container {
        width: min(100% - 22px, var(--cc-container));
    }

    .cc-hero-content h1 {
        font-size: 34px;
    }

    .cc-eyebrow {
        font-size: 11px;
    }

    .cc-trust-row {
        grid-template-columns: 1fr 1fr;
    }

    .cc-trust-item {
        font-size: 10px;
    }

    .cc-hero-image-wrap img {
        min-height: 290px;
    }

    .cc-service-card {
        padding: 22px;
    }

    .cc-service-card h3 {
        font-size: 19px;
    }

    .cc-service-price strong {
        font-size: 22px;
    }

    .cc-area-list {
        gap: 7px;
    }

    .cc-area-list span {
        padding: 8px 12px;
        font-size: 12px;
    }

    .cc-floating-btn {
        min-width: 50px;
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
    }

    .cc-floating-btn span {
        display: none;
    }

}


/* ============================================================
   CALM & CLEAN — STICKY HEADER
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 2px 12px rgba(13, 27, 42, 0.06);
}

/* Header inner container */
.site-header-inner {
    width: 100%;
    max-width: 1280px;
    min-height: 78px;
    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ============================================================
   LOGO
   ============================================================ */

.site-branding {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    display: block;
    width: auto;
    max-width: 200px;
    height: auto;
    max-height: 62px;
}


/* ============================================================
   DESKTOP NAVIGATION
   ============================================================ */

.header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.header-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.header-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 29px 11px;

    color: #0d1b2a;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.header-menu > li > a:hover {
    color: #2ecc71;
}


/* ============================================================
   SERVICES DROPDOWN
   ============================================================ */

.header-menu .menu-item-has-children {
    position: relative;
}

.submenu-arrow {
    font-size: 11px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.header-menu .menu-item-has-children:hover .submenu-arrow {
    transform: rotate(180deg);
}

.header-menu .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;

    width: 260px;

    margin: 0;
    padding: 10px 0;

    list-style: none;

    background: #ffffff;
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: 0 0 12px 12px;

    box-shadow: 0 12px 30px rgba(13, 27, 42, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 10000;
}

.header-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.header-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.header-menu .sub-menu li a {
    display: block;

    padding: 11px 18px;

    color: #0d1b2a;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.header-menu .sub-menu li a:hover {
    color: #2ecc71;
    background: #f8fafc;
}


/* ============================================================
   HEADER CTA BUTTONS
   ============================================================ */

.header-cta {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn-primary,
.header-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 42px;
    padding: 0 15px;

    border-radius: 8px;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
    white-space: nowrap;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.header-btn-primary {
    color: #ffffff;
    background: #0d1b2a;
}

.header-btn-primary:hover {
    color: #ffffff;
    background: #162d43;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(13, 27, 42, 0.18);
}

.header-btn-whatsapp {
    color: #ffffff;
    background: #2ecc71;
}

.header-btn-whatsapp:hover {
    color: #ffffff;
    background: #25b863;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.22);
}


/* ============================================================
   MOBILE MENU TOGGLE
   ============================================================ */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;
    border-radius: 8px;

    background: #f8fafc;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: #0d1b2a;
    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */

.mobile-navigation {
    display: none;
}


/* ============================================================
   MOBILE / TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .site-header-inner {
        min-height: 72px;
        padding: 0 20px;
        gap: 15px;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .site-logo {
        max-width: 180px;
        max-height: 58px;
    }

    .mobile-navigation {
        position: absolute;
        top: 100%;
        left: 0;

        display: block;

        width: 100%;
        max-height: calc(100vh - 72px);

        overflow-y: auto;

        background: #ffffff;
        border-top: 1px solid rgba(13, 27, 42, 0.08);

        box-shadow: 0 15px 35px rgba(13, 27, 42, 0.14);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;

        z-index: 9998;
    }

    .mobile-navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu {
        margin: 0;
        padding: 10px 18px 18px;

        list-style: none;
    }

    .mobile-menu > li {
        margin: 0;
        padding: 0;

        border-bottom: 1px solid #edf1f4;
    }

    .mobile-menu > li:last-child {
        border-bottom: 0;
    }

    .mobile-menu a,
    .mobile-services-toggle {
        width: 100%;

        min-height: 50px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;

        padding: 13px 4px;

        color: #0d1b2a;

        background: transparent;
        border: 0;

        font-family: "Inter", sans-serif;
        font-size: 15px;
        font-weight: 600;

        text-align: left;
        text-decoration: none;

        cursor: pointer;
    }

    .mobile-menu a:hover,
    .mobile-services-toggle:hover {
        color: #2ecc71;
    }


    /* Mobile services submenu */

    .mobile-services-submenu {
        display: none;

        margin: 0;
        padding: 0 0 8px 16px;

        list-style: none;
    }

    .mobile-services-submenu.open {
        display: block;
    }

    .mobile-services-submenu li {
        margin: 0;
        padding: 0;
    }

    .mobile-services-submenu a {
        min-height: 42px;

        padding: 9px 8px;

        color: #52606d;

        font-size: 14px;
        font-weight: 500;
    }

    .mobile-services-arrow {
        transition: transform 0.2s ease;
    }

    .mobile-services-toggle.active .mobile-services-arrow {
        transform: rotate(180deg);
    }


    /* Mobile CTA */

    .mobile-menu-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;

        padding: 0 18px 20px;
    }

    .mobile-call-btn,
    .mobile-whatsapp-btn {
        min-height: 48px;

        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 7px;

        border-radius: 8px;

        font-size: 14px !important;
        font-weight: 700 !important;
    }

    .mobile-call-btn {
        color: #ffffff !important;
        background: #0d1b2a !important;
    }

    .mobile-whatsapp-btn {
        color: #ffffff !important;
        background: #2ecc71 !important;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 600px) {

    .site-header-inner {
        min-height: 66px;
        padding: 0 15px;
    }

    .site-logo {
        max-width: 155px;
        max-height: 52px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-navigation {
        max-height: calc(100vh - 66px);
    }

}


/* ============================================================
   PREVENT PAGE SCROLL WHEN MOBILE MENU IS OPEN
   ============================================================ */

body.mobile-menu-open {
    overflow: hidden;
}


/* ============================================================
   IMPORTANT: PREVENT STICKY HEADER FROM BEING BROKEN
   ============================================================ */

html,
body {
    overflow-x: clip;
}

/*
   Do NOT use overflow: hidden/auto on the parent
   of .site-header. Sticky positioning can fail if a
   parent creates an unintended scrolling container.
*/