/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    --green-dark: #006030;
    --green-primary: #00964A;
    --green-medium: #00b358;
    --green-light: #14cc6a;
    --green-pale: #e6f7ed;
    --gold: #F26522;
    --gold-light: #ff8547;
    --blue-primary: #1D328E;
    --blue-dark: #121f59;
    --beige: #f5f0e8;
    --beige-light: #faf7f0;
    --off-white: #fafaf5;
    --white: #ffffff;
    --section-light-green: #F0F7F0;
    --section-soft-green: #EEF5EE;
    --black: #1a1a1a;
    --gray-dark: #444444;
    --gray: #777777;
    --gray-light: #cccccc;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 24px rgba(26, 110, 30, 0.08);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-pill: 50px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.section-subtitle {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-divider {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 50px;
}

.section-divider span {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--gold);
    animation: sway 2s ease-in-out infinite;
}

.section-divider span:nth-child(2) {
    animation-delay: 0.2s;
}

.section-divider span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background: var(--blue-primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

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

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--gold-light);
}

.top-bar-social {
    display: flex;
    gap: 14px;
}

.top-bar-social a {
    font-size: 1rem;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--green-dark);
}

.nav-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-primary);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-accent);
}

.nav-phone i {
    background: var(--green-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.nav-phone:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 110, 30, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-dark);
    padding: 8px;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 24, 0.82) 0%, rgba(0, 96, 48, 0.6) 50%, rgba(0, 48, 24, 0.75) 100%);
    z-index: 1;
}

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

.hero-slide-content {
    max-width: 720px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    color: var(--white);
    font-size: 0.85rem;
    font-family: var(--font-accent);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: var(--gold-light);
    font-size: 1rem;
}

.hero-slide-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-slide-content h1 span {
    color: var(--gold-light);
}

.hero-slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slide animation for active content */
.hero-slide.active .hero-badge {
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-slide.active h1 {
    animation: slideUp 0.8s ease 0.35s both;
}

.hero-slide.active p {
    animation: slideUp 0.8s ease 0.5s both;
}

.hero-slide.active .hero-buttons {
    animation: slideUp 0.8s ease 0.65s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: scale(1.2);
}

.slider-dot:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.3);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

.slider-arrow:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(13, 77, 17, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */
.about-section {
    padding: 100px 0 80px;
    background: #F4F8F4;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 150, 74, 0.06), transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 60px;
}

/* About Images Collage */
.about-images {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: relative;
    width: 380px;
    height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    bottom: 20px;
    right: -30px;
    width: 220px;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
    z-index: 2;
}

.about-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: var(--green-primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 150, 74, 0.3);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.3;
}

/* Decorative Leaves */
.about-leaf {
    position: absolute;
    color: var(--green-light);
    opacity: 0.15;
    font-size: 3rem;
    z-index: 0;
}

.about-leaf-1 {
    top: -10px;
    left: -20px;
    transform: rotate(-30deg);
    animation: float 5s ease-in-out infinite;
}

.about-leaf-2 {
    bottom: 60px;
    right: 60px;
    transform: rotate(20deg);
    font-size: 2rem;
    animation: float 7s ease-in-out infinite reverse;
}

.about-leaf-3 {
    top: 50%;
    left: -40px;
    transform: rotate(45deg);
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite 0.5s;
}

/* About Content */
.about-content .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-content .section-subtitle i {
    color: var(--green-primary);
}

.about-content .section-title {
    text-align: left;
    text-transform: none;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-desc {
    color: var(--gray-dark);
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 32px;
}

.about-btn {
    margin-top: 8px;
}

/* About Counter Bar Premium UI */
.about-counter-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 150, 74, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 150, 74, 0.1);
    transform: translateY(-20px);
    position: relative;
    z-index: 10;
}

.about-counter-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
}

.about-counter-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 150, 74, 0.12);
}

.about-counter-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-pale) 0%, #e6f7ed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green-primary);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 150, 74, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.about-counter-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--green-light);
    opacity: 0;
    transition: all 0.4s ease;
}

.about-counter-item:hover .about-counter-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.about-counter-item:hover .about-counter-icon::after {
    opacity: 1;
    inset: -8px;
    transform: rotate(45deg);
}

.about-counter-info {
    display: flex;
    flex-direction: column;
}

