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

:root {
    --green-900: #0B2218;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --green-400: #74C69D;
    --green-300: #95D5B2;
    --green-200: #B7E4C7;
    --green-100: #D8F3DC;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 67, 50, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 240, 0.97);
    box-shadow: var(--shadow-sm);
}

.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: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-800);
}

.nav-logo-icon {
    color: var(--green-600);
}

.nav-logo-accent {
    color: var(--green-600);
}

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

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--green-700);
    background: var(--green-100);
}

.nav-cta {
    background: var(--green-800) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--green-700) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--cream);
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.08;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--green-600);
    top: -200px;
    right: -100px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gold);
    bottom: 100px;
    left: -80px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--green-500);
    top: 30%;
    left: 5%;
    opacity: 0.06;
}

.geo-square {
    width: 100px;
    height: 100px;
    background: var(--green-700);
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
    opacity: 0.07;
}

.geo-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid var(--gold);
    bottom: 20%;
    right: 5%;
    opacity: 0.06;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--green-100);
    border: 1px solid var(--green-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-700);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--green-600);
    position: relative;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gold);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.3);
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--green-800);
    border: 2px solid var(--green-200);
}

.btn-secondary:hover {
    border-color: var(--green-500);
    background: var(--green-100);
}

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

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

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

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--green-200);
}

.hero-visual {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-main {
    height: 620px;
}

.hero-img-main img,
.hero-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-top {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 280px;
    height: 340px;
    z-index: 2;
    border: 4px solid var(--cream);
}

.hero-img-bottom {
    position: absolute;
    bottom: 40px;
    right: -30px;
    width: 280px;
    height: 260px;
    z-index: 2;
    border: 4px solid var(--cream);
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.float-card-icon {
    width: 40px;
    height: 40px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
}

.float-card-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.float-card-sub {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    color: var(--green-800);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-600);
    margin-bottom: 16px;
}

.label-line {
    width: 32px;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
    flex-shrink: 0;
}

.label-line-center {
    margin-left: 0;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--green-600);
}

.text-accent-light {
    color: var(--green-300);
}

.text-accent-dark {
    color: var(--green-600);
}

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

.section-title-dark {
    color: var(--green-900);
}

.section-label-center {
    justify-content: center;
}

/* ===== ABOUT ===== */
.about {
    background: var(--green-800);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

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

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

.about-text {
    color: var(--white);
}

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

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon-1 {
    background: rgba(82, 183, 136, 0.2);
    color: var(--green-400);
}

.value-icon-2 {
    background: rgba(212, 168, 67, 0.2);
    color: var(--gold-light);
}

.value-icon-3 {
    background: rgba(149, 213, 178, 0.2);
    color: var(--green-300);
}

.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 560px;
}

.about-img-main {
    width: 100%;
    height: 560px;
    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-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 240px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--green-800);
    box-shadow: var(--shadow-md);
}

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

.about-geo-accent {
    position: absolute;
    border-radius: 50%;
}

.geo-accent-1 {
    width: 120px;
    height: 120px;
    background: var(--gold);
    opacity: 0.15;
    top: -20px;
    right: 20px;
}

.geo-accent-2 {
    width: 60px;
    height: 60px;
    background: var(--green-400);
    opacity: 0.2;
    top: 40%;
    right: -20px;
}

/* ===== PRODUCTS ===== */
.products {
    background: var(--cream);
    padding: 100px 24px;
    overflow: hidden;
}

.products-bg-shape {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.products-shape-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--green-100);
    top: -100px;
    left: -100px;
    opacity: 0.5;
}

.products-shape-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    bottom: -50px;
    right: -50px;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-1 { background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%); color: var(--white); }
.product-card-2 { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--text-dark); }
.product-card-3 { background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%); color: var(--white); }
.product-card-4 { background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%); color: var(--text-dark); border: 1px solid var(--green-200); }
.product-card-5 { background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%); color: var(--white); }
.product-card-6 { background: linear-gradient(135deg, var(--green-500) 0%, var(--green-400) 100%); color: var(--white); }

.product-card-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.product-card-4 .product-card-pattern {
    background: rgba(27, 67, 50, 0.06);
}

.product-card-content {
    position: relative;
    z-index: 1;
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.15);
}

.product-card-4 .product-icon {
    background: var(--green-100);
    color: var(--green-700);
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.product-card-number {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.12;
    line-height: 1;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--cream);
    padding: 100px 24px;
}

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

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-left .section-title {
    margin-bottom: 20px;
}

.why-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 440px;
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.why-card-accent {
    background: var(--green-800);
    border: none;
}

.why-card-accent .why-card-title,
.why-card-accent .why-card-text {
    color: var(--white);
}

.why-card-accent .why-card-text {
    color: rgba(255,255,255,0.7);
}

.why-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-200);
    line-height: 1;
    flex-shrink: 0;
}

.why-card-accent .why-card-number {
    color: rgba(255,255,255,0.2);
}

.why-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== COMMUNITY ===== */
.community {
    background: var(--green-800);
    padding: 100px 24px;
    overflow: hidden;
}

.community-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(82, 183, 136, 0.15);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-400);
    margin-bottom: 24px;
}

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

.community-title {
    margin-bottom: 20px;
}

.community-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}

.community-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.community-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.community-feature:hover {
    background: rgba(255,255,255,0.1);
}

.cf-icon {
    color: var(--green-400);
    flex-shrink: 0;
}

.community-visual {
    position: relative;
}

.community-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.community-image-wrapper img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.community-geo-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.15;
    bottom: -30px;
    left: -30px;
}

.community-geo-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--green-400);
    opacity: 0.2;
    top: 30px;
    right: -20px;
    transform: rotate(30deg);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 50%, var(--green-900) 100%);
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(82, 183, 136, 0.1);
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(212, 168, 67, 0.1);
    bottom: -80px;
    right: -50px;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    top: 50%;
    left: 60%;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-accent {
    color: var(--gold-light);
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--cream);
    padding: 100px 24px;
}

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

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

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--green-600);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.form-title {
    font-size: 1.5rem;
    color: var(--green-900);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--green-100);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--green-600);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--green-700);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-900);
    color: var(--white);
    padding: 64px 24px 32px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo-icon {
    color: var(--green-400);
}

.footer-logo-accent {
    color: var(--green-400);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4,
.footer-hours h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-400);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-hours address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-hours a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        max-width: 500px;
    }
    
    .hero-img-top,
    .hero-img-bottom {
        right: 0;
    }
    
    .about-grid,
    .why-grid,
    .community-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-stack {
        height: 400px;
        max-width: 480px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(27, 67, 50, 0.08);
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.open {
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
    
    .hero-img-main {
        height: 400px;
    }
    
    .hero-img-top,
    .hero-img-bottom {
        display: none;
    }
    
    .hero-float-card {
        bottom: -10px;
        left: 10px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .community-features {
        grid-template-columns: 1fr;
    }
    
    .community-image-wrapper img {
        height: 400px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
