/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* ── Light Theme: White + Red + Green ── */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9f7;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f5f0;
    --accent-red: #c91a1a;
    --accent-red-dark: #a01414;
    --accent-red-light: #e63030;
    --accent-gold: #b8942e;
    --accent-gold-light: #d4a843;
    --accent-green: #2d7a3f;
    --accent-green-light: #3a9e52;
    --accent-green-subtle: rgba(45, 122, 63, 0.06);
    --accent-green-bg: #e8f5ec;
    --accent-earth: #8b6f47;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #999999;
    --border-color: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 60px rgba(45, 122, 63, 0.06);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ===== DECORATIVE BACKGROUND BLOBS ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        radial-gradient(circle 550px at 8% 15%, rgba(45, 122, 63, 0.28) 0%, transparent 65%),
        radial-gradient(circle 400px at 88% 10%, rgba(201, 26, 26, 0.18) 0%, transparent 65%),
        radial-gradient(circle 500px at 75% 65%, rgba(45, 122, 63, 0.22) 0%, transparent 65%),
        radial-gradient(circle 350px at 15% 80%, rgba(201, 26, 26, 0.14) 0%, transparent 65%);
    filter: blur(40px);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle 700px at 0% 0%, rgba(45, 122, 63, 0.30) 0%, transparent 55%),
        radial-gradient(circle 500px at 100% 100%, rgba(201, 26, 26, 0.20) 0%, transparent 55%),
        radial-gradient(circle 450px at 50% 40%, rgba(45, 122, 63, 0.15) 0%, transparent 55%);
    filter: blur(60px);
    animation: ambientFloat 25s ease-in-out infinite alternate;
}

@keyframes ambientFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0);
    }

    50% {
        opacity: 0.85;
        transform: translate(20px, -15px);
    }

    100% {
        opacity: 1;
        transform: translate(-10px, 10px);
    }
}

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

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

ul {
    list-style: none;
}

/* Everything should sit above the background layers */
.header,
.hero,
.section,
.cta-section,
.footer,
.page-hero {
    position: relative;
    z-index: 1;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--glass-border);
    transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo-wrapper img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(201, 26, 26, 0.15));
    transition: transform var(--transition-normal);
}

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

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

.logo-text .brand-name {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2vw, 1.12rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-text .brand-tagline {
    font-size: 0.65rem;
    color: var(--accent-red);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-red);
    background: rgba(201, 26, 26, 0.04);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 2px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
    transform-origin: center;
}

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

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

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

/* ===== HERO SECTION ===== */
/* =============================================
   NEW SPLIT-LAYOUT HERO
   ============================================= */
.hero {
    position: relative;
    background: var(--bg-primary);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 122, 63, 0.30) 0%, rgba(45, 122, 63, 0.10) 40%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 26, 26, 0.20) 0%, rgba(201, 26, 26, 0.06) 40%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(20px, 3vh, 40px) 0 clamp(40px, 5vh, 80px);
}

/* Hero Text - Left Side */
.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green-bg);
    border: 1px solid rgba(45, 122, 63, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-green);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .accent-green-text {
    background: linear-gradient(135deg, var(--accent-green), #3da552);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
    padding-left: 16px;
    border-left: 3px solid var(--accent-green);
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    background: #22c55e;
}

/* Dark outline button for light bg */
.btn-outline-dark {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline-dark:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
    background: rgba(201, 26, 26, 0.04);
}

/* Mini Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-badge-item svg {
    flex-shrink: 0;
}

/* Hero Visual - Right Side */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Floating Stat Cards */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 5;
}

.floating-stat-1 {
    top: -16px;
    right: -16px;
    animation: float 4s ease-in-out infinite;
}

.floating-stat-2 {
    bottom: -16px;
    left: -16px;
    animation: float 4s ease-in-out infinite 1s;
}

@keyframes float {

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

    50% {
        transform: translateY(-8px);
    }
}

.floating-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1.2;
}

.floating-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Trust Stats Bar */
.hero-stats-bar {
    background: #1a3a1e;
    padding: 20px 0;
    margin-top: 0;
}

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

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.stat-bar-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-bar-text {
    display: flex;
    flex-direction: column;
}

.stat-bar-text strong {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}

.stat-bar-text span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    letter-spacing: 0.3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    color: white;
    box-shadow: 0 4px 24px rgba(201, 26, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 26, 26, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: clamp(60px, 10vw, 100px) 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 32px);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 14px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '—';
    margin: 0 8px;
    color: var(--text-muted);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== DECORATIVE SECTION DIVIDERS ===== */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-red), var(--accent-green), transparent);
    opacity: 0.2;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '🌿';
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 4rem;
    opacity: 0.06;
    pointer-events: none;
    transform: rotate(-30deg);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 122, 63, 0.04), transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.about-image .image-overlay .stat {
    display: flex;
    gap: clamp(16px, 3vw, 24px);
}

.about-image .stat-item {
    text-align: center;
}

.about-image .stat-item .number {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 800;
    color: #ffffff;
}

.about-image .stat-item .label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--accent-green-bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(45, 122, 63, 0.1);
    transition: all var(--transition-fast);
}

.about-feature:hover {
    border-color: rgba(45, 122, 63, 0.25);
    background: rgba(45, 122, 63, 0.1);
    transform: translateY(-1px);
}

.about-feature .icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(45, 122, 63, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 122, 63, 0.03), transparent 65%);
    pointer-events: none;
}

.products-section::after {
    content: '🌱';
    position: absolute;
    bottom: 60px;
    left: 40px;
    font-size: 3rem;
    opacity: 0.06;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-card);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(45, 122, 63, 0.02), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 26, 26, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 40px rgba(201, 26, 26, 0.04);
}