.about-counter-number, .about-counter-suffix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-counter-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 150, 74, 0.05), transparent 70%);
    border-radius: 50%;
}

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

.why-choose-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.8;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-card {
    text-align: center;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-10px);
}

.why-choose-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--green-pale);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.why-choose-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 96, 48, 0.3));
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-img {
    border-color: var(--green-primary);
    box-shadow: 0 8px 32px rgba(0, 150, 74, 0.25);
    transform: scale(1.05);
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-img img {
    transform: scale(1.1);
}

.why-choose-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--green-dark);
}

.why-choose-label i {
    color: var(--green-primary);
    font-size: 1.1rem;
}

/* ========================================
   WORK PROCESS
   ======================================== */
.work-process {
    padding: 100px 0;
    background: var(--section-light-green);
    text-align: center;
}

.work-process .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-weight: 700;
}

.subtitle-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
}

.process-step {
    flex: 0 0 260px;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--green-pale), #e6f7ed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--green-primary);
    transition: var(--transition);
    border: 3px solid rgba(0, 150, 74, 0.1);
}

.process-step:hover .process-icon {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(0, 150, 74, 0.3);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.process-connector {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.process-connector svg {
    opacity: 0.4;
}

/* ========================================
   FARMER QUOTE BANNER
   ======================================== */
.farmer-quote {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover no-repeat fixed;
    text-align: center;
    overflow: hidden;
}

.farmer-quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 24, 0.88) 0%, rgba(0, 96, 48, 0.78) 100%);
}

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

.farmer-quote-content {
    max-width: 750px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    opacity: 0.7;
}

.farmer-quote h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.farmer-quote p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.farmer-quote-btn {
    background: var(--gold);
    border: none;
}

.farmer-quote-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 24px rgba(242, 101, 34, 0.4);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--beige-light);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 20px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 8px;
    overflow: hidden;
    border: 4px solid var(--green-pale);
    transition: var(--transition);
}

.service-card:hover .service-image {
    border-color: var(--green-primary);
    transform: scale(1.05);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -34px auto 16px;
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 1.2rem;
    border: 3px solid var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-dark);
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-top: 4px;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 20px;
}


/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    position: relative;
    padding: 100px 0;
    background: #F8F9FA;
    text-align: center;
    color: var(--black);
}

.stats .section-subtitle {
    color: var(--green-primary);
}

.stats .section-title {
    color: var(--black);
    margin-bottom: 8px;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 44px 24px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 150, 74, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 150, 74, 0.12);
    border-color: var(--green-primary);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 150, 74, 0.25);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 150, 74, 0.35);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    font-weight: 600;
}

/* Discover More button after stats */
.stats .btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 52px;
    background: var(--green-primary);
    color: var(--white);
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 600;
    transition: var(--transition);
}

.stats .btn-discover:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(13, 77, 17, 0.3);
}

.stats .btn-discover i {
    background: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--section-soft-green);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 20px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--green-pale);
    transform: translateX(6px);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green-primary);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--green-primary);
    color: var(--white);
}

.contact-card-content h4 {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 2px;
}

.contact-card-content p,
.contact-card-content a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.contact-card-content a:hover {
    color: var(--green-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.contact-form-wrapper p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e5e5e5;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--black);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(26, 110, 30, 0.1);
    background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-submit {
    background: var(--green-primary);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(13, 77, 17, 0.35);
}

/* ========================================
   ABOUT PAGE — HERO BANNER
   ======================================== */
.about-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(0, 48, 24, 0.82) 0%, rgba(0, 96, 48, 0.65) 100%),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 48, 24, 0.15) 100%);
}

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

/* ========================================
   ABOUT PAGE — OUR STORY
   ======================================== */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-images {
    position: relative;
    height: 500px;
}

.story-img-main {
    width: 80%;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.story-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-experience-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    background: var(--green-primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 150, 74, 0.35);
}

.story-exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.story-exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-story-content .section-title {
    margin-bottom: 20px;
}

.about-story-text {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.story-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.story-highlight-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--green-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green-primary);
    transition: var(--transition);
}

.story-highlight-item:hover .story-highlight-icon {
    background: var(--green-primary);
    color: var(--white);
}

.story-highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.story-highlight-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

.about-story-btn {
    margin-top: 8px;
}

/* ========================================
   ABOUT PAGE — VISION, MISSION, VALUES
   ======================================== */
