:root {
    --color-primary: #0A2B1E;
    --color-accent-1: #0F9F46;
    --color-accent-2: #328A67;
    --color-accent-3: #84CFA0;
    --color-accent-4: #66A482;
    --color-orange: #F29100;
    --color-orange-light: #FF95001A;
    --color-bg-light: #F9FFFF;
    --color-white: #FFFFFF;
    --color-text-main: #333333;
    --color-text-black: #3B3D45;

    --font-main: 'Inter', sans-serif;
    --font-nav: 'Figtree', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow: hidden;
    background-color: #F9FFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Utility Classes */
.container {
    width: 100%;
    margin-top: 3rem;
    padding: 0 10rem;

    @media (max-width: 992px) {
        padding: 0 1rem;
    }

    @media (max-width: 1100px) {
        padding: 0 1.5rem;
    }
}

.container-header {
    margin-top: 0;
}

.section-padding {
    padding: 4rem 0;
}

.section-padding-producer {
    padding-top: 8rem;
    background-image: url('assets/person-section-bg.webp');
    background-size: cover;
    background-position: bottom;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.text-center {
    text-align: center;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.font-bold {
    font-weight: 700;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-10 {
    margin-top: 10rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(242, 145, 0, 0.3);
}

.btn-primary:hover {
    background-color: #d98200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 145, 0, 0.4);
}

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

.btn-mobile-only {
    display: none;
}

.btn-desktop-only {
    display: block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    height: 48px;
    width: auto;
}

.logo-icon.white-svg {
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-small {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-4);
    line-height: 1;
}

.logo-large {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-primary);
    line-height: 1;
}

.logo-large.text-white {
    color: var(--color-white);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-nav);
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-primary);
}

.nav-links a:hover {
    color: var(--color-accent-4);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-nav);
    font-size: 0.95rem;
    color: var(--color-primary);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    user-select: none;
}

.language-selector:hover {
    background-color: rgba(10, 43, 30, 0.06);
}

.language-selector .chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.language-selector.open .chevron {
    transform: rotate(180deg);
}

/* Dropdown menu */
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background-color: var(--color-white);
    border: 1px solid rgba(10, 43, 30, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 43, 30, 0.12);
    list-style: none;
    padding: 0.4rem;
    z-index: 2000;
    overflow: hidden;

    /* Entrance animation */
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-selector.open .lang-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.lang-dropdown li {
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-nav);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-main);
    transition: background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.lang-dropdown li:hover {
    background-color: rgba(10, 43, 30, 0.06);
    color: var(--color-primary);
}