.product-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f5f0eb;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}




.product-card:hover .card-image img {
    transform: scale(1.08);
}

.product-card .card-image .card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.product-card .card-image .card-arrow {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    background: rgba(201, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
    z-index: 2;
}

.product-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.product-card .card-content {
    padding: 22px;
    position: relative;
    z-index: 2;
}

.product-card .card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-card .card-content p {
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.product-card .card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.76rem;
    color: var(--text-muted);
}

.product-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Placeholder styles for cards without images */
.card-image-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.card-image-placeholder.cultivator-bg {
    background: linear-gradient(135deg, #e8f5ec, #d4edda);
}

.card-image-placeholder.pruner-bg {
    background: linear-gradient(135deg, #fde8e8, #fce4e4);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 122, 63, 0.02), transparent 60%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 22px;
}

.why-card {
    text-align: center;
    padding: clamp(28px, 4vw, 40px) 22px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(45, 122, 63, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(45, 122, 63, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), var(--shadow-glow);
}

.why-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent-green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.why-card:hover .icon-wrap {
    background: rgba(45, 122, 63, 0.15);
    transform: scale(1.08);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: clamp(50px, 8vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
    border-radius: var(--radius-xl);
    padding: clamp(36px, 6vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.cta-box p {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--accent-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a2a1c;
    border-top: 1px solid rgba(45, 122, 63, 0.2);
    padding: clamp(40px, 6vw, 64px) 0 0;
    position: relative;
    overflow: hidden;
    color: #e0e8e0;
}

/* Accent top border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-green), var(--accent-red));
    opacity: 0.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: 40px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(224, 232, 224, 0.7);
    font-size: 0.86rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-fast);
    color: rgba(224, 232, 224, 0.8);
}

.footer-social a:hover {
    transform: translateY(-2px);
}

/* Branded social icon colors */
.social-icon svg {
    transition: all var(--transition-fast);
}

.social-icon.facebook {
    color: #1877F2;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.social-icon.instagram {
    color: #E4405F;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: #fff;
}

.social-icon.gmail {
    color: #EA4335;
}

.social-icon.gmail:hover {
    background: #EA4335;
    border-color: #EA4335;
    color: #fff;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    color: rgba(224, 232, 224, 0.65);
    font-size: 0.83rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

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

.footer-contact-item .contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item .contact-text {
    font-size: 0.83rem;
    color: rgba(224, 232, 224, 0.7);
    line-height: 1.6;
}

.footer-contact-item .contact-text a {
    color: rgba(224, 232, 224, 0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(224, 232, 224, 0.45);
    font-size: 0.8rem;
}

.footer-bottom .gstin {
    color: rgba(224, 232, 224, 0.35);
    font-size: 0.76rem;
    letter-spacing: 0.5px;
}

/* Footer brand text override for dark footer */
.footer .logo-text .brand-name {
    color: #ffffff;
}

.footer .logo-text .brand-tagline {
    color: rgba(201, 26, 26, 0.8);
}

/* ===== PLOUGH PAGE ===== */
.page-hero {
    padding: clamp(110px, 16vw, 140px) 0 clamp(40px, 6vw, 60px);
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 122, 63, 0.03), transparent 65%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-red), var(--accent-green), transparent);
    opacity: 0.3;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 0.83rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-red);
}

.breadcrumb .sep {
    color: var(--text-muted);
}

.plough-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 24px;
    padding: clamp(40px, 6vw, 60px) 0 clamp(60px, 10vw, 100px);
}

.plough-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.plough-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 26, 26, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), var(--shadow-glow);
}

.plough-card .plough-image {
    height: 220px;
    overflow: hidden;
}

.plough-card .plough-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.plough-card:hover .plough-image img {
    transform: scale(1.06);
}

.plough-card .plough-info {
    padding: 22px;
}

.plough-card .plough-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.plough-card .plough-info p {
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.plough-card .specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plough-card .spec-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: var(--accent-green-bg);
    color: var(--accent-green);
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(45, 122, 63, 0.12);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* ===== RESPONSIVE ===== */

/* Large tablets / small desktops */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 32px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 0;
    }

    .hero-visual {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .about-image img {
        height: 320px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-container {
        height: 64px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        flex-direction: column;
        padding: 90px 28px 40px;
        gap: 4px;
        transition: right var(--transition-normal);
        border-left: 1px solid var(--border-color);
        align-items: stretch;
        overflow-y: auto;
        z-index: 999;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
    }

    .hero {
        padding-top: 80px;
    }

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

    .floating-stat-1 {
        top: -10px;
        right: -10px;
    }

    .floating-stat-2 {
        bottom: -10px;
        left: -10px;
    }

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

    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-image img {
        height: 260px;
    }

    .cta-box {
        border-radius: var(--radius-lg);
    }

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

/* Mobile phones */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .logo-wrapper img {
        height: 40px;
    }

    .logo-text .brand-name {
        font-size: 0.88rem;
    }

    .logo-text .brand-tagline {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .about-image .image-overlay .stat {
        gap: 12px;
    }

    .about-image .stat-item .number {
        font-size: 1.1rem;
    }

    .product-card .card-content {
        padding: 18px;
    }

    .product-card .card-image {
        height: 200px;
    }

    .card-image-placeholder {
        height: 200px;
    }

    .plough-card .plough-image {
        height: 180px;
    }

    .plough-card .plough-info {
        padding: 18px;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

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

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .floating-stat {
        padding: 10px 14px;
    }

    .floating-stat-number {
        font-size: 1.2rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .hero p {
        font-size: 0.88rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}