.about-vmv {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f8f2 0%, var(--white) 100%);
}

.section-header.center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-header.center .section-subtitle {
    justify-content: center;
}

.section-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 12px;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vmv-card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 32px rgba(0, 96, 48, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 150, 74, 0.06);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 96, 48, 0.12);
}

.vmv-icon-wrap {
    margin-bottom: 24px;
}

.vmv-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green-primary);
    transition: var(--transition);
}

.vmv-icon.mission {
    background: #e8f0fe;
    color: #1a73e8;
}

.vmv-icon.values {
    background: #fef0e8;
    color: #e85d1a;
}

.vmv-card:hover .vmv-icon {
    transform: scale(1.1) rotate(5deg);
}

.vmv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
}

.vmv-card p {
    color: var(--gray-dark);
    font-size: 0.92rem;
    line-height: 1.75;
}

.vmv-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
}

.vmv-card:nth-child(2) .vmv-accent {
    background: #1a73e8;
}

.vmv-card:nth-child(3) .vmv-accent {
    background: #e85d1a;
}

.vmv-card:hover .vmv-accent {
    transform: scaleX(1);
}

/* ========================================
   ABOUT PAGE — CORE VALUES (Parallax)
   ======================================== */
.about-core-values {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 48, 24, 0.9) 0%, rgba(0, 96, 48, 0.85) 100%),
        url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1920&q=80') center/cover no-repeat fixed;
    color: var(--white);
}

.about-core-values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 150, 74, 0.15) 0%, transparent 60%);
}

.about-core-values .container {
    position: relative;
    z-index: 2;
}

.section-subtitle.light {
    color: var(--gold-light);
}

.section-subtitle.light i {
    color: var(--gold-light);
}

.section-title.light {
    color: var(--white);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.core-value-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.core-value-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.core-value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
}

.core-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 150, 74, 0.4);
    transition: var(--transition);
}

.core-value-item:hover .core-value-icon {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(0, 150, 74, 0.5);
}

.core-value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.core-value-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ========================================
   ABOUT PAGE — INFRASTRUCTURE
   ======================================== */
.about-infrastructure {
    padding: 100px 0;
    background: var(--white);
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.infra-card {
    background: var(--off-white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.infra-card:hover {
    background: var(--white);
    border-color: var(--green-light);
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 150, 74, 0.1);
}

.infra-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--green-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--green-primary);
    transition: var(--transition);
}

.infra-card:hover .infra-card-icon {
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
}

.infra-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.infra-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   ABOUT PAGE — STATS COUNTER BAR
   ======================================== */
.about-stats-bar {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--white);
}

.about-stat-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-light);
}

.about-stat-content {
    text-align: left;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.about-stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
}

.about-stat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ========================================
   CONTACT PAGE — HERO BANNER
   ======================================== */
.contact-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(0, 48, 24, 0.82) 0%, rgba(0, 96, 48, 0.65) 100%),
        url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=1920&q=80') center/cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 48, 24, 0.15) 100%);
}

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

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero .page-breadcrumb {
    margin-bottom: 16px;
}

/* ========================================
   CONTACT PAGE — MAIN SECTION
   ======================================== */
.contact-page-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #f0f8f2 0%, var(--white) 40%, #f0f8f2 100%);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ---- Contact Form ---- */
.contact-page-form-wrap {
    background: var(--white);
    padding: 48px 44px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 96, 48, 0.06);
    border: 1px solid rgba(0, 150, 74, 0.06);
}

.contact-page-form-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.contact-page-form-desc {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cpf-group {
    margin-bottom: 0;
}

.cpf-group input,
.cpf-group textarea {
    width: 100%;
    padding: 16px 4px;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black);
    background: transparent;
    transition: var(--transition);
    outline: none;
    border-radius: 0;
}

.cpf-group input:focus,
.cpf-group textarea:focus {
    border-bottom-color: var(--green-primary);
    box-shadow: 0 2px 0 0 var(--green-primary);
}

.cpf-group input::placeholder,
.cpf-group textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

.cpf-group textarea {
    resize: vertical;
    min-height: 100px;
    margin-top: 16px;
}

.cpf-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 32px;
    padding: 16px 40px;
    background: transparent;
    color: var(--green-primary);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--green-primary);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cpf-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--green-primary);
    transition: left 0.4s ease;
    z-index: 0;
}

