/* ===== GREEN LIFE FERTILIZER – Shared styles (Home, About, Products, Contact, Crop Solutions) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f5ea;
    color: #1f2e1f;
    line-height: 1.6;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
    --green-deep: #1c4b3c;
    --green-soft: #3f786a;
    --green-moss: #5f8b4b;
    --green-pale: #e8f2e8;
    --cream: #f4f1e7;
    --light-bg: #f0f5ea;
    --beige-section: #f8f8f4;
    --section-lightgreen: #f0f7ee;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 28px rgba(28, 75, 60, 0.1);
    --shadow-lg: 0 16px 48px rgba(28, 75, 60, 0.12);
    --transition: 0.25s ease;
    --text-muted: #5a6b5c;
    --page-container: 1320px;
    --section-padding: 72px 0;
    --section-padding-sm: 56px 0;
}

::selection {
    background: rgba(28, 75, 60, 0.15);
    color: #1c4b3c;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--page-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Global section layout: alternating backgrounds, consistent spacing */
.section-offwhite {
    background: var(--beige-section);
    padding: var(--section-padding);
}

.section-lightgreen {
    background: var(--section-lightgreen);
    padding: var(--section-padding);
}

.content-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px 36px;
}

@media (max-width: 768px) {
    .section-offwhite,
    .section-lightgreen {
        padding: var(--section-padding-sm);
    }
    .content-card {
        padding: 28px 22px;
    }
}