.lang-dropdown li.active {
    font-weight: 600;
    color: var(--color-accent-1);
    background-color: rgba(15, 159, 70, 0.07);
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 16rem 0 6rem;
    text-align: center;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-decorator-circle {
    animation: rotate 160s linear infinite;
    position: absolute;
    border: 3px dashed rgba(132, 207, 160, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 975px;
    height: 975px;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.hero-bg-logo {
    position: absolute;
    left: 50%;
    top: 25%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: linear-gradient(208.16deg, rgba(15, 159, 70, 0.6) 8.65%, rgba(50, 138, 103, 0.2) 92.45%);
    -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTA4IiBoZWlnaHQ9IjkwOCIgdmlld0JveD0iMCAwIDkwOCA5MDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIG9wYWNpdHk9IjAuNjQiPgo8cGF0aCBkPSJNNjMxLjQzOSAzNDkuODNDNjMxLjc0MSAzNTIuNTUxIDYzMi4zNDYgMzU1LjU3NSA2MzIuMzQ2IDM1OC41OTlDNjMyLjM0NiA0MDEuMjMzIDU5Ny41NzMgNDM2LjAwNiA1NTQuOTM5IDQzNi4wMDZDNTEyLjMwNCA0MzYuMDA2IDQ3Ny41MzEgNDAxLjIzMyA0NzcuNTMxIDM1OC41OTlDNDc3LjUzMSAzMTUuOTY0IDUxMi4zMDQgMjgxLjE5MSA1NTQuOTM5IDI4MS4xOTFDNTU5Ljc3NyAyODEuMTkxIDU2NC42MTUgMjgxLjc5NiA1NjkuNDUzIDI4Mi43MDNDNTM2LjQ5NCAyNjAuNjMgNDk2Ljg4MyAyNDcuNjI4IDQ1NC4yNDggMjQ3LjYyOEMzNDAuMjU0IDI0Ny42MjggMjQ4LjAzIDM0MC4xNTQgMjQ4LjAzIDQ1My44NDZDMjQ4LjAzIDU2Ny41MzkgMzQwLjI1NCA2NjAuMDY1IDQ1NC4yNDggNjYwLjA2NUM1NjguMjQzIDY2MC4wNjUgNjYwLjQ2NyA1NjcuODQxIDY2MC40NjcgNDUzLjg0NkM2NjAuNDY3IDQxNS43NDcgNjQ5LjU4MSAzODAuNjcyIDYzMS40MzkgMzUwLjEzMlYzNDkuODNaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMV8xMTgpIi8+CjxwYXRoIGQ9Ik00NTMuODYyIDkwNy43MjRDMjAzLjQ5NyA5MDcuNzI0IDAgNzA0LjIyNyAwIDQ1My44NjJDMCAyMDMuNDk3IDIwMy40OTcgMCA0NTMuODYyIDBDNzA0LjIyNyAwIDkwNy43MjQgMjAzLjQ5NyA5MDcuNzI0IDQ1My44NjJDOTA3LjcyNCA3MDQuMjI3IDcwNC4yMjcgOTA3LjcyNCA0NTMuODYyIDkwNy43MjRaTTQ1My44NjIgODIuNTQ3OUMyNDkuMTU1IDgyLjU0NzkgODIuNTQ3OSAyNDkuMTU1IDgyLjU0NzkgNDUzLjg2MkM4Mi41NDc5IDY1OC41NjkgMjQ5LjE1NSA4MjUuMTc2IDQ1My44NjIgODI1LjE3NkM2NTguNTY5IDgyNS4xNzYgODI1LjE3NiA2NTguNTY5IDgyNS4xNzYgNDUzLjg2MkM4Mi41NDc5IDI0OS4xNTUgNjU4LjU2OSA4Mi41NDc5IDQ1My44NjIgODIuNTQ3OVoiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcl8xXzExOCkiLz4KPC9nPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzFfMTE4IiB4MT0iNjgyLjUzOCIgeTE9IjIuMjgyNTJlLTA2IiB4Mj0iMTk2LjcwNCIgeTI9IjkwNy43MjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzBGOUY0NiIgc3RvcC1vcGFjaXR5PSIwLjI5Ii8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzMyOEE2NyIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhcl8xXzExOCIgeDE9IjY4Mi41MzgiIHkxPSIyLjI4MjUyZS0wNiIgeDI9IjE5Ni43MDQiIHkyPSI5MDcuNzI0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwRjlGNDYiIHN0b3Atb3BhY2l0eT0iMC4yOSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMzMjhBNjciIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOTA4IiBoZWlnaHQ9IjkwOCIgdmlld0JveD0iMCAwIDkwOCA5MDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIG9wYWNpdHk9IjAuNjQiPgo8cGF0aCBkPSJNNjMxLjQzOSAzNDkuODNDNjMxLjc0MSAzNTIuNTUxIDYzMi4zNDYgMzU1LjU3NSA2MzIuMzQ2IDM1OC41OTlDNjMyLjM0NiA0MDEuMjMzIDU5Ny41NzMgNDM2LjAwNiA1NTQuOTM5IDQzNi4wMDZDNTEyLjMwNCA0MzYuMDA2IDQ3Ny41MzEgNDAxLjIzMyA0NzcuNTMxIDM1OC41OTlDNDc3LjUzMSAzMTUuOTY0IDUxMi4zMDQgMjgxLjE5MSA1NTQuOTM5IDI4MS4xOTFDNTU5Ljc3NyAyODEuMTkxIDU2NC42MTUgMjgxLjc5NiA1NjkuNDUzIDI4Mi43MDNDNTM2LjQ5NCAyNjAuNjMgNDk2Ljg4MyAyNDcuNjI4IDQ1NC4yNDggMjQ3LjYyOEMzNDAuMjU0IDI0Ny42MjggMjQ4LjAzIDM0MC4xNTQgMjQ4LjAzIDQ1My44NDZDMjQ4LjAzIDU2Ny41MzkgMzQwLjI1NCA2NjAuMDY1IDQ1NC4yNDggNjYwLjA2NUM1NjguMjQzIDY2MC4wNjUgNjYwLjQ2NyA1NjcuODQxIDY2MC40NjcgNDUzLjg0NkM2NjAuNDY3IDQxNS43NDcgNjQ5LjU4MSAzODAuNjcyIDYzMS40MzkgMzUwLjEzMlYzNDkuODNaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXJfMV8xMTgpIi8+CjxwYXRoIGQ9Ik00NTMuODYyIDkwNy43MjRDMjAzLjQ5NyA5MDcuNzI0IDAgNzA0LjIyNyAwIDQ1My44NjJDMCAyMDMuNDk3IDIwMy40OTcgMCA0NTMuODYyIDBDNzA0LjIyNyAwIDkwNy43MjQgMjAzLjQ5NyA5MDcuNzI0IDQ1My44NjJDOTA3LjcyNCA3MDQuMjI3IDcwNC4yMjcgOTA3LjcyNCA0NTMuODYyIDkwNy43MjRaTTQ1My44NjIgODIuNTQ3OUMyNDkuMTU1IDgyLjU0NzkgODIuNTQ3OSAyNDkuMTU1IDgyLjU0NzkgNDUzLjg2MkM4Mi41NDc5IDY1OC41NjkgMjQ5LjE1NSA4MjUuMTc2IDQ1My44NjIgODI1LjE3NkM2NTguNTY5IDgyNS4xNzYgODI1LjE3NiA2NTguNTY5IDgyNS4xNzYgNDUzLjg2MkM4Mi41NDc5IDI0OS4xNTUgNjU4LjU2OSA4Mi41NDc5IDQ1My44NjIgODIuNTQ3OVoiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcl8xXzExOCkiLz4KPC9nPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyXzFfMTE4IiB4MT0iNjgyLjUzOCIgeTE9IjIuMjgyNTJlLTA2IiB4Mj0iMTk2LjcwNCIgeTI9IjkwNy43MjQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzBGOUY0NiIgc3RvcC1vcGFjaXR5PSIwLjI5Ii8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzMyOEE2NyIgc3RvcC1vcGFjaXR5PSIwIi8+CjwvbGluZWFyR3JhZGllbnQ+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQxX2xpbmVhcl8xXzExOCIgeDE9IjY4Mi41MzgiIHkxPSIyLjI4MjUyZS0wNiIgeDI9IjE5Ni43MDQiIHkyPSI5MDcuNzI0IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiMwRjlGNDYiIHN0b3Atb3BhY2l0eT0iMC4yOSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMzMjhBNjciIHN0b3Atb3BhY2l0eT0iMCIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPgo=');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    animation: rotate 120s linear infinite;
    z-index: 1;
    transition: opacity 1.2s ease, transform 1.2s ease;

    @media (max-width: 768px) {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 500px;
        height: 500px;
    }

    .circle-3 {
        width: 700px;
        height: 700px;
    }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero .subtitle {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 26.34px;
    line-height: 28.32px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-4);
}

.hero .main-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(60px, 15vw, 257.16px);
    line-height: clamp(1.2, 10vw, 121.33px);
    letter-spacing: 1.81px;
    text-align: center;

    background-image: url('assets/biosecurity-animated-background.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    @media (max-width: 1400px) {
        font-size: clamp(60px, 13vw, 257.16px);

    }

    @media (max-width: 1000px) {
        font-size: clamp(60px, 11vw, 257.16px);
    }

}

.hero .tagline {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(1.5rem, 5vw, 41.46px);
    line-height: clamp(1.6rem, 5.5vw, 44.57px);
    letter-spacing: 0.38em;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-text-black);
    margin-bottom: 2.5rem;
}

.animal-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.animal-card {
    border: 1px solid var(--color-accent-4);
    position: relative;
    min-width: 184px;
    min-height: 140px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    background: transparent;
    display: flex;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
}

.animal-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.animal-card:hover img {
    transform: scale(1.07);
    /* Slightly bigger on hover */
}

.check-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--color-accent-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Two Column Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.reverse-desktop .col-content {
    order: 2;
}

.col-image {
    perspective: 1200px;
    /* Essential for 3D rotation */
}

.reverse-desktop .col-image {
    order: 1;
}

.section-subtitle {
    font-family: Figtree;
    font-weight: 400;
    font-style: Regular;
    font-size: 26.34px;
    line-height: 35px;
    letter-spacing: 7%;
    text-transform: uppercase;
    color: var(--color-accent-4);
    margin-bottom: 3rem;

    @media (max-width: 1100px) {
        font-size: 2rem;
    }
}

.section-title {
    margin-bottom: 1.5rem;
    font-family: Figtree;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 85px;
    line-height: 80px;
    letter-spacing: 0px;

    @media (max-width: 1400px) {
        font-size: 3rem;
        margin-bottom: unset;
    }

    @media (max-width: 1200px) {
        font-size: 2rem;
        margin-bottom: unset;
    }
}

.body-text {
    font-family: Figtree;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0px;
    color: var(--color-text-black);
    margin-bottom: 1rem;
}

.mockup-img {
    width: 100%;
    max-width: 820px;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.8s ease;
    transform-style: preserve-3d;
}

.mockup-img:hover {
    transform: rotateY(-10deg) rotateX(4deg) scale(1.04);
    box-shadow: 25px 25px 50px rgba(15, 159, 70, 0.1), -10px 10px 30px rgba(0, 0, 0, 0.05);
}

/* Orange Icon Template */
.orange-icon-wrapper {
    width: 72px;
    height: 72px;
    padding-top: 8px;
    background-color: var(--color-orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(242, 145, 0, 0.2);

    @media (max-width: 768px) {
        width: 50px;
        height: 50px;
        padding-top: 4px;
    }
}

.orange-icon-wrapper svg,
.orange-icon-wrapper img {
    width: 62px;
    height: 55px;
    fill: white;
    color: white;

    @media (max-width: 768px) {
        width: 44px;
        height: 44px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.feature-item-text {
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    color: var(--color-text-black);
}

/* The Result Section New Layout */
.the-result {
    position: relative;
    overflow: hidden;
}

.result-content-bg {
    position: absolute;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.result-content-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.result-header-desktop {
    display: none;
}

.result-header-mobile {
    margin-bottom: 2rem;
    z-index: 2;
    text-align: left;
}

.result-tablet {
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.result-tablet img {
    height: auto;
    border-radius: 0px 50px 50px 0px;
    box-shadow: 0 20px 50px rgba(10, 43, 30, 0.15);
    display: block;

    @media (max-width: 1700px) {
        max-width: 700px;
    }

    @media (max-width: 1500px) {
        max-width: 600px;
    }

    @media (max-width: 1300px) {
        max-width: 500px;
    }

    @media (max-width: 1100px) {
        border-radius: 0px 35px 35px 0px;
        max-width: 450px;
    }

    @media (max-width: 992px) {
        border-radius: 0px 50px 50px 0px;
        max-width: 100%;
    }
}

.result-text-content {
    padding: 0 1.5rem 2rem 1.5rem;
    position: relative;
    z-index: 2;

    @media (max-width: 1100px) {
        .result-text-content {
            flex: 0 0 55%;
            padding: 8rem 4rem 8rem 6rem;
        }
    }
}

.result-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 2.5rem 0;
}

.result-feature-card {
    max-width: 205px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.the-result .orange-icon-wrapper {
    background-color: #FF950033;
}

.result-feature-text {
    font-family: Figtree;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-text-black);
    margin-top: 1rem;
    text-align: left;
}

.form-text-margin {
    margin-bottom: 1rem;
}

.subtitle-margin {
    margin-bottom: 2rem;
}

.result-footer-text {
    margin-top: 1rem;
}

.desktop-br {
    display: none;
}

@media (min-width: 992px) {
    .result-content-bg {
        top: 0;
        left: 10%;
        right: 10%;
        border-radius: 36px;
        overflow: hidden;
    }

    .result-layout {
        flex-direction: row;
        align-items: center;
        max-width: 92%;
        margin: 0 0 auto 0;
    }

    .result-header-mobile {
        display: none;
    }

    .result-header-desktop {
        display: block;
        margin-bottom: 3rem;
    }

    .result-tablet {
        flex: 0 0 45%;
        padding: 0;
        margin-bottom: 0;
    }

    .result-features-grid {
        gap: 24px;
        margin: 3.5rem 0;
    }



    .result-feature-text {
        font-size: 18px;
    }

    .desktop-br {
        display: block;
    }
}

#producer,
#veterinarian,
#service-providers {
    background-image: url('assets/person-section-bg.webp');
    background-size: cover;
    background-position: bottom;

    @media (max-width: 768px) {
        background-position: 65%;
    }
}

.audience-details {
    max-width: 470px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* User Role Images */
.user-role-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-self: end;
    align-items: flex-end;
}

.decorator-circle {
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    border: 2px dashed rgba(102, 164, 130, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: rotate 160s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.role-img {
    width: 100%;
    max-width: 450px;
    object-fit: cover;
    border-radius: 20px;
}

#producer .role-img {
    max-width: 828px;
    height: auto;
}

#veterinarian .role-img {
    max-width: 828px;
    height: auto;
}

#service-providers .role-img {
    max-width: 828px;
    height: auto;
}

/* Highlight Banner */
.highlight-banner {
    text-align: left;
    overflow: hidden;
}

.banner-text {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1px;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pf-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 270px;
}

.pf-card .orange-icon-wrapper {
    margin-bottom: 1.5rem;
}

.pf-content h3 {
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text-black);
}

.pf-content p {
    font-size: 14px;
    color: var(--color-text-main);
}

/* Veterinarian background */
.bg-veterinarian {
    background-image: url('assets/person-section-bg.webp');
    background-size: cover;
    background-position: bottom;
    padding: 5rem 0 0 0;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    width: 100%;
}

.container-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
}

.cta-card {
    background-color: #E9FBF1;
    border-radius: 40px;
    padding: 4rem;
    text-align: center;
    width: 40%;
    margin: 0 auto;
}

.cta-header {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 37.5px;
    line-height: 35.29px;
    letter-spacing: 0px;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.cta-card .body-text {
    margin-bottom: 2.5rem;
    color: var(--color-text-black);
}

.cta-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .cta-card {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .cta-card {
        width: 75%;
        padding: 3rem 2rem;
    }

    .cta-header {
        font-size: 28px;
        line-height: 1.2;
    }
}

/* General Features Grid */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(132, 207, 160, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-accent-3);
}

.feature-card .orange-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
    height: 215px;
    padding: 3rem 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    padding: 0 10rem;

    @media (max-width: 992px) {
        padding: 0 1rem;
    }

    @media (max-width: 1100px) {
        gap: 0;
        padding: 0 1.5rem;
    }
}

