/* =========================
   INPUT RESET
========================= */

input,
textarea,
button {
    font: inherit;
    color: inherit;
}

/* =========================
   INPUT + TEXTAREA RESET
========================= */

input,
textarea {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;

    width: 100%;

    margin: 0;
    padding: 0;

    border: none;
    outline: none;

    background: none;

    border-radius: 0;

    box-shadow: none;

    resize: none;
}

/* Remove autofill styles */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-transition: background-color 9999s ease-in-out 0s;
    transition: background-color 9999s ease-in-out 0s;
}

/* Placeholder reset */

input::-moz-placeholder, textarea::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

input::placeholder,
textarea::placeholder {
    color: inherit;
    opacity: 1;
}

/* =========================
   BUTTON RESET
========================= */

button,
input[type="submit"],
input[type="button"] {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;

    margin: 0;
    padding: 0;

    border: none;
    outline: none;

    background: none;

    border-radius: 0;

    cursor: pointer;

    color: inherit;
    font: inherit;

    box-shadow: none;
}

/* Remove Firefox inner border */

button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* =========================
   OPTIONAL ACCESSIBILITY
========================= */

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}
@font-face {
    font-family: 'Gotham Bold';
    font-weight: normal;
    font-style: normal;
    src: url(/fonts/gotham-bold-webfont.woff2?23b9f8cfcecf6b2a3785255be58a72fb) format('woff2');
}

@font-face {
    font-family: 'Gotham Medium';
    font-weight: normal;
    font-style: normal;
    src: url(/fonts/gotham-medium-webfont.woff2?906e126c6e29613b8921797bd62afba0) format('woff2');
}

@font-face {
    font-family: 'Gotham';
    font-weight: normal;
    font-style: normal;
    src: 
        url(/fonts/gotham-book-webfont.woff2?790fb2818303bcd53f2db2aceab5a766) format('woff2'),
        url(/fonts/gotham-book-webfont.woff?7b3a3dbeb9b2cf5995135b48669b702b) format('woff');
}


:root {
    /* Brand Colors */
    --brand-green: #308c50;
    --sage: #7bb891;
    
    /* Neutrals */
    --off-white: #fafaf8;
    --light-cream: #f5f5f0;
    --warm-gray: #6b6b60;
    --charcoal: #2d2d2a;
    --greyish-green: #475c4f;
    --deep-forest: #184628;

    --paragraph-green: #202d24;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham', Arial, sans-serif;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    background-color:#DFEAE3;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(48, 140, 80, 0.1);
}

li {
    margin-left: 25px;
    color:#2E2E2E;
}

#home { scroll-margin-top: 180px; }
#capabilities { scroll-margin-top: 150px; }
#about { scroll-margin-top: 150px; }
#contact { scroll-margin-top: 150px; }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--brand-green);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--brand-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    list-style: none;
}
.nav-links li { margin-left: 0; }

.nav-links a {
    color: var(--greyish-green);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-family: 'Gotham Bold', Arial, "sans-serif";
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--brand-green);
}

a.contact-btn {
    color: white !important;
    padding: 0.85rem 1.5rem;
    border-radius: 9px;
    transition: background-color 0.3s;
    background-color: var(--brand-green);
}

a.contact-btn:hover {
    background-color: var(--deep-forest);
}

/* Hero Section */
.hero {
    position: relative;
    max-width: 1400px;
    min-height: calc(100vh - 163px);
    padding: 3rem;
    margin: 163px auto 0;
    display: flex;
    align-items: center;
    gap: 6rem;
}

.hero-content {
    width: 50vw;
    max-width: 40rem;
}

.hero-content h1 {
    font-family: 'Gotham Bold', Arial, "sans-serif";
    font-size: 4rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--deep-forest);
    margin-bottom: 1.75rem;
    margin-top: -6rem;
}