.cpf-submit span,
.cpf-submit i {
    position: relative;
    z-index: 1;
}

.cpf-submit:hover {
    color: var(--white);
}

.cpf-submit:hover::before {
    left: 0;
}

/* ---- Contact Info Cards ---- */
.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cp-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 28px;
    border: 1px dashed #d4d4d4;
    border-bottom: none;
    transition: var(--transition);
}

.cp-info-card:last-child {
    border-bottom: 1px dashed #d4d4d4;
}

.cp-info-card:hover {
    background: rgba(0, 150, 74, 0.03);
    border-color: var(--green-light);
}

.cp-info-card:hover+.cp-info-card {
    border-top-color: var(--green-light);
}

.cp-info-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 150, 74, 0.25);
}

.cp-info-card:hover .cp-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(0, 150, 74, 0.35);
}

.cp-info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.cp-info-content p {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.cp-info-content a {
    color: var(--gray-dark);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

.cp-info-content a:hover {
    color: var(--green-primary);
}

/* ========================================
   CONTACT PAGE — MAP SECTION
   ======================================== */
.contact-map-section {
    width: 100%;
    line-height: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.contact-map-section iframe:hover {
    filter: grayscale(0%);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    background: var(--green-primary);
    padding: 56px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.cta-left h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--white);
    text-transform: uppercase;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--green-dark);
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.cta-btn i {
    background: var(--gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PRODUCTS PAGE SPECIFIC
   ======================================== */
.page-banner {
    background: linear-gradient(rgba(13, 77, 17, 0.85), rgba(26, 110, 30, 0.85)), url('images/hero-bg.png') center/cover no-repeat fixed;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 80px;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.page-banner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--gold-light);
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.page-breadcrumb .current {
    color: var(--gold-light);
    font-weight: 600;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-section {
    padding: 80px 0 100px;
    background: var(--off-white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Image */
.product-detail-image {
    background: linear-gradient(145deg, #e8f5e9 0%, #f1faf2 40%, #e0f2f1 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 150, 74, 0.08);
}

.product-detail-image::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 150, 74, 0.05);
    border-radius: 50%;
}

.product-detail-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(0, 150, 74, 0.04);
    border-radius: 50%;
}

.product-detail-image img {
    max-height: 400px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.product-detail-image:hover img {
    transform: scale(1.05);
}

/* Product Info */
.product-detail-info {
    padding-top: 10px;
}

.product-detail-header {
    margin-bottom: 24px;
}

.product-brand-name {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.product-chemical-name {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-primary);
    letter-spacing: 0.5px;
}

.product-detail-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light), transparent);
    margin-bottom: 28px;
    border-radius: 2px;
}

.product-detail-desc {
    margin-bottom: 32px;
}

.product-detail-desc p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.85;
    margin-bottom: 18px;
}

.product-detail-desc p:last-child {
    margin-bottom: 0;
}

/* Feature chips */
.product-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-pale);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-dark);
    transition: var(--transition);
}

.feature-item i {
    color: var(--green-primary);
    font-size: 0.9rem;
}

.feature-item:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.feature-item:hover i {
    color: var(--white);
}

/* WhatsApp CTA */
.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--green-primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 150, 74, 0.3);
}

.product-whatsapp-btn i {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.product-whatsapp-btn:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 96, 48, 0.4);
}

.product-whatsapp-btn:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.shop-section {
    padding-bottom: 100px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.shop-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--green-primary);
}

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

.category-list li {
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    color: var(--gray-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.category-list li:hover,
.category-list li.active {
    background: rgba(26, 110, 30, 0.05);
    color: var(--green-primary);
}

.category-list li:hover::before,
.category-list li.active::before {
    opacity: 1;
    transform: translateX(0);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.shop-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: var(--transition);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-card:hover {
    transform: none;
    box-shadow: none;
}

.shop-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background: #FCFBF6;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.shop-image img {
    width: auto;
    height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.shop-card:hover .shop-image img {
    transform: scale(1.05);
}

.shop-details {
    padding: 0;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.shop-details h3 {
    /* Kept for backwards compatibility but we use .btn-text now */
    display: none;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    min-width: 200px;
    padding: 6px 6px 6px 20px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
}

.shop-btn .btn-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.shop-btn .btn-icon {
    width: 38px;
    height: 38px;
    background: #e2b724;
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 15px;
}

.shop-btn:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 110, 30, 0.2);
}

.shop-btn:hover .btn-icon {
    transform: rotate(-45deg);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--green-dark) 0%, #072e09 100%);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--green-primary);
    transform: translateY(-3px);
}

.footer h3 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--green-light);
    font-size: 0.95rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--gold-light);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--gray-dark);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(-4px);
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