/* ===== TOP INFO BAR (same on all pages) ===== */
.top-info-bar {
    background: var(--green-deep);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-info-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.top-info-bar .contact-info {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.top-info-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info-bar .contact-info i {
    font-size: 0.9rem;
}

.top-info-bar .contact-info a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-info-bar .contact-info a:hover {
    opacity: 0.9;
}

.top-info-bar .social-links {
    display: flex;
    gap: 12px;
}

.top-info-bar .social-links a {
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease;
    text-decoration: none;
}

.top-info-bar .social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
    .top-info-bar {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    .top-info-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 0 16px;
        flex-wrap: wrap;
    }
    .top-info-bar .contact-info {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        flex: 1;
        min-width: 0;
    }
    .top-info-bar .contact-info span {
        justify-content: flex-start;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .top-info-bar .social-links {
        justify-content: flex-end;
        margin-top: 0;
        flex-shrink: 0;
    }
    .top-info-bar .social-links a {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
}

@media (max-width: 640px) {
    .top-info-bar .contact-info {
        gap: 12px;
    }
    .top-info-bar .contact-info span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .top-info-bar {
        padding: 6px 0;
        font-size: 0.75rem;
    }
    .top-info-bar .container {
        padding: 0 12px;
        gap: 8px;
    }
    .top-info-bar .contact-info {
        gap: 10px;
    }
    .top-info-bar .contact-info span {
        font-size: 0.75rem;
        gap: 4px;
    }
    .top-info-bar .contact-info i {
        font-size: 0.75rem;
    }
    .top-info-bar .social-links {
        gap: 8px;
    }
    .top-info-bar .social-links a {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
}

/* ===== HEADER (same as Home) ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(0, 40, 20, 0.08);
    z-index: 1000;
    padding: 0;
}

.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #0d2e22;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.logo-brand {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #0d2e22;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a4d3a;
    opacity: 0.9;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-weight: 500;
    color: #1f382b;
}

.nav-links a {
    position: relative;
    padding: 10px 0;
    color: #1f382b;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--green-deep);
    transition: width 0.35s ease;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--green-deep);
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(28, 75, 60, 0.3);
    min-height: 44px;
    min-width: 44px;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(28, 75, 60, 0.2);
    touch-action: manipulation;
}

.call-btn .call-text {
    display: inline;
}

.call-btn:hover {
    background: #0d2e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 75, 60, 0.4);
}

.whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(37, 211, 102, 0.1);
    -webkit-tap-highlight-color: rgba(37, 211, 102, 0.2);
    touch-action: manipulation;
    text-decoration: none;
}

.whatsapp i {
    font-size: 1.6rem;
    color: #25D366;
    transition: all 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.08);
}

.whatsapp:hover i {
    color: #1ebe57;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--green-deep);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: rgba(28, 75, 60, 0.1);
    touch-action: manipulation;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(28, 75, 60, 0.05);
}

.hamburger:active {
    background: rgba(28, 75, 60, 0.1);
}

/* Mobile Contact Info in Menu */
.mobile-contact-info {
    display: none;
    padding: 20px 0;
    border-bottom: 2px solid rgba(28, 75, 60, 0.1);
    margin-bottom: 16px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--green-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    min-height: 44px;
}

.mobile-contact-link i {
    color: var(--green-deep);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-contact-link:hover {
    color: #ff6b35;
}

.mobile-addresses {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(28, 75, 60, 0.08);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.mobile-addresses {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mobile-address-marquee {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    color: #5a6b5c;
    font-size: 0.85rem;
    line-height: 1.6;
    will-change: transform;
}

.mobile-address-marquee .address-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.mobile-address-marquee .address-item i {
    color: var(--green-deep);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mobile-address-marquee .address-separator {
    color: #9aaba0;
    font-weight: 600;
    flex-shrink: 0;
    margin: 0 4px;
}

/* Marquee animation for mobile addresses - only if content overflows */
@media (max-width: 900px) {
    .mobile-address-marquee {
        animation: marquee 45s linear infinite;
    }
    
    .mobile-address-marquee:hover {
        animation-play-state: paused;
    }
    
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 900px) {
    .header {
        padding: 0;
        min-height: 64px;
    }
    
    .header-inner {
        padding: 0 16px;
        min-height: 64px;
        gap: 12px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 120px);
        overflow: hidden;
    }
    
    .logo-brand {
        font-size: clamp(1rem, 4vw, 1.4rem);
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .logo-tagline {
        font-size: clamp(0.55rem, 2vw, 0.7rem);
        display: none;
    }
    
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 8px;
        position: relative;
    }
    
    .nav-links { 
        display: none !important; 
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 0;
        padding-top: 64px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    
    .nav-links.active {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-contact-info {
        display: block;
        padding: 20px 20px 16px;
        margin-top: auto;
        border-top: 2px solid rgba(28, 75, 60, 0.1);
    }
    
    /* Ensure nav links are visible when menu is active */
    .nav-links.active > a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-links > a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(28, 75, 60, 0.08);
        width: 100%;
        display: flex !important;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
        color: #1f382b;
        min-height: 52px;
        transition: all 0.3s ease;
        text-decoration: none;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-links > a:active {
        background: rgba(28, 75, 60, 0.05);
    }
    
    .nav-links > a.active {
        color: var(--green-deep);
        background: rgba(28, 75, 60, 0.03);
        font-weight: 600;
    }
    
    .hamburger { 
        display: flex !important;
        order: 2;
        position: relative;
        z-index: 1001;
    }
    
    .header-actions { 
        display: none; /* Hide call and WhatsApp buttons on mobile */
    }
}

@media (max-width: 640px) {
    .header {
        min-height: 60px;
    }
    
    .header-inner {
        padding: 0 12px;
        min-height: 60px;
        gap: 8px;
    }
    
    .logo-brand {
        font-size: clamp(0.9rem, 4.5vw, 1.2rem);
    }
    
    .header-actions {
        display: none; /* Hide call and WhatsApp buttons on mobile */
    }
    
    .hamburger {
        font-size: 1.4rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-links {
        top: 0 !important;
        padding-top: 60px !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 56px;
    }
    
    .header-inner {
        padding: 0 10px;
        min-height: 56px;
    }
    
    .logo-brand {
        font-size: clamp(0.85rem, 5vw, 1.1rem);
    }
    
    .call-btn {
        padding: 8px 10px;
        min-width: 44px;
    }
    
    .whatsapp {
        width: 44px;
        height: 44px;
    }
    
    .hamburger {
        font-size: 1.3rem;
    }
    
    .nav-links {
        top: 0 !important;
        padding-top: 56px !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
    
    .mobile-contact-info {
        padding: 16px 16px 12px;
    }
    
    .mobile-contact-link {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .mobile-location {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .nav-links > a {
        padding: 14px 16px;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

@media (max-width: 360px) {
    .header-inner {
        padding: 0 8px;
    }
    
    .logo-brand {
        font-size: 0.85rem;
    }
    
    .header-actions {
        gap: 4px;
    }
    
    .call-btn {
        padding: 8px;
    }
    
    .whatsapp {
        width: 40px;
        height: 40px;
    }
    
    .hamburger {
        min-width: 40px;
        min-height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, #2d5f4e 50%, #ff6b35 100%);
    color: #fff;
    padding: 56px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/2886937/pexels-photo-2886937.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=2') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

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

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero h1 span {
    color: #ff8c50;
    text-shadow: 0 2px 10px rgba(255, 140, 80, 0.4);
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== TWO COLUMN LAYOUT (About overview) ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 72px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.overview-text h2,
.about-text h2 {
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 28px;
    line-height: 1.25;
}

.overview-text p,
.about-text p {
    color: #3d4f45;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Company Overview section – light green bg, 2-col, image right */
.overview-section {
    background: var(--beige-section);
}

.overview-visual {
    border-radius: var(--radius-lg);
    height: 380px;
    min-height: 320px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #e8efe8;
}

.overview-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .overview-visual {
        height: 320px;
        min-height: 280px;
    }
}

@media (max-width: 700px) {
    .two-col { grid-template-columns: 1fr; }
    .overview-visual {
        height: 280px;
        min-height: 240px;
    }
}

/* ===== JOURNEY SECTION ===== */
/* ===== OUR JOURNEY & EXPERIENCE ===== */
.journey-section {
    background: var(--beige-section);
}

.journey {
    padding: 64px 24px 72px;
    max-width: 800px;
    margin: 0 auto;
}

.journey-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    color: var(--green-deep);
    text-align: center;
    margin: 0 0 28px;
}

.journey-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-deep) 0%, #ff6b35 100%);
    border-radius: 2px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.journey-text {
    color: #3d4f45;
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto;
    max-width: 680px;
}

@media (max-width: 640px) {
    .journey {
        padding: 48px 20px 56px;
    }
    .journey-title {
        margin-bottom: 22px;
    }
}

/* ===== MANUFACTURING & DISTRIBUTION STRENGTH (two-column, premium cards) ===== */
.manufacturing-section {
    background: var(--beige-section);
    padding: 72px 0 80px;
}

.manufacturing-section .manu-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 48px;
    text-align: center;
}

.manu-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left: icon list in soft white card */
.manu-icon-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 46, 34, 0.08);
    padding: 32px 28px;
    height: 100%;
}

.manu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.manu-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2d3d35;
    line-height: 1.55;
}

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

.manu-item i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green-deep);
}

/* Right: description card + trust card */
.manu-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
}

.manu-desc-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 46, 34, 0.08);
    padding: 28px 30px;
}

.manu-trust-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 46, 34, 0.08);
    padding: 28px 30px;
    border-left: 4px solid var(--green-deep);
}

.manu-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3d4f45;
    margin: 0;
}

.manu-trust-card .manu-desc {
    margin-bottom: 20px;
}

.manu-trust-card .manu-desc:last-of-type {
    margin-bottom: 0;
}

.manu-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    margin: 0 0 12px 0;
    line-height: 1.35;
}

/* Prominent trust badge */
.manu-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-deep);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(31, 63, 52, 0.35);
    margin-top: 8px;
}

.manu-cert-badge i {
    font-size: 1.15rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .manufacturing-section {
        padding: 56px 0 64px;
    }
    .manufacturing-section .manu-title {
        margin-bottom: 32px;
    }
    .manu-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .manu-right {
        max-width: 100%;
    }
    .manu-icon-card,
    .manu-desc-card,
    .manu-trust-card {
        padding: 24px 22px;
    }
    .manu-item {
        margin-bottom: 18px;
    }
}

/* ===== MISSION & VISION ===== */
/* ===== VALUES SECTION (Mission, Vision, Why Choose) – light green, premium ===== */
.values-section {
    background: #f0f7ee;
    padding: 72px 0 80px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto 64px;
    align-items: stretch;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(28, 75, 60, 0.08);
    border: 2px solid transparent;
    border-top: 4px solid #ff6b35;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15);
    border-top-color: #ff8c50;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 18px;
    line-height: 1.3;
}

.mission-card p,
.vision-card p {
    color: #3d4f45;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.why-choose-block {
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.why-choose-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--green-deep);
    text-align: center;
    margin: 0 0 16px;
    line-height: 1.2;
}

