/* ============================================================
   CALM & CLEAN
   HOME CLEANING SERVICE PAGE
   VERSION 2.0
   ============================================================ */


/* ============================================================
   PAGE RESET / ISOLATION
   ============================================================ */

.cc-home-page,
.cc-home-page *,
.cc-home-page *::before,
.cc-home-page *::after {
    box-sizing: border-box;
}

.cc-home-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Inter", Arial, sans-serif;
    color: #0d1b2a;
    line-height: 1.6;
    background: #ffffff;
}

.cc-home-page img {
    max-width: 100%;
    height: auto;
}

.cc-home-page a {
    text-decoration: none;
}

.cc-home-page h1,
.cc-home-page h2,
.cc-home-page h3,
.cc-home-page h4,
.cc-home-page p {
    margin-top: 0;
}

.cc-home-page h1,
.cc-home-page h2,
.cc-home-page h3 {
    font-family: "Poppins", "Inter", Arial, sans-serif;
}


/* ============================================================
   CONTAINER
   ============================================================ */

.cc-home-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* ============================================================
   EYEBROW
   ============================================================ */

.cc-home-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: #c9a86a;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ============================================================
   HERO
   ============================================================ */

.cc-home-hero {
    position: relative;
    isolation: isolate;
    min-height: 650px;

    display: flex;
    align-items: center;

    background-image:
        url("../images/cover-page.jpg");

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    color: #ffffff;
}

.cc-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 35, 0.88) 0%,
            rgba(7, 22, 35, 0.68) 48%,
            rgba(7, 22, 35, 0.30) 100%
        );
}

.cc-home-hero-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 650px;
}

.cc-home-hero-content {
    width: 100%;
    max-width: 720px;
    padding: 80px 0;
}

.cc-home-hero-content h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.cc-home-hero-subtitle {
    max-width: 650px;

    margin: 0 0 16px;

    color: #65b32e;

    font-size: clamp(19px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.4;
}

.cc-home-hero-text {
    max-width: 650px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 17px;
    line-height: 1.75;
}

.cc-home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.cc-home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;

    margin-top: 30px;
}

.cc-home-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 600;
}

.cc-home-hero-trust i {
    color: #65b32e;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.cc-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 13px 24px;

    border: 2px solid transparent;
    border-radius: 8px;

    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-home-btn:hover {
    transform: translateY(-2px);
}

.cc-home-btn-primary {
    background: #c9a86a;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cc-home-btn-primary:hover {
    background: #b08f55;
    color: #ffffff;
}

.cc-home-btn-secondary {
    background: #ffffff;
    color: #0d1b2a;
}

.cc-home-btn-secondary:hover {
    background: #f3f5f7;
    color: #0d1b2a;
}


/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.cc-home-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.cc-home-light {
    background: #f7f8fa;
}

.cc-home-dark {
    background: #0d1b2a;
    color: #ffffff;
}

.cc-home-dark-intro h2,
.cc-home-dark-intro p {
    color: #ffffff;
}


/* ============================================================
   TWO COLUMN
   ============================================================ */

.cc-home-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: start;
}

.cc-home-heading h2 {
    max-width: 500px;

    margin: 0;

    color: #0d1b2a;

    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.cc-home-content {
    min-width: 0;
}

.cc-home-content p {
    margin: 0 0 20px;

    color: #4b5563;

    font-size: 17px;
    line-height: 1.8;
}

.cc-home-content p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   SECTION INTRO
   ============================================================ */

.cc-home-section-intro {
    max-width: 760px;
    margin: 0 auto 50px;

    text-align: center;
}

.cc-home-section-intro h2 {
    margin: 0 0 16px;

    color: #0d1b2a;

    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.cc-home-section-intro p {
    max-width: 700px;
    margin: 0 auto;

    color: #5b6470;

    font-size: 16px;
    line-height: 1.75;
}


/* ============================================================
   CLEANING CARDS
   ============================================================ */

.cc-home-cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cc-home-cleaning-card {
    min-width: 0;

    padding: 32px 28px;

    background: #ffffff;

    border: 1px solid #e7ebef;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(13, 27, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.cc-home-cleaning-card:hover {
    transform: translateY(-5px);

    border-color: #c9a86a;

    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.10);
}

.cc-home-card-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 12px;

    background: rgba(201, 168, 106, 0.12);

    color: #c9a86a;

    font-size: 22px;
}

