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

/* Prevent horizontal overflow globally */
* {
    max-width: 100%;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

:root {
    --primary-green: #006837;
    --primary-yellow: #F9DC00;
    --dark-gray: #3D3D3D;
    --medium-gray: #5A5A5A;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-color: #333333;
    --heading-font: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    width: 100%;
}

/* Additional mobile safety */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Navbar base styles */
nav.navbar {
    background: rgba(0, 104, 55, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: none !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

/* Navbar when scrolled */
nav.navbar.scrolled {
    background: rgba(0, 104, 55, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: none !important;
    position: fixed !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    font-family: var(--heading-font);
}

.nav-menu a:hover {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

/* NOVO MENU PORTFOLIO - SIMPLES E FUNCIONAL */
.portfolio-menu {
    position: relative;
}

.portfolio-toggle {
    cursor: pointer;
    user-select: none;
}

.portfolio-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 104, 55, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 200px;
    box-shadow: none;
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.portfolio-menu:hover .portfolio-dropdown,
.portfolio-menu.active .portfolio-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.portfolio-dropdown a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    font-family: var(--heading-font);
}

.portfolio-dropdown a:hover {
    background: rgba(249, 220, 0, 0.15);
    color: var(--primary-yellow);
    padding-left: 1.5rem;
}

.lang-float {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1100;
}

.lang-float-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.lang-float-toggle:hover {
    background: rgba(0, 0, 0, 0.65);
}

.lang-code {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.lang-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.lang-flag--br {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23006837'/%3E%3Cpolygon points='14,2 26,10 14,18 2,10' fill='%23F9DC00'/%3E%3Ccircle cx='14' cy='10' r='4.2' fill='%2300226B'/%3E%3C/svg%3E");
}

.lang-flag--es {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23AA151B'/%3E%3Crect y='5' width='28' height='10' fill='%23F1BF00'/%3E%3C/svg%3E");
}

.lang-flag--en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23012169'/%3E%3Cpath d='M0 0 L28 20 M28 0 L0 20' stroke='%23FFFFFF' stroke-width='6' stroke-linecap='butt'/%3E%3Cpath d='M0 0 L28 20 M28 0 L0 20' stroke='%23C8102E' stroke-width='3' stroke-linecap='butt'/%3E%3Cpath d='M14 0 V20 M0 10 H28' stroke='%23FFFFFF' stroke-width='8' stroke-linecap='butt'/%3E%3Cpath d='M14 0 V20 M0 10 H28' stroke='%23C8102E' stroke-width='4' stroke-linecap='butt'/%3E%3C/svg%3E");
}

.lang-float-menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: 200px;
    max-width: calc(100vw - 36px);
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    display: none;
}

.lang-float.open .lang-float-menu {
    display: block;
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lang-option[aria-selected="true"] {
    background: rgba(249, 220, 0, 0.18);
}

.lang-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    margin-top: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 75vh;
    background: url('imagens/heroprincipal.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.hero-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 260px;
    background: linear-gradient(to bottom, rgba(0, 104, 55, 0) 0%, rgba(0, 104, 55, 0.2) 40%, rgba(0, 104, 55, 0.85) 70%, rgba(0, 104, 55, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

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

.hero-content {
    background: linear-gradient(to bottom, rgba(0, 104, 55, 1) 0%, rgba(0, 104, 55, 0.65) 40%, rgba(0, 104, 55, 0.2) 70%, rgba(248, 249, 250, 1) 100%);
    color: var(--white);
    padding: 50px 40px 110px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 0;
}

.hero-content::before {
    display: none;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.portfolio-title {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 3rem 0 2rem 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
}

.portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    border-radius: 2px;
}

.fruit-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.fruit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.fruit-item:hover {
    transform: translateY(-5px);
}

.fruit-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fruit-icon-image {
    padding: 0;
}

.fruit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fruit-name {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.fruit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-yellow), rgba(249, 220, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.fruit-item:hover .fruit-icon {
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.fruit-item:hover .fruit-icon::before {
    opacity: 1;
}

.fruit-item:hover .fruit-name {
    color: var(--primary-yellow);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-yellow);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    color: var(--primary-green);
}

.wave-divider {
    position: relative;
}

.wave-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 46px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
    pointer-events: none;
    opacity: 0.95;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,34 C120,10 240,10 360,22 C480,34 600,54 720,50 C840,46 960,22 1080,20 C1200,18 1320,34 1380,42 L1440,46' fill='none' stroke='rgba(0,104,55,0.26)' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M0,40 C120,16 240,16 360,28 C480,40 600,56 720,52 C840,48 960,28 1080,26 C1200,24 1320,38 1380,46 L1440,50' fill='none' stroke='rgba(249,220,0,0.30)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider>.container {
    position: relative;
    z-index: 1;
}

.about {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.about-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-icon svg {
    width: 52px;
    height: 52px;
}

.about-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-green), #007a3d);
    border-radius: 16px;
    text-align: center;
}

.about-stats .stat-item {
    color: var(--white);
}

.about-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stats .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.team h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.team-member {
    background-color: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
    transition: transform 0.3s ease;
}

.team-member:nth-child(2) .member-image {
    object-position: center 50%;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

.team-info {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-info h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.team-info p {
    color: var(--medium-gray);
    line-height: 1.8;
    text-align: left;
    font-size: 1rem;
    flex: 1;
}

.team-together {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    gap: 3rem;
    align-items: center;
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-together-photo {
    text-align: center;
}

.together-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-together-text h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-together-text p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.water-diff {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.water-diff h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.water-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.water-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.water-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.water-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.water-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.water-icon svg {
    width: 52px;
    height: 52px;
}

.water-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.water-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.specs {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.specs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.specs-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.specs-item {
    background-color: var(--light-bg);
    padding: 2.25rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.specs-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.specs-icon {
    color: var(--primary-green);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.specs-icon svg {
    width: 28px;
    height: 28px;
    margin-top: 3px;
}

.specs-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.specs-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.global-presence {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green), #005a2e);
    color: var(--white);
}

.global-presence h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
}

.global-text {
    text-align: center;
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.business {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.business h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.business-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.business-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.business-icon svg {
    width: 36px;
    height: 36px;
}

.business-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.business-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.export-services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.export-services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.export-card {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.export-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid var(--primary-yellow);
    padding-bottom: 0.8rem;
}

.export-card ul {
    list-style: none;
    padding: 0;
}

.export-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0;
    color: var(--medium-gray);
    line-height: 1.6;
}

.list-icon {
    color: var(--primary-green);
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.quality {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.quality h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.quality-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.certifications-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.certification-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: scale(1.1);
}

.certification-logo {
    max-height: 150px;
    height: auto;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.certification-logo:hover {
    filter: brightness(1);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.quality-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.quality-icon svg {
    width: 52px;
    height: 52px;
}

.quality-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.quality-item p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: var(--heading-font);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--medium-gray);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-form button {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #005a2f, #004a26);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 104, 55, 0.3);
}

/* Fruits Selection Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fruits-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.fruit-checkbox {
    position: relative;
}

.fruit-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 2;
}

.fruit-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    border: 2px solid #e8f5e8;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff, #fafffe);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 104, 55, 0.08);
}

.fruit-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.fruit-label::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.fruit-label:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0f9f0, #e8f5e8);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 104, 55, 0.15);
}

.fruit-label:hover::before {
    transform: scaleY(1);
}

.fruit-label:hover::after {
    border-color: var(--primary-green);
    background: rgba(0, 104, 55, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: none;
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(0, 104, 55, 0.08), rgba(249, 220, 0, 0.08));
    color: var(--primary-green);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 104, 55, 0.2);
}

.fruit-checkbox input[type="checkbox"]:checked+.fruit-label::before {
    transform: scaleY(1);
}

.fruit-checkbox input[type="checkbox"]:checked+.fruit-label::after {
    background: var(--primary-green);
    border-color: var(--primary-green);
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m13.854 3.646-7.5 7.5a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6 10.293l7.146-7.147a.5.5 0 0 1 .708.708z'/%3e%3c/svg%3e");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Fruits Error Message */
.fruits-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Mobile Dropdown Styles */
.mobile-fruits-dropdown {
    display: none;
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border: 2px solid #e8f5e8;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff, #fafffe);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--dark-gray);
    box-shadow: 0 2px 8px rgba(0, 104, 55, 0.08);
}

.dropdown-toggle:hover {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #f0f9f0, #e8f5e8);
    box-shadow: 0 4px 15px rgba(0, 104, 55, 0.15);
}

.dropdown-count {
    background: var(--primary-green);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    display: none;
}

.dropdown-count.show {
    display: inline-block;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 104, 55, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu.show {
    max-height: 320px;
    overflow-y: auto;
}

.dropdown-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(0, 104, 55, 0.1);
    transition: background-color 0.2s ease;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(0, 104, 55, 0.05);
}

.dropdown-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.8rem;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.dropdown-option label {
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-gray);
    flex: 1;
}

.dropdown-option input[type="checkbox"]:checked+label {
    color: var(--primary-green);
    font-weight: 600;
}

@media (max-width: 768px) {
    .desktop-fruits {
        display: none;
    }

    .mobile-fruits-dropdown {
        display: block;
    }
}

@media (min-width: 769px) {
    .fruits-selection.desktop-fruits {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
    }
}

footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info p {
    color: #cccccc;
    font-size: 0.95rem;
}


@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 50%;
        top: 88px;
        transform: translateX(-50%);
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-green), rgba(0, 104, 55, 0.95));
        backdrop-filter: blur(10px);
        width: 280px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        padding: 1.5rem 0;
        gap: 0.5rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-20px);
        z-index: 999;
        overflow-y: auto;
        max-height: 80vh;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .portfolio-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(0, 104, 55, 0.7);
        border-radius: 8px;
        margin: 0.5rem 0 0 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .portfolio-menu.active .portfolio-dropdown {
        max-height: 400px;
    }

    .portfolio-dropdown a {
        display: block;
        padding: 0.8rem 1.2rem !important;
        color: var(--white) !important;
        text-decoration: none;
        font-weight: 600 !important;
        font-size: 1rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        transition: all 0.3s ease;
    }

    .portfolio-dropdown a:hover {
        background: rgba(249, 220, 0, 0.15) !important;
        color: var(--primary-yellow) !important;
        padding-left: 1.5rem !important;
        transform: none !important;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: none;
        margin: 0 1.5rem;
    }

    .nav-menu li:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu .dropdown {
        border-bottom: none;
    }

    .nav-menu .dropdown:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }

    .nav-menu a:hover {
        color: var(--primary-yellow);
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(8px);
        border-bottom-color: transparent;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--primary-yellow);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        border-radius: 0 2px 2px 0;
    }

    .nav-menu a:hover::before {
        transform: scaleY(1);
    }

    .nav-menu.active {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        transition: transform 0.3s ease;
    }

    .hamburger.active {
        transform: rotate(90deg);
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-image {
        height: 60vh;
    }

    .hero-image::after {
        height: 200px;
        background: linear-gradient(to bottom, rgba(0, 104, 55, 0) 0%, rgba(0, 104, 55, 0.2) 40%, rgba(0, 104, 55, 0.85) 70%, rgba(0, 104, 55, 1) 100%);
    }

    .hero-content {
        background: linear-gradient(to bottom, rgba(0, 104, 55, 1) 0%, rgba(0, 104, 55, 0.65) 40%, rgba(0, 104, 55, 0.2) 70%, rgba(248, 249, 250, 1) 100%);
        padding: 40px 20px 80px;
        margin-top: 0;
    }

    .hero-content::before {
        height: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .team-member {
        margin: 0 auto;
        max-width: 400px;
    }

    .team-photo {
        height: 250px;
    }

    .team-info {
        padding: 2rem;
    }

    .team-info h3 {
        font-size: 1.6rem;
    }

    .team-info h4 {
        font-size: 1.1rem;
    }

    .team-together {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .team-together-photo {
        order: -1;
        margin-bottom: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .about h2,
    .origin h2,
    .water-diff h2,
    .specs h2,
    .business h2,
    .export-services h2,
    .quality h2,
    .contact h2,
    .global-presence h2 {
        font-size: 2.2rem;
    }

    .about,
    .origin,
    .water-diff,
    .specs,
    .business,
    .export-services,
    .quality,
    .contact,
    .global-presence {
        padding: 60px 0;
    }

    .origin-intro,
    .water-intro,
    .specs-intro {
        margin-bottom: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .certifications-logos {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .certification-logo {
        max-height: 90px;
        max-width: 180px;
    }
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-yellow), #f5d800);
    color: var(--primary-green);
    padding: 12px 18px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(249, 220, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 170px;
    justify-content: center;
    border: 1px solid rgba(0, 104, 55, 0.2);
    backdrop-filter: blur(5px);
    animation: floatingBounce 3s ease-in-out infinite;
}

.floating-quote-btn:hover {
    background: linear-gradient(135deg, #f5d800, var(--primary-yellow));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 220, 0, 0.35);
    color: var(--primary-green);
    text-decoration: none;
    animation-play-state: paused;
}

@keyframes floatingBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-4px);
    }
    30% {
        transform: translateY(-2px);
    }
    40% {
        transform: translateY(-1px);
    }
}

@keyframes floatingBounceMobile {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-2px);
    }
    30% {
        transform: translateY(-1px);
    }
}

.floating-quote-btn .quote-icon {
    background: var(--primary-green);
    color: var(--primary-yellow);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-quote-btn .quote-text {
    white-space: nowrap;
}

/* Responsive adjustments for floating button */
@media (max-width: 768px) {
    .floating-quote-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 140px;
        gap: 6px;
        border-radius: 30px;
        box-shadow: 0 3px 12px rgba(249, 220, 0, 0.2);
        animation: floatingBounceMobile 4s ease-in-out infinite;
    }
    
    .floating-quote-btn .quote-icon {
        width: 24px;
        height: 24px;
    }
    
    .floating-quote-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(249, 220, 0, 0.3);
        animation-play-state: paused;
    }
}

@media (max-width: 480px) {
    .floating-quote-btn {
        bottom: 12px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.7rem;
        min-width: 110px;
        border-radius: 25px;
        max-width: calc(100vw - 20px);
        box-shadow: 0 2px 8px rgba(249, 220, 0, 0.15);
        animation: floatingBounceMobile 5s ease-in-out infinite;
    }
    
    .floating-quote-btn .quote-icon {
        width: 20px;
        height: 20px;
    }
    
    .floating-quote-btn .quote-text {
        font-size: 0.65rem;
    }
    
    .floating-quote-btn:hover {
        transform: none;
        box-shadow: 0 3px 10px rgba(249, 220, 0, 0.25);
        animation-play-state: paused;
    }
}

@media (max-width: 375px) {
    .floating-quote-btn {
        bottom: 10px;
        right: 8px;
        padding: 6px 10px;
        min-width: 95px;
        font-size: 0.65rem;
        border-radius: 20px;
        max-width: calc(100vw - 16px);
        animation: floatingBounceMobile 6s ease-in-out infinite;
    }
    
    .floating-quote-btn .quote-icon {
        width: 18px;
        height: 18px;
    }
    
    .floating-quote-btn .quote-text {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 320px) {
    .floating-quote-btn {
        bottom: 8px;
        right: 6px;
        padding: 5px 8px;
        min-width: 85px;
        font-size: 0.6rem;
        max-width: calc(100vw - 12px);
        animation: floatingBounceMobile 6s ease-in-out infinite;
    }
    
    .floating-quote-btn .quote-icon {
        width: 16px;
        height: 16px;
    }
    
    .floating-quote-btn .quote-text {
        font-size: 0.55rem;
    }
}

/* Language selector mobile optimization */
@media (max-width: 480px) {
    .lang-float {
        left: 10px;
        bottom: 12px;
    }
    
    .lang-float-menu {
        width: 180px;
        max-width: calc(100vw - 20px);
    }
    
    .lang-option {
        padding: 10px;
        gap: 10px;
    }
    
    .lang-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .lang-float {
        left: 8px;
        bottom: 10px;
    }
    
    .lang-float-menu {
        width: 160px;
        max-width: calc(100vw - 16px);
        padding: 6px;
    }
    
    .lang-option {
        padding: 8px;
        gap: 8px;
    }
    
    .lang-name {
        font-size: 0.85rem;
    }
}