.why-choose-block .section-subtitle {
    margin-bottom: 48px;
}

@media (max-width: 700px) {
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 56px;
    }
    .mission-card,
    .vision-card {
        padding: 36px 28px;
    }
    .values-section {
        padding: 56px 0 64px;
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--green-deep);
    text-align: center;
    margin: 0 0 32px;
    line-height: 1.25;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-deep) 0%, #ff6b35 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ===== WHY GRID / WHY CARDS (clean grid, hover lift + glow, darker icons) ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 0;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(28, 75, 60, 0.06);
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 168, 114, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-top-color: #ff6b35;
}

.why-card i {
    font-size: 2.25rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-deep);
    transition: color 0.3s ease;
}

.why-card:hover i {
    color: #ff6b35;
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .why-card {
        padding: 32px 20px;
    }
    .why-card i {
        font-size: 2rem;
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    .why-choose-block .section-subtitle {
        margin-bottom: 36px;
    }
}

/* ===== PRODUCT SECTION (3 col desktop, card-based) ===== */
.product-section {
    background: var(--beige-section);
    padding: var(--section-padding);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-align: left;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.15), 0 0 0 1px rgba(255, 107, 53, 0.1);
    border-top: 3px solid #ff6b35;
}

.product-img {
    flex-shrink: 0;
    width: 100%;
    height: 220px;
    background: #eef4e3;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-card .product-name,
.product-card .product-benefit {
    padding-left: 24px;
    padding-right: 24px;
}

.product-card .product-name { 
    padding-top: 24px; 
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b4b33;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-benefit {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Product card - ensure proper flex layout */
.product-card {
    display: flex;
    flex-direction: column;
}

.view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #1c4b3c 0%, #2d5f4e 100%);
    border: none;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin: 0 24px 24px 24px;
    margin-top: auto;
    min-height: 52px;
    box-sizing: border-box;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(28, 75, 60, 0.2), 0 2px 4px rgba(28, 75, 60, 0.1);
    position: relative;
    overflow: hidden;
    width: auto;
    align-self: stretch;
}

.view-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.view-details:hover::before {
    left: 100%;
}

.view-details span {
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.view-details:hover {
    background: linear-gradient(135deg, #2d5f4e 0%, #1c4b3c 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28, 75, 60, 0.3), 0 4px 8px rgba(28, 75, 60, 0.15);
}

.view-details:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 75, 60, 0.25), 0 2px 4px rgba(28, 75, 60, 0.1);
}

.view-details:focus {
    outline: 2px solid rgba(255, 140, 80, 0.5);
    outline-offset: 2px;
}

.view-details i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
}

.view-details:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .product-card .product-name,
    .product-card .product-benefit {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .view-details {
        margin: 0 20px 20px 20px;
        padding: 14px 24px;
        font-size: 0.9rem;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .product-card .product-name,
    .product-card .product-benefit {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .view-details {
        margin: 0 16px 16px 16px;
        padding: 13px 20px;
        font-size: 0.875rem;
        min-height: 46px;
        gap: 6px;
    }
    
    .view-details i {
        font-size: 0.8rem;
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Why Our Products / checklist card */
.why-products-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 48px 40px;
    border: 1px solid rgba(28, 75, 60, 0.08);
}

.why-products-card .section-title {
    margin-bottom: 24px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #2d3d35;
}

.checklist li i {
    color: var(--green-deep);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .btn-group {
        gap: 16px;
        flex-direction: column;
        width: 100%;
    }
    .btn-group .btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .btn-group {
        gap: 12px;
    }
}

.btn {
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    background: white;
    color: var(--green-deep);
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    display: inline-block;
    text-align: center;
    min-height: 48px;
    -webkit-tap-highlight-color: rgba(28, 75, 60, 0.1);
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 32px;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--green-deep) 0%, #2d5f4e 50%, #ff6b35 100%);
    color: white;
    border: 2px solid transparent;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c50 50%, var(--green-deep) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.btn-outline {
    position: relative;
    background: transparent;
    border: 2px solid var(--green-deep);
    color: var(--green-deep);
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
}

.btn-outline > * {
    position: relative;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c50 50%, var(--green-deep) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.2);
}

/* ===== DEALER SECTION (premium form card, light green/off-white) ===== */
.dealer-section {
    background: linear-gradient(180deg, #f5f9f4 0%, #eef5ec 100%);
    padding: 72px 24px 80px;
}

.dealer-section .dealer-heading,
.dealer-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 700;
    color: var(--green-deep);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.25;
}

.dealer-section .dealer-subtext,
.dealer-section p {
    text-align: center;
    color: #3d4f45;
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.dealer-form-card {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 46, 34, 0.1);
    padding: 40px 36px 44px;
}

.dealer-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dealer-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    margin-bottom: 24px;
}

.dealer-form .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dealer-form .field-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}

.dealer-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.4;
}