.cc-home-cleaning-card h3 {
    margin: 0 0 10px;

    color: #0d1b2a;

    font-size: 20px;
    font-weight: 750;
}

.cc-home-cleaning-card p {
    margin: 0;

    color: #606975;

    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   CHECKLIST
   ============================================================ */

.cc-home-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.cc-home-checklist-column {
    min-width: 0;
}

.cc-home-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 16px 0;

    border-bottom: 1px solid #e8ebef;

    color: #39424e;

    font-size: 16px;
    font-weight: 600;
}

.cc-home-check-item i {
    flex: 0 0 auto;

    width: 23px;
    height: 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #65b32e;
    color: #ffffff;

    font-size: 11px;
}


/* ============================================================
   REGULAR CLEANING
   ============================================================ */

.cc-home-regular-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.cc-home-regular-card {
    min-width: 0;

    padding: 34px 28px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.05);

    text-align: center;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.cc-home-regular-card:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.08);
}

.cc-home-regular-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(201, 168, 106, 0.15);

    color: #c9a86a;

    font-size: 23px;
}

.cc-home-regular-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 21px;
}

.cc-home-regular-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   BENEFITS
   ============================================================ */

.cc-home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.cc-home-benefit-card {
    min-width: 0;

    padding: 30px 24px;

    border: 1px solid #e7ebef;
    border-radius: 14px;

    background: #ffffff;

    box-shadow: 0 7px 25px rgba(13, 27, 42, 0.05);

    text-align: center;
}

.cc-home-benefit-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 12px;

    background: rgba(101, 179, 46, 0.10);

    color: #65b32e;

    font-size: 21px;
}

.cc-home-benefit-card h3 {
    margin: 0 0 10px;

    color: #0d1b2a;

    font-size: 19px;
}

.cc-home-benefit-card p {
    margin: 0;

    color: #65707c;

    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   SUITABLE FOR
   ============================================================ */

.cc-home-suitable-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.cc-home-suitable-card {
    min-width: 0;

    padding: 32px 24px;

    border-radius: 14px;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(13, 27, 42, 0.06);

    text-align: center;
}

.cc-home-suitable-card > i {
    display: block;

    margin-bottom: 18px;

    color: #c9a86a;

    font-size: 32px;
}

.cc-home-suitable-card h3 {
    margin: 0 0 9px;

    color: #0d1b2a;

    font-size: 19px;
}

.cc-home-suitable-card p {
    margin: 0;

    color: #65707c;

    font-size: 14px;
    line-height: 1.65;
}


/* ============================================================
   PROCESS
   ============================================================ */

.cc-home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.cc-home-process-card {
    position: relative;
    min-width: 0;

    padding: 38px 28px;

    border: 1px solid #e6eaee;
    border-radius: 14px;

    background: #ffffff;

    text-align: center;
}

.cc-home-process-number {
    display: inline-block;

    margin-bottom: 18px;

    color: #c9a86a;

    font-size: 27px;
    font-weight: 800;
}

.cc-home-process-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #0d1b2a;
    color: #ffffff;

    font-size: 20px;
}

.cc-home-process-card h3 {
    margin: 0 0 10px;

    color: #0d1b2a;

    font-size: 21px;
}

.cc-home-process-card p {
    margin: 0;

    color: #65707c;

    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   FAQ
   ============================================================ */

.cc-home-faq {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}

.cc-home-faq-item {
    margin-bottom: 12px;

    border: 1px solid #e2e7eb;
    border-radius: 10px;

    background: #ffffff;

    overflow: hidden;
}

.cc-home-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 22px;

    color: #0d1b2a;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.cc-home-faq-item summary::-webkit-details-marker {
    display: none;
}

.cc-home-faq-item summary span {
    flex: 0 0 auto;

    color: #c9a86a;

    font-size: 24px;
    font-weight: 400;

    transition: transform 0.2s ease;
}

