/*

Tooplate 2159 Mochi Space
Adapted for Kolibri-Cleaning website

*/

:root {
    --primary: rgb(9, 164, 61);
    --primary-dark: rgb(6, 136, 50);
    --primary-soft: rgba(9, 164, 61, 0.12);
    --bg: #f5fbf7;
    --bg-alt: #ecf7ef;
    --text-dark: #173325;
    --text-light: #4f6b5e;
    --white: #ffffff;
    --border: #d7eadd;
    --shadow: 0 18px 40px rgba(23, 51, 37, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.65;
}

h1,
h2,
h3,
.logo {
    font-family: 'Comfortaa', cursive;
}

img {
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.45;
    animation: floatShape 18s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(9, 164, 61, 0.15);
    top: 6%;
    left: -6%;
}

.shape-2 {
    width: 240px;
    height: 240px;
    background: rgba(6, 136, 50, 0.12);
    top: 65%;
    right: -5%;
    animation-delay: -4s;
}

.shape-3 {
    width: 160px;
    height: 160px;
    background: rgba(9, 164, 61, 0.1);
    top: 36%;
    right: 12%;
    animation-delay: -8s;
}

.shape-4 {
    width: 220px;
    height: 220px;
    background: rgba(6, 136, 50, 0.09);
    bottom: 8%;
    left: 20%;
    animation-delay: -12s;
}

@keyframes floatShape {
    0%,
    100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(18px, -22px) scale(1.05); }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 999;
    background: rgba(245, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}

nav.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border);
    box-shadow: 0 8px 28px rgba(23, 51, 37, 0.08);
}

.nav-container {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo img {
    height: 38px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.nav-cta,
.btn,
.mobile-menu-cta,
.app-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.25s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 997;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    right: -320px;
    top: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--white);
    z-index: 998;
    padding: 90px 24px 24px;
    transition: 0.25s;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.16);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.mobile-menu-links a {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 10px;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.mobile-menu-cta {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
}

.hero {
    padding: 150px 0 70px;
}

.hero-content {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-soft);
    border: 1px solid rgba(9, 164, 61, 0.25);
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 8px 16px;
    margin-bottom: 18px;
}

.payment-badge-link {
    margin: 0;
    text-decoration: none;
    white-space: nowrap;
}

.payment-badge-link:hover {
    background: rgba(9, 164, 61, 0.2);
}

.hero h1 {
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    color: var(--text-light);
    margin-bottom: 22px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    padding: 13px 22px;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border-color: rgba(9, 164, 61, 0.4);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--primary-soft);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    padding: 12px 10px;
}

.stat-box strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.stat-box span {
    font-size: 0.82rem;
    color: var(--text-light);
}

section {
    padding: 74px 0;
}

.section-header {
    text-align: center;
    width: min(780px, 92%);
    margin: 0 auto 34px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.45rem);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
}