.dealer-form .required {
    color: #c53030;
}

.dealer-form .optional {
    font-weight: 400;
    color: #6b7c73;
    font-size: 0.9rem;
}

.dealer-form input,
.dealer-form select,
.dealer-form textarea {
    padding: 14px 18px;
    border: 1px solid rgba(28, 75, 60, 0.22);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: #2d3d35;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dealer-form input::placeholder,
.dealer-form textarea::placeholder {
    color: #7a8f84;
}

.dealer-form input:focus,
.dealer-form select:focus,
.dealer-form textarea:focus {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(28, 75, 60, 0.18);
}

.dealer-form textarea {
    resize: vertical;
    min-height: 100px;
}

.dealer-form .required-note {
    font-size: 0.9rem;
    color: #6b7c73;
    margin: 0 0 20px 0;
}

.dealer-form .dealer-submit,
.dealer-form button[type="submit"] {
    width: 100%;
    padding: 18px 32px;
    background: var(--green-deep);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.dealer-form .dealer-submit:hover,
.dealer-form button[type="submit"]:hover {
    background: #0f3a2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 46, 34, 0.3);
}

@media (max-width: 600px) {
    .dealer-section {
        padding: 56px 20px 64px;
    }
    .dealer-form-card {
        padding: 28px 22px 32px;
        border-radius: 16px;
    }
    .dealer-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--green-deep) 0%, #2d5f4e 50%, #ff6b35 100%);
    padding: 72px 24px;
    text-align: center;
    color: white;
    position: relative;
    border-top: 3px solid #ff8c50;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    margin-bottom: 16px;
    color: #fff;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--green-deep);
}

.cta-section .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta-section .btn-outline:hover {
    background: #fff;
    color: var(--green-deep);
}

/* ===== FOOTER (matches design: dark green, 4 columns, same on all pages) ===== */
.footer {
    background: #1f3f34;
    color: #e8ebe6;
    padding: 64px 0 28px;
}

.footer-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 56px;
}