.reveal-delay-7 {
    transition-delay: 0.7s;
}

.reveal-delay-8 {
    transition-delay: 0.8s;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 16px rgba(26, 110, 30, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-4px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {

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

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-img-main {
        width: 300px;
        height: 380px;
    }

    .about-counter-bar {
        padding: 30px;
        gap: 20px;
    }

    .process-step {
        flex: 0 0 200px;
        padding: 0 10px;
    }

    .process-connector {
        flex: 0 0 60px;
    }

    .shop-layout {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }

    .product-detail-grid {
        gap: 40px;
    }

    .product-detail-image {
        min-height: 380px;
        padding: 30px;
    }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-left {
        flex-direction: column;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .slider-arrow-prev {
        left: 16px;
    }

    .slider-arrow-next {
        right: 16px;
    }
}

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

    /* About Page Mobile */
    .about-hero {
        padding: 130px 0 70px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-images {
        height: 380px;
        display: flex;
        justify-content: center;
    }

    .story-img-main {
        width: 75%;
        height: 340px;
    }

    .story-img-secondary {
        width: 180px;
        height: 150px;
    }

    .story-experience-badge {
        top: 10px;
        right: 10px;
    }

    .about-story-content {
        text-align: center;
    }

    .about-story-content .section-subtitle {
        justify-content: center;
    }

    .story-highlights {
        align-items: center;
    }

    .story-highlight-item {
        max-width: 380px;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .about-core-values {
        background-attachment: scroll;
    }

    /* Contact Page Mobile */
    .contact-hero {
        padding: 130px 0 70px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-form-wrap {
        padding: 32px 24px;
    }

    .contact-map-section iframe {
        height: 300px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-phone {
        display: none;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 75vh;
        min-height: 500px;
    }

    .hero-slide-content {
        text-align: center;
        max-width: 100%;
        padding: 40px 0;
    }

    .hero-slide-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .hero-slide-content p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .slider-arrow {
        display: none;
    }

    .hero-slider-dots {
        bottom: 24px;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 380px;
        display: flex;
        justify-content: center;
    }

    .about-img-main {
        width: 300px;
        height: 360px;
    }

    .about-img-overlay {
        right: 10px;
        bottom: 0;
        width: 180px;
        height: 150px;
    }

    .about-experience-badge {
        right: 10px;
        top: 10px;
        padding: 14px 20px;
    }

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

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-subtitle {
        justify-content: center;
    }

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

    .about-btn {
        display: inline-flex;
    }

    .about-counter-bar {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 24px;
    }

    .about-counter-item {
        justify-content: center;
    }

    /* Why Choose Us Mobile */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-choose-img {
        width: 150px;
        height: 150px;
    }

    /* Work Process Mobile */
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-step {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .process-connector {
        flex: none;
        padding-top: 0;
        transform: rotate(90deg);
    }

    /* Farmer Quote Mobile */
    .farmer-quote {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .farmer-quote h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        margin-bottom: 30px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-detail-image {
        min-height: 320px;
        max-width: 500px;
        margin: 0 auto;
    }

    .product-detail-section {
        padding: 50px 0 70px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 65vh;
        min-height: 420px;
    }

    .hero-slide-content h1 {
        font-size: 1.6rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .service-image {
        width: 100px;
        height: 100px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-top: -28px;
    }

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

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

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .product-detail-image {
        min-height: 260px;
        padding: 20px;
    }

    .product-whatsapp-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .product-brand-name {
        font-size: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .why-choose-img {
        width: 120px;
        height: 120px;
    }

    .why-choose-label {
        font-size: 0.82rem;
    }

    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 240px;
        height: 300px;
    }

    .about-img-overlay {
        width: 150px;
        height: 120px;
    }

    .about-counter-number,
    .about-counter-suffix {
        font-size: 1.6rem;
    }

    .farmer-quote {
        padding: 60px 0;
    }

    .quote-icon {
        font-size: 2rem;
    }
}