.cc-home-faq-item[open] summary span {
    transform: rotate(45deg);
}

.cc-home-faq-answer {
    padding: 0 22px 22px;

    color: #5d6873;

    font-size: 15px;
    line-height: 1.75;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.cc-home-final-cta {
    width: 100%;

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #0d1b2a 0%,
            #132c42 100%
        );

    color: #ffffff;
}

.cc-home-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cc-home-final-content {
    min-width: 0;
    max-width: 700px;
}

.cc-home-final-content h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);
    font-weight: 800;
    line-height: 1.15;
}

.cc-home-final-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;
    line-height: 1.7;
}

.cc-home-final-actions {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;

    gap: 12px;
}

.cc-home-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.cc-home-btn-whatsapp:hover {
    background: #1ebe59;
    color: #ffffff;
}

.cc-home-btn-outline {
    border-color: #c9a86a;
    background: transparent;
    color: #c9a86a;
}

.cc-home-btn-outline:hover {
    background: #c9a86a;
    color: #ffffff;
}


/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.cc-home-floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 12px 18px;

    border-radius: 999px;

    background: #25d366;
    color: #ffffff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    font-size: 14px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-home-floating-whatsapp:hover {
    transform: translateY(-3px);

    color: #ffffff;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cc-home-floating-whatsapp i {
    font-size: 20px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1000px) {

    .cc-home-hero,
    .cc-home-hero-inner {
        min-height: 580px;
    }

    .cc-home-hero-content {
        padding: 70px 0;
    }

    .cc-home-two-column {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cc-home-cleaning-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-home-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-home-suitable-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-home-regular-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cc-home-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .cc-home-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cc-home-section {
        padding: 65px 0;
    }

    .cc-home-hero {
        min-height: 650px;

        background-position: 60% center;
    }

    .cc-home-hero-inner {
        min-height: 650px;
    }

    .cc-home-hero-content {
        padding: 55px 0;
    }

    .cc-home-hero-content h1 {
        font-size: 38px;
        letter-spacing: -0.8px;
    }

    .cc-home-hero-subtitle {
        font-size: 18px;
    }

    .cc-home-hero-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .cc-home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cc-home-hero-actions .cc-home-btn {
        width: 100%;
    }

    .cc-home-hero-trust {
        flex-direction: column;
        gap: 10px;
    }

    .cc-home-heading h2,
    .cc-home-section-intro h2,
    .cc-home-final-content h2 {
        font-size: 30px;
    }

    .cc-home-section-intro {
        margin-bottom: 35px;
    }

    .cc-home-cleaning-grid,
    .cc-home-benefits-grid,
    .cc-home-suitable-grid,
    .cc-home-regular-grid,
    .cc-home-process-grid,
    .cc-home-checklist-grid {
        grid-template-columns: 1fr;
    }

    .cc-home-cleaning-card,
    .cc-home-benefit-card,
    .cc-home-suitable-card,
    .cc-home-regular-card,
    .cc-home-process-card {
        padding: 27px 22px;
    }

    .cc-home-check-item {
        padding: 14px 0;
    }

    .cc-home-final-cta {
        padding: 60px 0;
    }

    .cc-home-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .cc-home-final-actions .cc-home-btn {
        width: 100%;
    }

    .cc-home-floating-whatsapp {
        right: 15px;
        bottom: 15px;

        min-height: 48px;
        padding: 11px 16px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .cc-home-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .cc-home-hero-content h1 {
        font-size: 33px;
    }

    .cc-home-eyebrow {
        font-size: 11px;
        letter-spacing: 1.1px;
    }

    .cc-home-floating-whatsapp span {
        display: none;
    }

    .cc-home-floating-whatsapp {
        width: 52px;
        height: 52px;
        padding: 0;
    }

    .cc-home-floating-whatsapp i {
        font-size: 22px;
    }

}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.cc-home-page a:focus-visible,
.cc-home-page summary:focus-visible {
    outline: 3px solid #65b32e;
    outline-offset: 3px;
}


/* ============================================================
   REDUCE MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .cc-home-page *,
    .cc-home-page *::before,
    .cc-home-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}