/* Allanic Millers - Shared Styles */
        :root {
            --primary: #1a7a2e;
            --primary-dark: #0f4d1c;
            --primary-light: #2d9b45;
            --accent: #c9a227;
            --accent-light: #e8c547;
            --light: #f7f9f5;
            --dark: #1a1a1a;
            --gray: #555;
            --white: #ffffff;
            --shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ========== NAVBAR ========== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--primary);
        }

        .logo img {
            width: 52px;
            height: 52px;
            object-fit: contain;
            border-radius: 50%;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1.15;
            color: var(--primary-dark);
        }

        .logo-text span {
            display: block;
            font-size: 0.7rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: var(--gray);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

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

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

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

        .nav-cta {
            background: var(--primary) !important;
            color: white !important;
            padding: 0.55rem 1.35rem;
            border-radius: 50px;
            font-weight: 600;
        }

        .nav-cta:hover {
            background: var(--primary-dark) !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--primary);
            line-height: 1;
        }

        /* ========== HERO ========== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(15,77,28,0.93), rgba(26,122,46,0.88));
            display: flex;
            align-items: center;
            color: white;
            padding-top: 90px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .hero-watermark {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: min(420px, 45vw);
            height: min(420px, 45vw);
            opacity: 0.12;
            pointer-events: none;
            z-index: 0;
        }

        .hero-watermark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        @media (max-width: 900px) {
            .hero-watermark {
                width: 280px;
                height: 280px;
                right: -5%;
                opacity: 0.08;
            }
        }

        .hero-content {
            max-width: 680px;
            position: relative;
            z-index: 1;
            animation: fadeUp 0.9s ease;
        }

        .hero-logo {
            width: 90px;
            height: 90px;
            margin-bottom: 1.5rem;
            background: white;
            border-radius: 50%;
            padding: 8px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        .hero-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(201,162,39,0.25);
            border: 1px solid var(--accent);
            color: var(--accent-light);
            padding: 0.4rem 1.1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.4rem;
            letter-spacing: 0.5px;
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            line-height: 1.15;
            margin-bottom: 1.4rem;
        }

        .hero h1 span {
            color: var(--accent-light);
        }

        .hero p {
            font-size: 1.15rem;
            opacity: 0.93;
            margin-bottom: 2.4rem;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark);
        }

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201,162,39,0.4);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.55);
        }

        .btn-outline:hover {
            background: white;
            color: var(--primary);
            border-color: white;
        }

        /* ========== SECTIONS ========== */
        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3.5rem;
        }

        .section-header .label {
            display: inline-block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 0.7rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.7rem);
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        /* ========== ABOUT ========== */
        .about {
            background: var(--light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.75rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 1.15rem;
            font-size: 1.05rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
            margin-top: 2.3rem;
        }

        .stat {
            text-align: center;
            padding: 1.4rem 1rem;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.82rem;
            color: var(--gray);
            margin-top: 0.25rem;
        }

        .about-visual {
            background: linear-gradient(145deg, var(--primary), var(--primary-light));
            border-radius: 24px;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(26,122,46,0.25);
        }

        .about-visual img {
            width: 180px;
            height: 180px;
            object-fit: contain;
            background: white;
            border-radius: 50%;
            padding: 18px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .about-visual-content {
            position: absolute;
            bottom: 2rem;
            left: 0;
            right: 0;
            text-align: center;
        }

        .about-visual-content h4 {
            font-size: 1.35rem;
            margin-bottom: 0.3rem;
        }

        .about-visual-content p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        /* ========== PRODUCTS ========== */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid #eef2eb;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .product-image {
            height: 170px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.8rem;
        }

        .product-body {
            padding: 1.7rem;
        }

        .product-body h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 0.55rem;
        }

        .product-body p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1.1rem;
        }

        .product-tag {
            display: inline-block;
            background: #e8f5e9;
            color: var(--primary);
            padding: 0.28rem 0.75rem;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        /* ========== PROCESS ========== */
        .process {
            background: var(--light);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12%;
            right: 12%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 0;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 4px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto 1.4rem;
            font-family: 'Playfair Display', serif;
            box-shadow: 0 5px 20px rgba(26,122,46,0.15);
        }

        .step h4 {
            font-size: 1.15rem;
            margin-bottom: 0.55rem;
            color: var(--dark);
        }

        .step p {
            color: var(--gray);
            font-size: 0.93rem;
        }

        /* ========== FARMERS ========== */
        .farmers {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
        }

        .farmers .section-header .label {
            color: var(--accent-light);
        }

        .farmers .section-header h2,
        .farmers .section-header p {
            color: white;
        }

        .farmers-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: center;
        }

        .farmers-text h3 {
            font-size: 1.75rem;
            margin-bottom: 1.15rem;
            color: var(--accent-light);
        }

        .farmers-text p {
            opacity: 0.92;
            margin-bottom: 1.15rem;
            font-size: 1.05rem;
        }

        .farmers-benefits {
            list-style: none;
            margin-top: 1.8rem;
        }

        .farmers-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 0.9rem;
            font-size: 1.05rem;
        }

        .farmers-benefits li::before {
            content: '✓';
            background: var(--accent);
            color: var(--dark);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
            font-size: 0.85rem;
        }

        .farmers-cta {
            margin-top: 2.2rem;
        }

        .farmers-box {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 2.4rem;
            backdrop-filter: blur(10px);
        }

        .farmers-box h4 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            color: var(--accent-light);
        }

        .farmers-box .contact-line {
            font-weight: 600;
            margin-top: 1.6rem;
            font-size: 1.05rem;
        }

        /* ========== CONTACT ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info h3 {
            font-size: 1.55rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .contact-item {
            display: flex;
            gap: 1.15rem;
            margin-bottom: 1.7rem;
            align-items: flex-start;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: #e8f5e9;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
            color: var(--dark);
        }

        .contact-item a, .contact-item p {
            color: var(--gray);
            text-decoration: none;
            font-size: 1.05rem;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .contact-form {
            background: var(--light);
            padding: 2.4rem;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 1.4rem;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.45rem;
            font-size: 0.93rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.85rem 1.15rem;
            border: 1px solid #d8e0d5;
            border-radius: 12px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
            background: white;
        }

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

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

        .btn-submit {
            width: 100%;
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ========== FOOTER ========== */
        footer {
            background: #111;
            color: white;
            padding: 3.8rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.8rem;
            margin-bottom: 2.8rem;
        }

        .footer-brand .logo-text {
            color: white;
        }

        .footer-brand .logo-text span {
            color: #999;
        }

        .footer-brand p {
            color: #999;
            margin-top: 1.15rem;
            font-size: 0.93rem;
            max-width: 290px;
        }

        .footer-col h4 {
            font-size: 1.05rem;
            margin-bottom: 1.15rem;
            color: var(--accent-light);
        }

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

        .footer-col ul li {
            margin-bottom: 0.65rem;
        }

        .footer-col a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.93rem;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #2a2a2a;
            padding-top: 1.8rem;
            text-align: center;
            color: #777;
            font-size: 0.88rem;
        }

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

        /* ========== RESPONSIVE ========== */
        @media (max-width: 992px) {
            .about-grid,
            .farmers-content,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

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

            .process-steps::before {
                display: none;
            }

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

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1.4rem;
                gap: 0.9rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

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

            .mobile-toggle {
                display: block;
            }

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

            .process-steps {
                grid-template-columns: 1fr;
            }

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

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
            }

            .logo-text {
                font-size: 1.15rem;
            }

            .logo img {
                width: 44px;
                height: 44px;
            }
        }

/* Multi-page: content below fixed header */
body > section:first-of-type:not(.hero) {
    padding-top: 7rem;
}
.page-top {
    padding-top: 7rem;
}