.features-grid,
.services-grid,
.testimonials-grid,
.preview-screens,
.trust-grid,
.contact-grid,
.footer-content {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.features-grid,
.services-grid,
.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.testimonial-card,
.preview-phone,
.trust-item,
.contact-card,
.footer-column,
.price-card,
.included-list {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(23, 51, 37, 0.06);
}

.feature-image,
.service-card img,
.preview-phone img {
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.feature-image img,
.service-card img,
.preview-phone img {
    height: 210px;
    width: 100%;
    object-fit: cover;
}

.feature-content,
.service-content,
.testimonial-card,
.price-card,
.included-list,
.contact-card {
    padding: 20px;
}

.feature-content h3,
.service-content h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.feature-content p,
.service-content p,
.testimonial-text,
.preview-phone p,
.contact-card p,
.footer-column ul li a,
.footer-brand p {
    color: var(--text-light);
}

.feature-tag {
    display: inline-block;
    margin-top: 10px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.how-it-works {
    background: var(--bg-alt);
}

.steps {
    width: min(1060px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.app-preview .preview-screens {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-phone {
    overflow: hidden;
}

.preview-phone img {
    border-radius: 18px 18px 0 0;
    height: 230px;
}

.preview-phone p {
    padding: 14px 16px 20px;
}

.testimonial-card {
    text-align: left;
}

.testimonial-author {
    margin-top: 10px;
    font-weight: 800;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.download-cta {
    padding-top: 28px;
}

.cta-content {
    width: min(980px, 92%);
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(140deg, #fff, #eaf8ef);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 38px 24px;
    box-shadow: var(--shadow);
}

.cta-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.app-btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    min-width: 215px;
}

.app-btn:hover {
    background: var(--primary-dark);
}

.app-btn-text {
    text-align: left;
}

.app-btn-small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.85;
    line-height: 1.2;
}

.app-btn-large {
    font-size: 1rem;
}

.trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
    padding: 22px;
    text-align: center;
}

.trust-item h3 {
    margin-bottom: 6px;
}

.footer-wrapper {
    width: min(1180px, 92%);
    margin: 0 auto;
}

footer {
    background: #11261b;
    color: #d7e8de;
    padding: 64px 0 22px;
    margin-top: 64px;
}

.footer-content {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
}

.footer-brand .logo {
    color: #eff7f2;
    margin-bottom: 12px;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    text-decoration: none;
}

.footer-column h4 {
    margin-bottom: 10px;
    color: #eff7f2;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-column ul li a {
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #eff7f2;
}

.footer-bottom {
    margin-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.92rem;
    color: #b8cec2;
}

.footer-bottom a {
    color: #d8efe2;
}

.footer-payment-link {
    margin: 0;
    text-decoration: none;
    color: #d8efe2;
    border-color: rgba(141, 219, 171, 0.35);
    background: rgba(141, 219, 171, 0.12);
}

.footer-payment-link:hover {
    background: rgba(141, 219, 171, 0.2);
}

.page-hero {
    padding: 150px 0 56px;
}

.page-hero-content {
    width: min(1050px, 92%);
    margin: 0 auto;
    text-align: left;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 3.8vw, 2.9rem);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-light);
    max-width: 760px;
}

.breadcrumbs {
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary-dark);
    text-decoration: none;
}

.service-layout {
    width: min(1180px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.service-main {
    display: grid;
    gap: 20px;
}

.service-main .hero-card img {
    height: 350px;
}

.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(23, 51, 37, 0.06);
    padding: 24px;
}

.content-card h2 {
    margin-bottom: 10px;
}

.content-card p {
    color: var(--text-light);
}

.included-list ul,
.service-benefits ul,
.contact-list {
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: var(--text-dark);
}

.price-card h3,
.included-list h3,
.service-benefits h3,
.contact-card h3 {
    margin-bottom: 10px;
}

.price-highlight {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.price-note,
.work-hours {
    color: var(--text-light);
}

.service-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.cta-box {
    background: linear-gradient(160deg, #fff, #eaf8ef);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(23, 51, 37, 0.06);
    padding: 22px;
}

.cta-box h3 {
    margin-bottom: 8px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 14px;
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
}

.contact-card iframe,
.map-wrap iframe {
    width: 100%;
    border: 0;
    border-radius: 16px;
    min-height: 300px;
}

.form-grid {
    display: grid;
    gap: 10px;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text-dark);
    background: #fff;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: 2px solid rgba(9, 164, 61, 0.22);
    border-color: var(--primary);
}

.form-grid textarea {
    min-height: 130px;
    resize: vertical;
}

.payment-section {
    padding: 0 0 80px;
}

.payment-wrapper {
    width: min(1050px, 92%);
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(160deg, #fff, #eaf8ef);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(23, 51, 37, 0.06);
    padding: 24px;
    display: grid;
    gap: 16px;
}

.payment-form {
    display: grid;
    gap: 14px;
}

.payment-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.payment-form input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text-dark);
    background: #fff;
}

.payment-form input:focus {
    outline: 2px solid rgba(9, 164, 61, 0.22);
    border-color: var(--primary);
}

#alfa-payment-button {
    display: grid;
    justify-items: start;
    margin-top: 4px;
}

#alfa-payment__button,
.alfa-payment__button {
    appearance: none;
    border: 0;
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 20px !important;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border-radius: 999px !important;
    transition: 0.2s ease;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}

#alfa-payment__button:hover,
.alfa-payment__button:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

#alfa-payment__message {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.55s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content,
    .service-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .features-grid,
    .services-grid,
    .testimonials-grid,
    .app-preview .preview-screens,
    .trust-grid,
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    nav {
        padding: 12px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 32px;
    }

    .nav-cta {
        display: none;
    }

    .payment-badge-link {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-card img,
    .service-main .hero-card img {
        height: 250px;
    }

    .steps,
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .app-preview .preview-screens,
    .trust-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .payment-section {
        padding: 56px 0;
    }

    .payment-wrapper {
        padding: 20px;
        border-radius: 18px;
    }
}
