/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: #26352d;
    background: #ffffff;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --green-dark: #173b2a;
    --green: #2f7250;
    --green-light: #eaf4ed;

    --cream: #f7f4ed;
    --beige: #eee8dc;

    --text: #26352d;
    --text-light: #647169;

    --white: #ffffff;

    --border: #e3e8e4;

    --shadow:
        0 20px 60px rgba(25, 55, 39, 0.10);

    --radius: 18px;

    --container: 1180px;
}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(92%, var(--container));
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;

    color: var(--green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2,
.intro-content h2,
.why-content h2,
.application-text h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.12;

    color: var(--green-dark);

    margin-bottom: 20px;
}

.section-heading p,
.intro-content p,
.why-content > p,
.application-text > p {
    color: var(--text-light);

    font-size: 17px;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border-radius: 999px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: var(--green);

    box-shadow:
        0 12px 25px rgba(47, 114, 80, 0.25);
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    color: var(--green-dark);
    background: var(--white);
}

.btn-light {
    color: var(--green-dark);
    background: var(--white);
}

.btn-light:hover {
    box-shadow: var(--shadow);
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.nav {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 18px;

    font-weight: 800;

    color: var(--green-dark);
}

.logo img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 30px;
}

.desktop-nav a {
    font-size: 14px;

    font-weight: 600;

    color: var(--text-light);

    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--green);
}

.mobile-menu-btn {
    display: none;

    border: 0;

    background: transparent;

    font-size: 28px;

    color: var(--green-dark);
}

.mobile-nav {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 720px;

    position: relative;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(16, 45, 30, 0.82),
            rgba(16, 45, 30, 0.30)
        ),
        url("images/luna.jpg")
        center / cover no-repeat;
}

.hero-content {
    position: relative;

    z-index: 2;
}

.hero-text {
    max-width: 700px;

    color: var(--white);
}

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #dceee2;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 76px);

    line-height: 1.02;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: #d9efdf;
}

.hero p {
    max-width: 600px;

    font-size: 19px;

    color: rgba(255, 255, 255, 0.90);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.hero-trust {
    display: flex;

    gap: 35px;

    margin-top: 55px;

    flex-wrap: wrap;
}

.hero-trust div {
    display: flex;

    flex-direction: column;
}

.hero-trust strong {
    font-size: 20px;
}

.hero-trust span {
    font-size: 12px;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================
   INTRO
========================================= */

.intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.intro-image {
    height: 560px;

    overflow: hidden;

    border-radius: 25px;

    box-shadow: var(--shadow);
}

.intro-image img {
    height: 100%;

    object-fit: cover;
}

.check-list {
    margin-top: 30px;

    display: grid;

    gap: 15px;
}

.check-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;
}

.check-list span {
    width: 27px;
    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--green-light);

    color: var(--green);

    font-weight: 900;
}


/* =========================================
   ANIMALS
========================================= */

.animal-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.animal-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 8px 30px rgba(30, 50, 40, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.animal-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.animal-image {
    height: 280px;

    position: relative;

    overflow: hidden;
}

.animal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.animal-card:hover .animal-image img {
    transform: scale(1.05);
}

.animal-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.94);

    color: var(--green-dark);

    font-size: 12px;

    font-weight: 800;
}

.animal-info {
    padding: 22px;
}

.animal-title {
    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 10px;
}

.animal-title h3 {
    color: var(--green-dark);

    font-size: 23px;
}

.animal-title span {
    color: var(--text-light);

    font-size: 13px;
}

.animal-details {
    display: flex;

    gap: 12px;

    margin-bottom: 14px;

    color: var(--text-light);

    font-size: 12px;
}

.animal-info p {
    color: var(--text-light);

    font-size: 14px;

    margin-bottom: 20px;
}

