/* ========================================
   MLC AGRICULTURE STYLESHEET
   Sustainable Agribusiness Design System
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --dark-navy: #0A1628;
    --gold-accent: #C8A55A;
    --olive-green: #6B7D3A;
    --off-white: #F5F3EF;
    --warm-gray: #E8E4DD;
    --text-dark: #2C3E50;
    --text-light: #666;
    --border-radius-small: 8px;
    --border-radius-large: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 4px 12px rgba(10, 22, 40, 0.08);
    --shadow-medium: 0 8px 24px rgba(10, 22, 40, 0.12);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-navy);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

a {
    color: var(--olive-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-accent);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--warm-gray);
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-navy);
    white-space: nowrap;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive-green);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link.parent-link {
    color: var(--olive-green);
    font-weight: 600;
    border: 2px solid var(--olive-green);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
}

.nav-link.parent-link:hover {
    background: var(--olive-green);
    color: white;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--warm-gray);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--warm-gray);
}

.mobile-nav-link.parent-link {
    color: var(--olive-green);
    font-weight: 600;
    border: 2px solid var(--olive-green);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-small);
    border-bottom: 2px solid var(--olive-green);
}

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.1) 0%, rgba(200, 165, 90, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-navy);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ========== BUTTONS ========== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--olive-green);
    color: white;
    border: 2px solid var(--olive-green);
    border-radius: var(--border-radius-small);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--dark-navy);
    border-color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-button-light {
    background: white;
    color: var(--olive-green);
    border: 2px solid var(--olive-green);
}

.cta-button-light:hover {
    background: var(--olive-green);
    color: white;
}

/* ========== SECTION STYLING ========== */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--olive-green);
    margin: 1rem auto 0;
}

/* ========== PAGE HERO ========== */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.15) 0%, rgba(200, 165, 90, 0.08) 100%);
    padding: 5rem 2rem;
    text-align: center;
    animation: fadeUp 0.6s ease-out;
}

.page-hero-content h1 {
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ========== SERVICES SECTION ========== */
.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    text-align: center;
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-green);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.95rem;
}

/* ========== VALUE PROPOSITION ========== */
.value-proposition {
    background: white;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    animation: fadeUp 0.6s ease-out;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.why-choose-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.why-content h2 {
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out;
}

.check-icon {
    color: var(--olive-green);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.why-list strong {
    color: var(--dark-navy);
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.1) 0%, rgba(200, 165, 90, 0.05) 100%);
    border-radius: var(--border-radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem;
}

.image-placeholder svg {
    width: 100%;
    max-width: 300px;
    opacity: 0.6;
}

/* ========== OPERATIONS SECTION ========== */
.operations-overview {
    background: var(--off-white);
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.operation-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.operation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
}

.operation-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--olive-green);
}

.operation-icon svg {
    width: 100%;
    height: 100%;
}

.operation-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.operation-card p {
    font-size: 0.95rem;
}

/* ========== METHODOLOGY SECTION ========== */
.crop-production {
    background: white;
}

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

.methodology-item {
    padding: 2rem;
    border-left: 4px solid var(--olive-green);
    animation: fadeUp 0.6s ease-out;
    transition: var(--transition);
}

.methodology-item:hover {
    border-left-color: var(--gold-accent);
    transform: translateX(8px);
}

.method-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.methodology-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.methodology-item p {
    font-size: 0.95rem;
}

/* ========== SUPPLY CHAIN SECTION ========== */
.supply-chain {
    background: var(--off-white);
}

.supply-chain-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.chain-section h3 {
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.chain-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chain-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.chain-step:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    background: var(--olive-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.logistics-list {
    list-style: none;
}

.logistics-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.logistics-list li:hover {
    border-color: var(--olive-green);
    background: rgba(107, 125, 58, 0.03);
}

.logistics-list .icon {
    color: var(--olive-green);
    font-weight: bold;
    flex-shrink: 0;
}

/* ========== TECHNOLOGY & INNOVATION ========== */
.technology-innovation {
    background: white;
}

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

.tech-card {
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.05) 0%, rgba(200, 165, 90, 0.03) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.1) 0%, rgba(200, 165, 90, 0.08) 100%);
}

.tech-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.tech-card p {
    font-size: 0.95rem;
}

/* ========== ENVIRONMENTAL STEWARDSHIP ========== */
.environmental-stewardship {
    background: var(--off-white);
}

.stewardship-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.stewardship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stewardship-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 2px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.stewardship-card:hover {
    border-color: var(--olive-green);
    box-shadow: var(--shadow-medium);
}