.footer-col h4 {
    color: #e8ebe6;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.footer-brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-title .fa-leaf {
    color: #6bcf7b;
    font-size: 1.25rem;
}

.footer-col p,
.footer-col li {
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #c5d0c8;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    color: #c5d0c8;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.iso-badge {
    background: #3f6f4c;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    margin-top: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #c5d0c8;
}

.footer-contact-item:last-of-type { margin-bottom: 0; }

.footer-icon-wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(63, 111, 76, 0.4);
    color: #c5d0c8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-icon-wrap i { font-size: 0.9rem; }

.footer-contact-item a:hover .footer-icon-wrap,
.footer-contact-item:hover .footer-icon-wrap {
    background: #3f6f4c;
    color: #fff;
    transform: scale(1.05);
}

.footer-contact-text {
    font-size: 0.95rem;
    color: #c5d0c8;
    line-height: 1.45;
}

.footer-contact-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.footer-contact-item a:hover .footer-contact-text { color: #fff; }

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3f6f4c;
    color: #1a332a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
    background: #4a8058;
    color: #0d2e22;
    transform: translateY(-3px);
}

.social-icons a i { font-size: 1.2rem; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 28px;
    margin-top: 48px;
    font-size: 0.9rem;
    color: #a8b8ae;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
}

@media (max-width: 560px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 32px; 
    }
    .footer {
        padding: 48px 0 24px;
    }
    .footer-inner {
        padding: 0 20px;
    }
    .footer-col h4 {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }
    .footer-col p,
    .footer-col li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .footer-contact-item {
        margin-bottom: 14px;
    }
    .footer-icon-wrap {
        width: 32px;
        height: 32px;
    }
    .social-icons {
        gap: 12px;
        margin-top: 20px;
    }
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    .footer-bottom {
        padding-top: 24px;
        margin-top: 36px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 0 16px;
    }
    .footer-col h4 {
        font-size: 1rem;
    }
    .footer-col p,
    .footer-col li {
        font-size: 0.85rem;
    }
}