.hero-content .highlight {
    color: var(--brand-green);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--paragraph-green);
    margin-bottom: 4rem;
    margin-right: 2rem;
    line-height: 2;
    letter-spacing: -0.005em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--brand-green);
    color: white;
    padding: 0.9rem 3rem;
    border-radius: 9px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background-color 0.3s;
    letter-spacing: 0.025rem;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--deep-forest);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-green);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--brand-green);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--brand-green);
    color: white;
}

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow:hidden;
    max-height:800px;
    height: auto;
    width: auto;
    background: linear-gradient(135deg, var(--sage) 0%, var(--brand-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 0;
    color: white;
    font-size: 1.5rem;
    transform: rotate3d(0,1,0,180deg);
}

/* Stats Section */
.stats-section {
    background-color:#FAFAF8;
    padding: 6rem 3rem;
}

.stats-container {
    max-width: calc(1400px - 6rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    padding-left: 3rem;
    border-radius: 20px;

    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
}

.stat-item:nth-child(1) { background-color: #dfe9e3; }
.stat-item:nth-child(2) { background-color: #98c695; }
.stat-item:nth-child(3) { background-color: var(--brand-green); }
.stat-item:nth-child(3) h3 { color: white; }

.stat-item h3 {
    width: 100%;
    padding: 0;
    margin: 0 0 1rem;
    font-family: 'Gotham Medium', arial, sans-serif;
    font-size: 5rem;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: var(--brand-green);
    line-height: 3rem;
    text-align: left;
}

.stat-item p {
    position: relative;
    left: 0.25rem;
    width: 100%;
    font-size: 1.75rem;
    line-height: 2rem;
    color: var(--deep-forest);
    letter-spacing: -0.02em;
    text-align: left;
}
.stat-item:nth-child(3) p {  left: 0.75rem; }

/* Services Section */
.services-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.25rem;
    letter-spacing: -0.03em;
    color: var(--deep-forest);
    font-family: 'Gotham Bold';
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    line-height: 1.25em;
    color: var(--paragraph-green);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(48, 140, 80, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin: auto;
    margin-bottom: 1.5rem;
    color: var(--brand-green);
    font-size: 1.75rem;
}

.service-card h3 {
    font-family: 'Gotham Bold';
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-card p {
    color:#2E2E2E;
    line-height: 1.7;
}

/* Partners Section */
.partners-section {
    background-color:#FAFAF8;
    padding: 6rem 3rem;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.partner-logo {
    /* height: 130px; */
    height: 160px;
    color: var(--warm-gray);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    background-color: white;
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.3;
    transform: scale(1);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.partner-logo.dim-portrait img { height: 95%; }
.partner-logo.dim-square img { height: 75%;}
.partner-logo.dim-block img { height: 85%;}
.partner-logo.dim-classic img { width: 67.5%;}
.partner-logo.dim-landscape img { width: 75%; }
.partner-logo.dim-wide img { width: 97.5%; }

.the-grove img {
    position: relative;
    top: 2.5%;
}

.partner-card img,
.partner-logo img,
.partner-logo-img,
.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    margin: 0 auto;
}

/* .partner-logo.the-grove img { max-height: 90px; } */
/* .partner-logo.food-venture-accelerator img { max-height: 90px;} */

/* Brands Section */
.brands-section {
    position: relative;
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.brands-grid {
    width: 100%;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.brand-logo {
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* .brand-logo.dim-portrait img { height: 95%; } */
.brand-logo.dim-square img { width: 50%;}
.brand-logo.dim-block img { width: 60%;}
.brand-logo.dim-classic img { width: 80%; }
.brand-logo.dim-landscape img { width: 85%; }
.brand-logo.dim-wide img { width: 95%; }
.brand-logo.dim-full img { width: 100%; }

/* About Section */
.about-section {
    background-color:#FAFAF8;
    padding: 6rem 3rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 440px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--brand-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    -o-object-fit:scale-down;
       object-fit:scale-down;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--brand-green);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    
        }
/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 8rem 0 600px;
    background-color:#fafaf8;
    overflow: hidden;
}

.testimonials--bg {
    position: absolute;
    height: 100%; width: 100%;
    top: 0; left: 0;
    opacity: 0.85;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonials--fx {
    height: 100%; width: auto;
    top: 0; left: 0;
    opacity: 0.25;
    background-color: #7a94cb;
}

.testimonials-container {
    position: relative;
    max-width: 1075px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background-color: #dfeae3;
    border-radius: 30px;
}

.testimonials-container .section-header { margin: 3rem 0 1.5rem; }
.testimonials-container h2 { margin: 0; line-height: 3rem; }

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
    height: 100px;
    transition: height 0.4s ease-in-out;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    padding: 0rem;
    text-align: center;
}

.testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 12px 16px -8px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--charcoal);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 0.5rem;
}

.testimonial-company {
    font-size: 1rem;
    color: var(--warm-gray);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    width: calc(100% + 4rem);
    max-width: calc(1000px + 4rem);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    left: calc(50% - 1000px/2 - 2rem);
    pointer-events: none;
    transition: top 0.5s ease;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--brand-green);
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1;
    padding-bottom: 2px;
}
.testimonial-arrow.tween:nth-child(1) { transform: translateX(-10px); animation: shiftLeft 0.3s ease-out; }
.testimonial-arrow.tween:nth-child(2) { transform: translateX(10px); animation: shiftRight 0.3s ease-out; }

@keyframes shiftLeft {
    from { transform: translateX(-17px); }
    to { transform: translateX(-10px); }
}

@keyframes shiftRight {
    from { transform: translateX(17px); }
    to { transform: translateX(10px); }
}

.testimonial-arrow:hover {
    background-color: var(--deep-forest);
    transform: scale(1.15);
}

.testimonial-arrow:active {
    transform: scale(1);
}

section.form {
    position: relative;
    width: 100%;
    background-color:#fafaf8;
    margin-bottom: -650px;
}
.form__card {
    position: relative;
    top: -400px;
    width: 90%;
    max-width: 1550px;
    margin: 0 auto;
    background-color: var(--brand-green);
    border-radius: 30px;
    padding: 4rem 7rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    overflow: hidden;
    -moz-column-gap: 10rem;
         column-gap: 10rem;
    z-index: 3;
}
.form__messaging {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.form__messaging h2 {
    font-size: 2.5rem;
    width: 25rem;
    line-height: 1.25;
}
.form__messaging p {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #abd5ba;
}
.form__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 35rem;
}
form {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.form__slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.form__slide {
    position: absolute;
    width: 100%;

    top: 0;
    left: 100%;

    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;

    transition:
        left 0.5s ease,
        opacity 0.5s ease;
}
.form__slide.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}
.form__slide h3 {
    color: white;
    font-size: 1.5rem;
}
.form__slide p {
    margin-bottom: 2rem;
    /* margin-left: 1.35rem; */
    font-size: 1rem;
    color: #abd5ba;
}
form input[type="text"], form input[type="email"], form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border: none;
    border-radius: 9px;
    color: var(--brand-green);
    font-size: 1rem;
    outline: none;
}
.form__group.checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 1rem;
}
form textarea {
    min-height: 12rem;
    resize: vertical;
}
form label {
    display: flex;
    flex-direction: row;
    align-items: center;
}
label span {
    margin-left: 0.5em;
    color: white;
    font-size: 1rem;
}
label.facility_partner span { font-size: 0.9rem; }
.option-input {
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    height: 30px;
    width: 30px;
    left:3px;
    transition: all 0.15s ease-out 0s;
    background: #ffffff;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    z-index: 1;
}
.option-input.check:checked {
    background: #ffffff;
    color: #308c50;
}
.option-input:hover {
    color: #cccccc;
    background: #98c5a9;
}
.option-input.check:hover {
    color: #98c5a9;
}
.option-input:checked::before {
    width: 30px;
    height: 30px;
    display: flex;
    content: "✔";
    font-size: 1.75rem;
    font-weight: bold;
    position: absolute;
    left: -0.00rem;
    top: 0.1rem;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 5 Free";
}
.option-input:checked::after {
    background: #40e0d0;
    content: "";
    display: block;
    position: relative;
    z-index: 100;
}
.form__pagination {
    position: relative;
    margin-top: -75px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}
form [type="submit"], .form__pagination [type="button"] {
    padding: 0.75rem 0;
    background-color: #d5e7db;
    font-size: 1.1rem;
    color: var(--deep-forest);
    border-radius: 9px;
    font-family: "Gotham Bold";
    width: 7rem;
}
form [type="submit"]:disabled, .form__pagination [type="button"]:disabled {
    opacity: 0.5;
    color: #8a8;
    background-color: var(--deep-forest);
}
form [type="submit"] {
    display: none;
    background-color: #99da97;
}
.form__pagination [type="button"] {
    display: flex;
    gap: 16px;
}
.form-page.prev {
    left: -100%;
    opacity: 0;
}
.form__error {
    display: none;
    color: #f9e07d;
    font-size: 13px;
    margin-top: -0.65rem;
    margin-bottom: 1rem;
    line-height: 18px;
}
.form__error.active {
    display: block;
}
.input-error {
    border-color: #f9e07d !important;
}
.form__message {
    display: none;
    padding: 1.5rem 0.75rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.3rem;
    text-align: center;
}
.form__message.success {
    display: block;
    background: #87bd87;
    color: #ffffff;
}
.form__message.error {
    display: block;
    background: #c5c360;
    color: #ffffff;
}

/* Footer */
footer {
    position: relative;
    background-color:#fafaf8;
    color: var(--charcoal);
    padding: 350px 6rem 2rem;
    border-top: 2px solid var(--light-cream);
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 0;
}
.footer-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-logo {
    width: 170px;
    height: auto;
    display: flex;
}
.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
    padding-top: 3.25rem;
}

.footer-brand h3 {
    color: var(--brand-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 800px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h4 {
    color: var(--brand-green);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    margin-left: 36px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    margin-bottom: 0;
    margin-left: 0;
}

.footer-section a {
    color: var(--warm-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section a:hover {
    color: var(--brand-green);
}

.contact-icon {
    width: 25px;
    height: 25px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.social-links-footer {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.social-links-footer .contact-icon {
    width: 30px;
    height: 30px;
}
.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--light-cream);
    text-align: center;
    color: var(--warm-gray);
}


/* Responsive */
@media (max-width: 1440px) {
    .stat-item h3 { font-size: 4.5rem; line-height: 3rem; margin-bottom: 0.65rem;}
    .stat-item p { font-size: 1.5rem;}
    .form__messaging { width: 30%; }
    .form__messaging h2 { width: 100%; }
    .footer-container { margin-left: 0; margin-right: 0; grid-template-columns: 280px 1fr 280px;}
    .form__card { padding: 4rem 6rem; -moz-column-gap: 5rem; column-gap: 5rem; }
    .form__wrapper { width: 32rem;}
}

@media (max-width: 1250px) {
    .hero { gap: 2rem; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1rem; }
    .btn-primary { font-size: 1rem; }

    .nav-links { gap: 2rem; }
    .nav-links a { font-size: 1rem; }

    .stat-item { min-height: 0; padding: 3rem; }
    .stat-item p { padding-right: 3rem; }

    .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .partner-logo.dim-square img { height: 70%; }
    .partner-logo.dim-block img { height: 75%; }
    .partner-logo.dim-classic img { width: 60%; min-width: 175px;}
    .partner-logo.dim-landscape img { width: 65%; min-width: 185px; }

    .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .brand-logo { height: 150px; }
    .brand-logo.dim-square img { width: 50%; max-height: 75%; }
    .brand-logo.dim-block img { width: 60%; max-height: 70%; }
    .brand-logo.dim-classic img { width: 75%; }
    .brand-logo.dim-landscape img { width: 80%; }
    .brand-logo.dim-wide img { width: 90%; }
    .brand-logo.dim-full img { width: 100%; }

    /* .form__card { padding: 4rem; gap: 2rem; }
    .form__messaging h2 { font-size: 2rem; }
    .form__messaging p { font-size: 1rem; }
    .form__group.checkboxes { row-gap: 0.75rem; }
    .option-input { height: 30px; width: 30px; }
    label span { font-size: 1.1rem; }
    form [type="submit"], .form__pagination [type="button"] { padding: 0.75rem 0; width: 150px; } */
    

    .form__card { flex-direction: column; height: auto; padding: 4rem 6rem 2.5rem; gap: 2rem; }
    .form__messaging { width: 100%; }
    .form__wrapper { height: auto; flex: none; width: 100%; }
    .form__group.checkboxes { row-gap: 0.75rem; }
    .option-input { height: 30px; width: 30px; }
    .form__group.checkboxes label span { font-size: 1rem; margin-left: 0.25rem; }
    form { height: 100%; }

    footer { padding-bottom: 7rem; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-brand p { max-width: 600px; margin: 0 auto;}
    .footer-logo-container { margin-bottom: 3em; justify-content: center; }
    .footer-section { align-items: center; margin: 3rem auto 0; max-width: 600px;}
    .footer-section h4 { margin: 0; margin-bottom: 1.5rem; width: 100%; text-align: center; }
    .footer-section ul { display: inline-block; margin: 0 auto; width: 100%;}
    .social-links-footer { justify-content: center; margin-left: 0; margin-top: 3rem; }
}

@media (max-width: 1100px)
{
    .form__card { padding: 4rem 4rem 2.5rem; }
    .testimonial-nav { width: calc(100% + 3rem); left: -1.5rem;}
    .stat-item { background-size: cover; background-position: 70% 0; }
}

@media (max-width: 1024px) {
    .hero { 
        gap: 0rem;
        padding: 6rem 3rem;
        flex-direction: column; 
        align-items: flex-start;
    }
    .hero-content { margin-bottom: 6rem; padding-left: 0; width: auto; max-width: 100%;}
    .hero-content h1 { margin-top: 0; }
    .hero-content p { margin-bottom: 2rem; max-width: 40rem;}
    .hero-image { margin-left: 0; max-height:none; width: 100%; }

    .stats-section { position: relative; padding: 6rem 0; width: 103%; left: -1.5%;}

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

@media (max-width: 850px) {
    
    .stats-section { padding: 6rem 3rem; grid-template-columns: 1fr; width: 100%; left: 0; }
    .stats-container { grid-template-columns: 1fr; }
    .stat-item { background-size: 65%; background-position: 100% 10%; }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .partner-logo.dim-classic { padding: 1.5rem 0; }
    .dim-landscape { padding: 0 2rem; }

    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .brand-logo { height: 150px; }
    .brand-logo.dim-square img { width: 50%; max-height: 70%; }
    .brand-logo.dim-block img { width: 60%; max-height: 62.5%; }
    .brand-logo.dim-classic img { width: 75%; }
    .brand-logo.dim-landscape img { width: 100%; }
    .brand-logo.dim-wide img { width: 90%; }
    
}

@media (max-width: 780px) {

    .hero { margin-top: 200px; }
    .hero-content h1 { font-size: 2.5rem; }

    .stats-container { grid-template-columns: 1fr; }

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

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

    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .brand-logo { height: 150px; }
    .brand-logo.dim-square img { width: 50%; max-height: 70%; }
    .brand-logo.dim-block img { width: 60%; max-height: 65%; }
    .brand-logo.dim-classic img { width: 60%; min-width: 130px;}
    .brand-logo.dim-landscape img { width: 90%; min-width: 160px;}
    .brand-logo.dim-wide img { width: 90%; }

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

    .footer-container { grid-template-columns: 1fr; }

    .nav-container { flex-direction: column; }
    .nav-container .logo { margin-bottom: 15px; }
    .nav-links li:first-child { margin-left: 0; }    
    .nav-links { gap: 1.75rem; }
    .nav-links a { font-size: 0.9rem; }

    .contact-btn { padding: 0.6rem 1.2rem; }

    .form__group.checkboxes { grid-template-columns: 1fr; }
    
    .section-header h2 { font-size: 3rem; line-height: 3.5rem; margin: 3.5rem auto 3rem; }
    .section-header p { font-size: 1.2rem; }
    .partners-section h2 { position: relative; width: calc(100% + 5vw); left: calc(-2.5vw); font-size: 2.5rem; line-height: 3.5rem; text-align: center; margin: 3.5rem auto 3rem; }
}

@media (max-width: 600px) {
    .nav-links { gap: 1.5rem; }
    .nav-links a { font-size: 0.85rem; }
    .partners-grid { grid-template-columns: repeat(1, 1fr); gap: 0.5rem; }
    .partner-logo { padding: 1px; height: 120px; }
    .partner-logo.dim-square img { height: 80%; }
    .partner-logo.dim-block img { height: 80%; }
    .partner-logo.dim-classic img { width: 40%; min-width: 160px;}
    .partner-logo.dim-landscape img { width: 40%; min-width: 160px; }
    .partner-logo.dim-wide img { width: 65%; min-width: 210px; }

    .brands-grid { grid-template-columns: repeat(1, 1fr); gap: 0.5rem; }
    .brand-logo { height: 120px; }
    .brand-logo.dim-square img { width: 50%; max-height: 75%; }
    .brand-logo.dim-block img { width: 60%; max-height: 70%; }
    .brand-logo.dim-classic img { width: 35%; min-width: 120px;}
    .brand-logo.dim-landscape img { width: 47.5%; min-width: 150px;}
    .brand-logo.dim-wide img { width: 57.5%; min-width: 175px;}
    .brand-logo.dim-full img { width: 65%; }

    .form__card { padding: 3rem 2rem 1rem; }
    form input[type="text"], form input[type="email"], form textarea {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    form textarea { min-height: 10rem; }
    .option-input { height: 25px; width: 25px; border-radius: 4px; }
    .option-input:checked::before {
        left: -0.15rem;
        top: -0.05rem;
    }
    label span {font-size: 1.1rem;}
    .form__pagination { gap: 10px; }
    form [type="submit"], .form__pagination [type="button"] { padding: 0.75rem 0; width: 120px; font-size: 1.1rem; }

    .footer-brand { padding: 0; }
    footer { padding-left: 3rem; padding-right: 3rem; }
}

@media (max-width: 480px) {

    .form__card { padding: 4rem 2.75rem 2rem; }

    .stat-item h3 { font-size: 4rem; line-height: 2.75rem;}
    .stat-item p { font-size: 1.35rem; line-height: 1.75rem;}
    .stat-item { background-position: 50% 0; background-size: cover; }

    .testimonials-container { padding: 1rem; }
    .testimonial-content { padding: 2.5rem; }
    .testimonial-text { font-size: 1rem; }
    .testimonial-author { font-size: 1rem; }
    .testimonial-company { font-size: 0.9rem; }
    .testimonial-slide { padding: 0.25rem; }
    .testimonial-nav { padding: 0; width: calc(100%); left: 0rem; }
    .testimonial-arrow { height: 40px; width: 40px; }

    .section-header h2 { font-size: 2.75rem; line-height: 3.25rem; }
    .section-header p { font-size: 1.15rem; }
    .partners-section h2 { font-size: 2.5rem; }
}

@media (max-width: 420px) {
    .hero { padding: 6rem 7.5vw; }
    .btn-primary { padding: 0.9rem 2.25rem; }

    .nav-links { gap: 0; }
    .nav-links li { margin-left: 15px; }
    a.contact-btn { padding: 0.7rem 1rem; }

    .nav-links li:first-child { margin-left: 0; }
    .stats-section { padding: 6rem 7.5vw; }
    .stats-container { gap: 0; row-gap: 1rem;}
    .stat-item { padding: 2.75rem 2rem;  }
    .form__messaging h2 { font-size: 1.75rem; }
    .form__messaging p { font-size: 0.95rem; line-height: 1.5; }
    .form__message { font-size: 0.95rem; line-height: 1.2rem; }
    form [type="submit"], .form__pagination [type="button"] { font-size: 1rem; }
    .form__slide h3 { font-size: 1.35rem; line-height: 1.75rem; margin-bottom: 0.75rem; }
    .form__slide p { font-size: 0.95rem; line-height: 1.35rem; }
    form input[type="text"], form input[type="email"], form textarea { font-size: 1rem; }
    .form__wrapper { width: 110%; margin-left: -5%; }
    .form__group.checkboxes label span { font-size: 0.9rem; margin-left: 0.2rem; }
    .form__group.checkboxes label.facility_partner span { font-size: 0.8rem;}

    footer { padding: 23rem 7.5vw 6rem; }
    .footer-container { margin: 0; }
    .footer-section a { gap: 0.5rem; font-size: 0.9rem; }
    
    .section-header h2 { font-size: 2.5rem; line-height: 3rem; }
    .section-header p { font-size: 1.1rem; }
}

@media (max-width: 360px) 
{
    .nav-links li { margin-left: 0.75rem; }
    .nav-links a { font-size: 0.7rem; }
    .hero-cta a { font-size: 1rem; }

    .section-header h2 { font-size: 2.25rem; line-height: 2.75rem; max-width: 275px;  }
    .about-section { padding: 3rem 7.5vw; }
    .services-section { padding: 6rem 7.5vw; }
    .partners-section { padding-left: 0; padding-right: 0; }
    .partners-section h2 { left: 0; width: 100%; }
    .partners-container .section-header p { padding: 0 3rem;}
    .partners-grid { padding: 0 3rem; }

    .testimonial-content { padding: 2.5rem 2rem; }
    .testimonial-text { font-size: 0.9rem; }
    .testimonial-author { font-size: 0.9rem; }
    .testimonial-company { font-size: 0.8rem; }

    form textarea { min-height: 20rem; }
    .form__wrapper { width: 120%; margin-left: -10%; }
    .form__group.checkboxes label span { font-size: 0.85rem; margin-left: 0.15rem; }
    .form__group.checkboxes label.facility_partner span { font-size: 0.7rem;}
}
/* @import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
} */