.stewardship-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.stewardship-card p {
    font-size: 0.95rem;
}

/* ========== SUSTAINABLE PRACTICES ========== */
.sustainable-practices {
    background: white;
}

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

.practice-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.practice-item:hover {
    transform: translateY(-8px);
}

.practice-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.1) 0%, rgba(200, 165, 90, 0.05) 100%);
    border-radius: 50%;
    color: var(--olive-green);
    transition: var(--transition);
}

.practice-item:hover .practice-icon {
    background: var(--olive-green);
    color: white;
    transform: scale(1.1);
}

.practice-icon svg {
    width: 100%;
    height: 100%;
}

.practice-item h3 {
    margin-bottom: 1rem;
}

.practice-item p {
    font-size: 0.95rem;
}

/* ========== COMMUNITY IMPACT ========== */
.community-impact {
    background: var(--off-white);
}

.impact-narrative {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.impact-narrative h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.impact-narrative p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.impact-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
}

.impact-card h4 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.impact-card p {
    font-size: 0.95rem;
}

/* ========== IMPACT METRICS ========== */
.impact-metrics {
    background: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.metric {
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.08) 0%, rgba(200, 165, 90, 0.04) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
    border: 1px solid var(--warm-gray);
}

.metric:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--olive-green);
    margin-bottom: 0.5rem;
}

.metric p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========== FUTURE INITIATIVES ========== */
.future-initiatives {
    background: var(--off-white);
}

.initiatives-timeline {
    position: relative;
    padding: 2rem 0;
}

.initiatives-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--olive-green);
}

.timeline-item {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    animation: fadeUp 0.6s ease-out;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--olive-green);
    border: 3px solid white;
    border-radius: 50%;
    top: 0;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    width: 45%;
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
}

.timeline-content h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
    animation: fadeUp 0.6s ease-out;
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--warm-gray);
    border-radius: var(--border-radius-small);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--olive-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(107, 125, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: -1rem;
}

/* ========== CONTACT INFO ========== */
.contact-info-wrapper {
    animation: fadeUp 0.6s ease-out;
}

.contact-info-wrapper h2 {
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--warm-gray);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h3 {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.1) 0%, rgba(200, 165, 90, 0.05) 100%);
    border-radius: 50%;
    color: var(--olive-green);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-item .label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.info-item a {
    color: var(--olive-green);
    font-weight: 500;
}

.info-item a:hover {
    color: var(--dark-navy);
}

.info-block.highlight {
    background: linear-gradient(135deg, rgba(107, 125, 58, 0.08) 0%, rgba(200, 165, 90, 0.04) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    border-bottom: none;
    padding-bottom: 2rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--off-white);
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--warm-gray);
    transition: var(--transition);
    animation: fadeUp 0.6s ease-out;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--olive-green);
    transform: translateY(-4px);
}

.faq-item h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #6B7D3A 0%, #0A1628 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeUp 0.6s ease-out;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.3rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-section a {
    color: var(--olive-green);
    font-weight: 500;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 500px;
        margin-top: 70px;
    }

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

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

    .why-choose-us {
        grid-template-columns: 1fr;
    }

    .supply-chain-content {
        grid-template-columns: 1fr;
    }

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

    .initiatives-timeline:before {
        left: 15px;
    }

    .timeline-item {
        justify-content: flex-start !important;
    }

    .timeline-content {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        margin-right: 0 !important;
    }

    .timeline-marker {
        left: 15px;
        transform: translateX(-50%);
    }
}

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

    .hamburger {
        display: flex;
    }

    .header {
        padding: 0.75rem 0;
    }

    .header-container {
        padding: 0 1rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .logo {
        height: 35px;
    }

    .mobile-menu.active {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 0;
    }

    .page-hero {
        padding: 3rem 1.5rem;
    }

    .hero {
        margin-top: 70px;
        min-height: 400px;
        padding: 1rem;
    }

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

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

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

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .value-number {
        font-size: 2rem;
    }

    .why-choose-us {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .supply-chain-content {
        grid-template-columns: 1fr;
    }

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

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

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .initiatives-timeline {
        padding: 1rem 0;
    }

    .initiatives-timeline:before {
        left: 12px;
    }

    .timeline-marker {
        left: 12px;
    }

    .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero {
        min-height: 300px;
    }

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

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

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

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

    .value-number {
        font-size: 1.8rem;
    }

    .value-item {
        padding: 1rem;
    }

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

    .footer-section h4 {
        font-size: 1rem;
    }

    .contact-form,
    .info-block {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .logo-section {
        gap: 0.5rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}