/* ===== CONTACT PAGE (form + info in cards, centered container) ===== */
.contact-main {
    padding: var(--section-padding);
    background: var(--beige-section);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: var(--page-container);
    margin: 0 auto;
    padding: 0 24px;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px 36px;
    border-top: 4px solid #ff6b35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.12);
}

.contact-form-card .section-title {
    text-align: left;
    margin-bottom: 8px;
}

.contact-form .required {
    color: #c53030;
}

.contact-form .field-group {
    margin-bottom: 22px;
}

.contact-form .field-group:last-of-type {
    margin-bottom: 28px;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(28, 75, 60, 0.22);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: #2d3d35;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green-deep);
    box-shadow: 0 0 0 3px rgba(28, 75, 60, 0.15);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn-submit {
    position: relative;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--green-deep) 0%, #2d5f4e 50%, #ff6b35 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.contact-form .btn-submit > * {
    position: relative;
    z-index: 1;
}

.contact-form .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c50 50%, var(--green-deep) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 12px;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.contact-form .btn-submit:hover::before {
    opacity: 1;
}

.contact-form .btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.contact-info-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px 36px;
    border-top: 4px solid #ff6b35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.12);
}

.contact-info h3 {
    color: var(--green-deep);
    font-size: 1.25rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-info p {
    margin-bottom: 16px;
    color: #3d4f45;
    line-height: 1.55;
}

.contact-info a {
    color: var(--green-deep);
}

.contact-info .btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    background: var(--green-deep);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.2s ease;
}

.contact-info .btn:hover {
    background: #0f3a2d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 28px 22px;
    }
}

/* ===== CROP SOLUTIONS PAGE (structured sections, icons + cards) ===== */
.crop-section {
    padding: var(--section-padding);
}

.crop-section.section-offwhite {
    background: var(--beige-section);
}

.crop-section.section-lightgreen {
    background: var(--section-lightgreen);
}

.crop-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-items: center;
    margin: 0;
}

.crop-item {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border-top: 3px solid transparent;
}