.animal-btn {
    width: 100%;

    padding: 12px;

    border: 1px solid var(--green);

    border-radius: 10px;

    background: transparent;

    color: var(--green);

    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.animal-btn:hover {
    background: var(--green);

    color: var(--white);
}


/* =========================================
   STEPS
========================================= */

.steps {
    background: var(--cream);
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.step {
    position: relative;

    padding: 30px;

    background: var(--white);

    border-radius: var(--radius);

    border: 1px solid var(--border);
}

.step-number {
    color: #d6e4d9;

    font-size: 40px;

    font-weight: 900;

    margin-bottom: 10px;
}

.step-icon {
    font-size: 30px;

    margin-bottom: 15px;
}

.step h3 {
    color: var(--green-dark);

    font-size: 20px;

    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================
   WHY
========================================= */

.why-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.why-items {
    margin-top: 35px;

    display: grid;

    gap: 25px;
}

.why-item {
    display: flex;

    gap: 18px;
}

.why-icon {
    min-width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: var(--green-light);

    font-size: 20px;
}

.why-item h3 {
    color: var(--green-dark);

    margin-bottom: 4px;
}

.why-item p {
    color: var(--text-light);

    font-size: 14px;
}

.why-image {
    position: relative;

    height: 600px;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.why-image > img {
    height: 100%;

    object-fit: cover;
}

.image-card {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 20px;

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.image-card strong {
    color: var(--green-dark);
}

.image-card span {
    color: var(--text-light);

    font-size: 13px;
}


/* =========================================
   CTA
========================================= */

.cta {
    padding: 110px 0;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green-dark),
            var(--green)
        );

    text-align: center;
}

.cta-content {
    max-width: 750px;
}

.cta .section-label {
    color: #d5eadb;
}

.cta h2 {
    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.1;

    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    margin-bottom: 30px;
}


/* =========================================
   FORM
========================================= */

.application {
    background: var(--cream);
}

.application-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.application-note {
    margin-top: 35px;

    padding: 22px;

    border-left: 4px solid var(--green);

    background: var(--white);

    border-radius: 10px;
}

.application-note strong {
    color: var(--green-dark);
}

.application-note p {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 14px;
}

.form-container {
    padding: 35px;

    background: var(--white);

    border-radius: 22px;

    box-shadow: var(--shadow);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--green-dark);

    font-size: 13px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 13px 14px;

    outline: none;

    color: var(--text);

    background: #fbfcfb;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);

    box-shadow:
        0 0 0 3px rgba(47, 114, 80, 0.10);
}

.form-checkbox {
    display: flex;

    gap: 10px;

    align-items: flex-start;

    margin-bottom: 20px;
}

.form-checkbox input {
    margin-top: 5px;
}

.form-checkbox label {
    color: var(--text-light);

    font-size: 12px;
}

.submit-btn {
    width: 100%;

    border: 0;

    padding: 15px;

    border-radius: 10px;

    color: var(--white);

    background: var(--green);

    font-weight: 800;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.submit-btn:hover {
    background: var(--green-dark);

    transform: translateY(-1px);
}

.form-disclaimer {
    text-align: center;

    margin-top: 12px;

    color: var(--text-light);

    font-size: 12px;
}

.success-message {
    display: none;

    margin-top: 20px;

    padding: 15px;

    border-radius: 10px;

    background: var(--green-light);

    color: var(--green-dark);

    font-size: 14px;

    font-weight: 600;
}

.success-message.show {
    display: block;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #11291d;

    color: var(--white);

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;
}

.footer-logo {
    color: var(--white);

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 420px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 8px;

    font-size: 15px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);

    padding: 22px 0;
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
}


/* =========================================
   MODAL
========================================= */

.modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(10, 25, 17, 0.75);

    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;

    z-index: 2;

    width: min(500px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 35px;

    border-radius: 22px;

    background: var(--white);

    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background: var(--cream);

    color: var(--green-dark);

    font-size: 25px;
}

.modal-animal-image {
    height: 300px;

    overflow: hidden;

    border-radius: 15px;

    margin-bottom: 25px;
}

.modal-animal-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.modal-content h2 {
    color: var(--green-dark);

    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-light);

    margin-bottom: 15px;
}

.modal-details {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 20px;
}

.modal-detail {
    padding: 7px 12px;

    border-radius: 999px;

    background: var(--green-light);

    color: var(--green-dark);

    font-size: 12px;

    font-weight: 700;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .animal-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .intro-grid,
    .why-grid,
    .application-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .intro-image {
        height: 450px;
    }

    .why-image {
        height: 500px;
    }

    .application-text {
        max-width: 700px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }
}


@media (max-width: 700px) {

    .section {
        padding: 70px 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        padding: 10px 4% 20px;

        background: var(--white);

        border-top: 1px solid var(--border);
    }

    .mobile-nav.open {
        display: grid;

        gap: 5px;
    }

    .mobile-nav a {
        padding: 12px;

        color: var(--green-dark);

        font-weight: 600;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 20px;
    }

    .animal-grid,
    .steps-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .animal-image {
        height: 300px;
    }

    .intro-image,
    .why-image {
        height: 400px;
    }

    .form-container {
        padding: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
    }
}


@media (max-width: 450px) {

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-trust {
        flex-direction: column;

        margin-top: 35px;
    }

    .modal-content {
        padding: 25px;
    }
}