/* =========================================
   IT KOMT GOED
   Main stylesheet
   ========================================= */


/* ---------- VARIABLES ---------- */

:root {
    --blue-dark: #173f5f;
    --blue: #247ba0;
    --blue-light: #eaf5fa;

    --green: #2a9d8f;
    --green-dark: #217a70;
    --green-light: #e8f7f4;

    --yellow: #f4c95d;
    --yellow-light: #fff8df;

    --text: #24323d;
    --text-light: #5e6d78;

    --white: #ffffff;
    --background: #f8fafb;
    --border: #dfe7eb;

    --shadow: 0 12px 35px rgba(23, 63, 95, 0.09);
    --shadow-hover: 0 18px 45px rgba(23, 63, 95, 0.14);

    --radius: 18px;
    --radius-small: 12px;

    --container: 1120px;
}


/* ---------- RESET ---------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 17px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* ---------- GENERAL ---------- */

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--background);
}

.section-blue {
    background: var(--blue-dark);
    color: var(--white);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p:last-child {
    color: var(--text-light);
}

.section-blue .eyebrow {
    color: var(--yellow);
}

.section-blue p {
    color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

h1,
h2,
h3 {
    color: var(--blue-dark);
    line-height: 1.2;
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}

h1 span {
    color: var(--green);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

p {
    margin-top: 0;
}

ul {
    margin: 0;
    padding: 0;
}


/* ---------- HEADER ---------- */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    color: var(--blue-dark);
    font-size: 1.45rem;
    font-weight: 900;
}

.logo-sub {
    color: var(--green-dark);
    font-size: 0.78rem;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 650;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--green-dark);
}


/* ---------- BUTTONS ---------- */

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 24px;
    border-radius: 999px;
    border: none;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

.button-primary:hover {
    background: var(--green-dark);
}

.button-whatsapp {
    background: #25d366;
    color: white;
}


/* ---------- HERO ---------- */

.hero {
    padding: 100px 0 110px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(42, 157, 143, 0.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f3f9fb 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-text {
    font-size: 1.45rem;
    line-height: 1.55;
    max-width: 650px;
    color: var(--text);
}

.hero-small {
    color: var(--text-light);
    max-width: 600px;
}

.hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 15px;
}

.hero-price strong {
    font-size: 2.7rem;
    color: var(--blue-dark);
}

.hero-price span {
    color: var(--text-light);
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.hero-card-icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

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

.check-list {
    display: grid;
    gap: 10px;
    margin-top: 25px;
    color: var(--blue-dark);
    font-weight: 700;
}


/* ---------- SERVICES ---------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 5px 20px rgba(23, 63, 95, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
}

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

.service-card ul {
    list-style: none;
    display: grid;
    gap: 7px;
    color: var(--text-light);
}

.service-card li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-right: 9px;
}


/* ---------- STEPS ---------- */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step {
    position: relative;
}

.step-number {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 22px;
}

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


/* ---------- BLUE SECTION ---------- */

.section-blue h2 {
    color: var(--white);
}

.highlight-quote {
    margin-top: 35px;
    padding: 25px 30px;
    border-left: 5px solid var(--yellow);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-quote strong {
    color: var(--white);
}


/* ---------- TWO COLUMN ---------- */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ---------- INFO BOX ---------- */

.info-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.info-box-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-box p {
    color: var(--text-light);
}


/* ---------- ABOUT ---------- */

.about-photo {
    min-height: 500px;
}

.photo-placeholder {
    min-height: 500px;
    border-radius: 25px;
    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            var(--green-light)
        );
    border: 2px dashed #a9c9d5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.photo-placeholder span {
    font-size: 4rem;
    margin-bottom: 20px;
}

.photo-placeholder p {
    max-width: 250px;
    color: var(--text-light);
}

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

.mission {
    margin-top: 30px;
    padding: 25px;
    background: var(--green-light);
    border-radius: var(--radius-small);
}

.mission strong {
    color: var(--green-dark);
}

.mission p {
    margin: 5px 0 0;
    color: var(--text);
}


/* ---------- PRICE ---------- */

.price-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    background: var(--blue-dark);
    color: var(--white);
    padding: 55px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.price-card h2 {
    color: var(--white);
}

.price-card p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
}

.price-card .eyebrow {
    color: var(--yellow);
}

.price {
    min-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
}

.price strong {
    font-size: 4rem;
    line-height: 1;
    color: var(--yellow);
}

.price span {
    font-weight: 800;
    margin-top: 10px;
}

.price small {
    color: rgba(255, 255, 255, 0.7);
}


/* ---------- CONTACT ---------- */

.contact-section {
    background:
        linear-gradient(
            135deg,
            #eef8f8,
            #f6fbfc
        );
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-intro h2 {
    max-width: 550px;
}

.contact-intro > p:not(.eyebrow) {
    color: var(--text-light);
    max-width: 560px;
}

.contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-link > span {
    font-size: 1.6rem;
}

.contact-link div {
    display: flex;
    flex-direction: column;
}

.contact-link small {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

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

.contact-form label {
    margin-top: 8px;
    font-weight: 750;
    color: var(--blue-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd8de;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fbfdfe;
    color: var(--text);
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .button {
    margin-top: 15px;
}


/* ---------- FOOTER ---------- */

.site-footer {
    background: #102f46;
    color: var(--white);
}

.footer-inner {
    min-height: 190px;
    padding: 45px 0;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    padding: 20px 0;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}


/* ---------- TABLET ---------- */

@media (max-width: 950px) {

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-card {
        max-width: 600px;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .two-column {
        gap: 45px;
    }

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


/* ---------- MOBILE ---------- */

@media (max-width: 650px) {

    body {
        font-size: 16px;
    }

    .container {
        width: min(100% - 28px, 1120px);
    }

    .section {
        padding: 70px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .logo-main {
        font-size: 1.25rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

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

    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .button-row {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .services-grid,
    .steps-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 27px;
    }

    .price-card {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        gap: 30px;
    }

    .price {
        width: 100%;
    }

    .about-photo,
    .photo-placeholder {
        min-height: 360px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0;
    }
}

/* ---------- THANK YOU PAGE ---------- */

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background:
        linear-gradient(
            135deg,
            #eef8f8,
            #f6fbfc
        );
}

.thank-you-card {
    width: min(600px, 100%);
    background: var(--white);
    padding: 60px 45px;
    text-align: center;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
}

.thank-you-card p:not(.eyebrow) {
    color: var(--text-light);
}

.thank-you-card .button {
    margin-top: 25px;
}

.form-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 8px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