.footer-logo img {
    height: 48px;
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-nav a,
.footer-contact a {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-primary);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-accent-2);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
}

.footer-divider-container {
    width: 100%;
    padding: 2rem 10rem;

    @media (max-width: 992px) {
        padding: 0 1rem;
    }

    @media (max-width: 1100px) {
        padding: 0 1.5rem;
    }
}

.footer-divider {
    border-top: 0.5px solid #528A32;
    width: 100%;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-family: 'Figtree', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-primary);
    opacity: 0.8;
}

@media (max-width: 992px) {
    .footer-nav {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        height: 85px;
        padding: 0.5rem 0;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 0.5rem;
        gap: 1rem;
    }

    .footer-logo img {
        height: 24px;
    }

    .footer-nav {
        display: none;
        /* Hide links on mobile to fit the 85px height constraint if needed, or keep them very small */
    }

    .footer-contact a {
        font-size: 12px;
    }

    .footer-contact {
        gap: 2px;
    }

    .footer-bottom {
        padding-top: 0.5rem;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* Animations */
.animate-on-scroll .fade-in,
.animate-on-scroll .slide-up,
.animate-on-scroll .slide-left,
.animate-on-scroll .slide-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll .slide-up {
    transform: translateY(30px);
}

.animate-on-scroll .slide-left {
    transform: translateX(30px);
}

.animate-on-scroll .slide-right {
    transform: translateX(-30px);
}

.animate-on-scroll.is-visible .fade-in,
.animate-on-scroll.is-visible .slide-up,
.animate-on-scroll.is-visible .slide-left,
.animate-on-scroll.is-visible .slide-right {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-col {
        gap: 2rem;
    }

    .grid-4-col,
    .producer-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .language-selector,
    .btn-desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 24px;
        position: relative;
        z-index: 1001;
        margin-left: 1rem;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        transition: 0.3s ease;
    }

    .hamburger {
        top: 11px;
        left: 0;
    }

    .hamburger::before {
        top: -8px;
        left: 0;
    }

    .hamburger::after {
        top: 8px;
        left: 0;
    }

    .mobile-menu-open .hamburger {
        background: transparent;
    }

    .mobile-menu-open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-open .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        gap: 2rem;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }

    .mobile-menu-open .nav-links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 24px;
    }

    .btn-mobile-only {
        color: white !important;
        display: block;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .reverse-desktop .col-content {
        order: 1;
    }

    .reverse-desktop .col-image {
        order: 2;
    }

    .features-grid {
        text-align: left;
    }

    .benefit-list li {
        text-align: left;
    }

    /* Mobile menu handled in max-width: 1024px */
    .hero {
        padding: 8rem 0 4rem;
    }

    .animal-cards {
        gap: 1rem;
    }

    .result-tablet {
        width: 100%;
        padding: 0 1rem 0 0;
    }

    .result-tablet img {
        width: 100%;
        max-width: 453px;
        height: auto;
        object-fit: cover;
        border-radius: 0 20px 20px 0px;
        transform: rotate(0deg);
        opacity: 1;
        box-shadow: 0 20px 50px rgba(10, 43, 30, 0.15);
    }

    .banner-text {
        font-size: 1.8rem;
    }

    .footer-container {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .grid-4-col,
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .feature-item {
        gap: 0.5rem;
    }

    .feature-item-text {
        font-size: 14px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Responsive Overrides Applied for HTML Refactoring */
@media (max-width: 992px) {
    .hide-desktop {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 993px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Base Typographic Resets for Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 38px;
        line-height: 44px;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 1.5rem;
    }

    .body-text {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero .subtitle {
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.4;
    }

    .hero .tagline {
        font-size: 20px;
        margin-bottom: 2rem;
    }

    /* Animal cards small enough to fit a single row */
    .animal-cards {
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        /* Optional: Hide scrollbar but allow native mobile scroll */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .animal-cards::-webkit-scrollbar {
        display: none;
    }

    .animal-card {
        min-width: unset;
        min-height: unset;
        width: calc((100vw - 4rem) / 5);
        /* 5 cards in container width */
        height: calc((100vw - 4rem) / 5);
        max-width: 70px;
        max-height: 70px;
        border-radius: 8px;
    }

    .animal-card img {
        width: 75%;
        height: 75%;
    }

    .check-icon {
        width: 14px;
        height: 14px;
        bottom: 5px;
        right: 5px;
    }

    .check-icon::after {
        width: 3px;
        height: 6px;
        border-width: 0 1.5px 1.5px 0;
        margin-bottom: 1px;
    }

    /* Target Tabs Sub-Nav Mobile */
    .target-tabs-container {
        padding: 0;
        margin-bottom: 1rem;
    }

    .target-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 1rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .target-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-link {
        font-family: var(--font-nav);
        font-size: 16px;
        font-weight: 500;
        color: #A0A0A0;
        padding-bottom: 0.5rem;
        position: relative;
    }

    .tab-link.active {
        color: var(--color-primary);
        font-weight: 700;
    }

    .tab-link.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-accent-1);
    }

    /* Result grid changes */
    .result-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .result-feature-card {
        width: auto;
    }

    /* Result section adjustments per design */
    /* Target Audience cards adjustments per design */
    .pf-card .orange-icon-wrapper {
        margin-bottom: 0.8rem;
    }

    .pf-content h3 {
        font-size: 18px;
    }

    /* Remove the default background pad for subpages on mobile to match design */
    .target-audience.pt-large,
    .target-audience.pt-medium {
        padding-top: 2rem;
    }

    #producer,
    #veterinarian,
    #service-providers {
        margin-top: 2rem;
    }
}