:root {
    --vy-forest-dark: #1a3c24;
    --vy-forest-main: #2c5e3b;
    --vy-forest-light: #e8f0eb;
    --vy-earth-accent: #d3a462;
    --vy-text-dark: #222222;
    --vy-text-muted: #555555;
    --vy-bg-white: #ffffff;
    --vy-bg-offwhite: #fcfdfc;
}

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

body {
    font-family: 'Lora', serif;
    color: var(--vy-text-dark);
    background-color: var(--vy-bg-offwhite);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

a {
    color: var(--vy-forest-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--vy-forest-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.2rem;
}

/* Buttons */
.vy-agri-action-btn {
    display: inline-block;
    background-color: var(--vy-forest-main);
    color: var(--vy-bg-white);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.vy-agri-action-btn:hover {
    background-color: var(--vy-earth-accent);
    color: var(--vy-forest-dark);
    transform: translateY(-2px);
}

.vy-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
.vy-nav-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--vy-bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.vy-logo-mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--vy-forest-dark);
}

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

.vy-nav-links a {
    color: var(--vy-text-dark);
    font-weight: 600;
}

.vy-nav-links a:hover {
    color: var(--vy-forest-main);
}

/* Hero */
.vy-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background-color: var(--vy-forest-light);
}

.vy-hero-text {
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.vy-hero-badge {
    background-color: var(--vy-earth-accent);
    color: var(--vy-forest-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vy-hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.vy-hero-subhead {
    font-size: 1.2rem;
    color: var(--vy-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.vy-hero-visual img {
    height: 100%;
    min-height: 400px;
}

/* About Region */
.vy-about-region {
    display: flex;
    flex-wrap: wrap;
    padding: 7rem 5%;
    gap: 4rem;
    align-items: center;
}

.vy-about-content {
    flex: 1;
    min-width: 300px;
}

.vy-about-content h2 {
    font-size: 2.5rem;
}

.vy-about-image-wrap {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.vy-about-image-wrap img {
    border-radius: 8px;
    box-shadow: 15px 15px 0 var(--vy-forest-light);
}

/* Stats Counter */
.vy-bio-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.vy-stat-item {
    display: flex;
    flex-direction: column;
}

.vy-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vy-forest-main);
}

.vy-stat-plus {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--vy-earth-accent);
}

.vy-stat-label {
    font-size: 0.95rem;
    color: var(--vy-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Perks / Advantages */
.vy-perks-wrap {
    background-color: var(--vy-forest-dark);
    color: var(--vy-bg-white);
    padding: 6rem 5%;
}

.vy-perks-wrap .vy-section-header h2 {
    color: var(--vy-bg-white);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.vy-perk-item {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 6px;
    border-top: 4px solid var(--vy-earth-accent);
}

.vy-perk-item h3 {
    color: var(--vy-earth-accent);
}

.vy-perk-item p {
    color: #cccccc;
}

/* Methodology / Services */
.vy-process-zone {
    padding: 8rem 5%;
    background-color: var(--vy-bg-white);
}

.vy-process-zone .vy-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.vy-process-zone .vy-section-header h2 {
    font-size: 2.5rem;
}

.vy-process-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.vy-process-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vy-process-card:nth-child(even) {
    direction: rtl;
}

.vy-process-card:nth-child(even) .vy-pc-text {
    direction: ltr;
}

.vy-process-card img {
    border-radius: 8px;
    height: 400px;
}

.vy-step-marker {
    display: inline-block;
    background: var(--vy-forest-light);
    color: var(--vy-forest-main);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vy-pc-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.vy-feedback-zone {
    padding: 6rem 5%;
    background-color: var(--vy-forest-light);
    text-align: center;
}

.vy-feedback-zone h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.vy-feedback-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.vy-feedback-card {
    background: var(--vy-bg-white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
}

.vy-feedback-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--vy-text-muted);
    margin-bottom: 2rem;
}

.vy-client-id {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vy-client-id img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.vy-client-id strong {
    display: block;
    color: var(--vy-forest-dark);
}

.vy-client-id span {
    font-size: 0.9rem;
    color: var(--vy-text-muted);
}

/* Contact Form */
.vy-inquiry-section {
    padding: 7rem 5%;
    background: var(--vy-bg-white);
    display: flex;
    justify-content: center;
}

.vy-inquiry-wrap {
    width: 100%;
    max-width: 700px;
    background: var(--vy-forest-light);
    padding: 4rem;
    border-radius: 8px;
}

.vy-inquiry-wrap h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.vy-inquiry-wrap > p {
    margin-bottom: 2.5rem;
    color: var(--vy-text-muted);
}

.vy-form-group {
    margin-bottom: 1.5rem;
}

.vy-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--vy-forest-dark);
}

.vy-agri-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Lora', serif;
    font-size: 1rem;
}

.vy-agri-input:focus {
    outline: none;
    border-color: var(--vy-forest-main);
    box-shadow: 0 0 0 2px rgba(44, 94, 59, 0.2);
}

.vy-submit-btn {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Footer */
.vy-footer-block {
    background-color: #111;
    color: #aaa;
    padding: 5rem 5% 2rem 5%;
}

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

.vy-footer-col h3, .vy-footer-col h4 {
    color: var(--vy-bg-white);
    margin-bottom: 1.5rem;
}

.vy-footer-col a {
    color: #aaa;
}

.vy-footer-col a:hover {
    color: var(--vy-earth-accent);
}

.vy-tiny-disclaimer {
    font-size: 0.75rem;
    margin-top: 2rem;
    color: #666;
}

.vy-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.vy-footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vy-hero-split {
        grid-template-columns: 1fr;
    }
    .vy-hero-text {
        padding: 4rem 5%;
    }
    .vy-process-card {
        grid-template-columns: 1fr;
    }
    .vy-process-card:nth-child(even) {
        direction: ltr;
    }
    .vy-process-card img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .vy-nav-links {
        display: none; /* Simplified for mobile */
    }
    .vy-about-region {
        flex-direction: column;
    }
    .vy-hero-headline {
        font-size: 2.5rem;
    }
    .vy-inquiry-wrap {
        padding: 2rem;
    }
    .vy-bio-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