.crop-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.15);
    border-top-color: #ff6b35;
}

.crop-item i {
    color: var(--green-deep);
    font-size: 1.75rem;
    margin-bottom: 12px;
    display: block;
    transition: color 0.3s ease;
}

.crop-item:hover i {
    color: #ff6b35;
}

.crop-item span {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 1rem;
    line-height: 1.4;
}

.crop-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 0;
}

.crop-why-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border-top: 3px solid transparent;
}

.crop-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.15);
    border-top-color: #ff6b35;
}

.crop-why-card i {
    color: var(--green-deep);
    font-size: 1.75rem;
    margin-bottom: 16px;
    display: block;
    transition: color 0.3s ease;
}

.crop-why-card:hover i {
    color: #ff6b35;
}

.crop-why-card h4 {
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 10px;
    line-height: 1.3;
}

.crop-why-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .crop-section {
        padding: var(--section-padding-sm);
    }
    .crop-app-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .crop-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .crop-why-card {
        padding: 24px;
    }
}

/* ===== COMPREHENSIVE MOBILE FIXES FOR ALL PAGES ===== */
@media (max-width: 768px) {
    /* Page Hero - All Pages */
    .page-hero {
        padding: 40px 20px;
    }
    .page-hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Overview Section - About Page */
    .overview-section {
        padding: 50px 0;
    }
    .overview-text h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 16px;
    }
    .overview-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .overview-visual {
        height: 280px;
        min-height: 240px;
    }
    
    /* Journey Section - About Page */
    .journey {
        padding: 40px 20px 48px;
    }
    .journey-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 20px;
    }
    .journey-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Mission Vision - About Page */
    .mission-vision {
        padding: 0 20px;
        gap: 24px;
    }
    .mission-card,
    .vision-card {
        padding: 28px 24px;
    }
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    .mission-card p,
    .vision-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Why Choose Block - About Page */
    .why-choose-block {
        padding: 0 20px;
    }
    .why-choose-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 16px;
    }
    .why-choose-block .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .why-card {
        padding: 20px 16px;
    }
    .why-card i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .why-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    .why-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Manufacturing Section - About Page */
    .manufacturing-section {
        padding: 50px 0 60px;
    }
    .manufacturing-section .manu-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: 32px;
        padding: 0 20px;
    }
    .manu-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    .manu-icon-card,
    .manu-desc-card,
    .manu-trust-card {
        padding: 24px 20px;
    }
    .manu-item {
        padding: 12px 0;
        font-size: 0.95rem;
    }
    .manu-item i {
        font-size: 1.1rem;
        width: 24px;
    }
    .manu-desc {
        font-size: 1rem;
        line-height: 1.7;
    }
    .manu-subtitle {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    .manu-cert-badge {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin-top: 16px;
    }
    
    /* Contact Page */
    .contact-main {
        padding: 50px 0;
    }
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    .contact-form-card {
        padding: 28px 24px;
    }
    .contact-form-card .section-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: 12px;
    }
    .contact-form .field-group {
        margin-bottom: 20px;
    }
    .contact-form label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    .contact-form textarea {
        min-height: 120px;
    }
    .contact-info-card {
        padding: 28px 24px;
    }
    .contact-info-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .contact-info-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    .contact-info-card .btn {
        width: 100%;
        margin-top: 8px;
    }
    
    /* Product Section - All Pages */
    .product-section {
        padding: 50px 0;
    }
    .product-section .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 12px;
    }
    .product-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-card {
        margin: 0;
    }
    .product-img {
        height: 220px;
    }
    .product-name {
        font-size: 1.3rem;
        padding: 20px 20px 12px;
    }
    .product-benefit {
        font-size: 0.95rem;
        padding: 0 20px;
        line-height: 1.6;
    }
    .view-details {
        margin: 16px 20px 20px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    /* Why Products Card - Products Page */
    .why-products-card {
        padding: 32px 24px;
    }
    .why-products-card .section-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: 12px;
    }
    .why-products-card .section-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .checklist {
        gap: 12px;
    }
    .checklist li {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    .checklist li i {
        font-size: 1.1rem;
    }
    
    /* CTA Section - All Pages */
    .cta-section {
        padding: 60px 20px;
    }
    .cta-section h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 24px;
        line-height: 1.3;
    }
    .cta-section .btn-group {
        gap: 16px;
    }
    .cta-section .btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 50px 20px;
    }
    .gallery-section .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 12px;
    }
    .gallery-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-item {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    /* Page Hero - All Pages */
    .page-hero {
        padding: 32px 16px;
    }
    .page-hero h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-hero p {
        font-size: 0.95rem;
    }
    
    /* Overview Section */
    .overview-section {
        padding: 40px 0;
    }
    .overview-text {
        padding: 0 16px;
    }
    .overview-visual {
        height: 240px;
        min-height: 200px;
    }
    
    /* Journey Section */
    .journey {
        padding: 32px 16px 40px;
    }
    .journey-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .journey-text {
        font-size: 0.95rem;
    }
    
    /* Mission Vision */
    .mission-vision {
        padding: 0 16px;
        gap: 20px;
    }
    .mission-card,
    .vision-card {
        padding: 24px 20px;
    }
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.3rem;
    }
    .mission-card p,
    .vision-card p {
        font-size: 0.95rem;
    }
    
    /* Why Choose Block */
    .why-choose-block {
        padding: 0 16px;
    }
    .why-choose-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-card {
        padding: 18px 14px;
    }
    .why-card i {
        font-size: 1.6rem;
    }
    .why-card h4 {
        font-size: 0.95rem;
    }
    .why-card p {
        font-size: 0.8rem;
    }
    
    /* Manufacturing Section */
    .manufacturing-section {
        padding: 40px 0 50px;
    }
    .manufacturing-section .manu-title {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
        padding: 0 16px;
        margin-bottom: 28px;
    }
    .manu-two-col {
        padding: 0 16px;
        gap: 20px;
    }
    .manu-icon-card,
    .manu-desc-card,
    .manu-trust-card {
        padding: 20px 18px;
    }
    .manu-item {
        font-size: 0.9rem;
        padding: 10px 0;
    }
    .manu-desc {
        font-size: 0.95rem;
    }
    .manu-subtitle {
        font-size: 1.2rem;
    }
    
    /* Contact Page */
    .contact-main {
        padding: 40px 0;
    }
    .contact-wrap {
        padding: 0 16px;
        gap: 24px;
    }
    .contact-form-card {
        padding: 24px 20px;
    }
    .contact-form-card .section-title {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .contact-info-card {
        padding: 24px 20px;
    }
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    /* Product Section */
    .product-section {
        padding: 40px 0;
    }
    .product-section .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .product-grid {
        gap: 20px;
    }
    .product-img {
        height: 200px;
    }
    .product-name {
        font-size: 1.2rem;
        padding: 18px 16px 10px;
    }
    .product-benefit {
        font-size: 0.9rem;
        padding: 0 16px;
    }
    .view-details {
        margin: 14px 16px 18px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Why Products Card */
    .why-products-card {
        padding: 28px 20px;
    }
    .why-products-card .section-title {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
    }
    .checklist li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 16px;
    }
    .cta-section h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 40px 16px;
    }
    .gallery-section .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .gallery-grid {
        gap: 16px;
    }
    
    /* Crop Sections */
    .crop-app-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .crop-item {
        padding: 20px;
        font-size: 1rem;
    }
    .crop-item i {
        font-size: 1.8rem;
    }
    .crop-why-grid {
        gap: 16px;
    }
    .crop-why-card {
        padding: 20px;
    }
    .crop-why-card i {
        font-size: 2rem;
    }
    .crop-why-card h4 {
        font-size: 1.1rem;
    }
    .crop-why-card p {
        font-size: 0.9rem;
    }
}
