/* =============================================
   Greens Unlimited - Microgreens
   Responsive Main Stylesheet
   ============================================= */

:root {
    --primary: #2d5a27;
    --primary-light: #4a8c3f;
    --primary-dark: #1a3a16;
    --secondary: #8b7355;
    --accent: #f59e0b;
    --text: #1a202c;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg: #f7faf7;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --border: #e8f0e8;
    --border-light: #f0f5f0;
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --max-width: 1200px;
}

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

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

h1, h2, h3, h4 { color: var(--primary-dark); font-weight: 700; line-height: 1.2; }

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-light);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.section-header { margin-bottom: 2rem; }
.section-footer { text-align: center; margin-top: 2rem; }

/* ============ HEADER ============ */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    text-decoration: none;
}
.logo-icon { font-size: 2rem; line-height: 1; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 1.3rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.logo-sub { font-size: 0.7rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.nav-list { display: flex; gap: 0.25rem; align-items: center; }
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary-light); background: rgba(74, 140, 63, 0.08); }
.nav-link.login-link { background: var(--primary); color: white; padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); }
.nav-link.login-link:hover { background: var(--primary-dark); color: white; }
.nav-link.admin-link { background: var(--secondary); color: white; }
.nav-link.admin-link:hover { background: #6b5b3e; color: white; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.8rem; color: var(--text-light); }
.contact-info > div { display: flex; align-items: center; gap: 0.35rem; }
.contact-info i { color: var(--primary-light); font-size: 0.7rem; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">🌱</text></svg>') center/cover;
    opacity: 0.03;
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
}
.hero-features .feature i { color: var(--accent); font-size: 1.1rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.2;
}
.btn-primary { background: var(--primary-light); color: white; border-color: var(--primary-light); }
.btn-primary:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(74, 140, 63, 0.3); }
.btn-secondary { background: white; color: var(--primary); border-color: white; }
.btn-secondary:hover { background: transparent; color: white; border-color: white; }
.btn-outline { background: transparent; color: var(--primary-light); border-color: var(--primary-light); }
.btn-outline:hover { background: var(--primary-light); color: white; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-danger { background: #ef4444; color: white; border-color: #ef4444; }
.btn-danger:hover { background: #dc2626; color: white; }
.btn-warning { background: #f59e0b; color: white; border-color: #f59e0b; }
.btn-success { background: #10b981; color: white; border-color: #10b981; }

/* ============ ABOUT SECTION ============ */
.about-section { padding: 4rem 0; background: var(--bg-white); }
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; line-height: 1.7; color: var(--text); }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.about-feature .feature-icon { font-size: 1.5rem; line-height: 1; }
.about-feature strong { display: block; color: var(--primary-dark); margin-bottom: 0.15rem; }
.about-feature span { color: var(--text-light); font-size: 0.9rem; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary-light); }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-light); margin-top: 0.25rem; }

/* ============ FEATURED CROPS ============ */
.featured-section { padding: 4rem 0; background: var(--bg); }
.crops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.crop-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.crop-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.crop-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.crop-image::before { content: '🌱'; font-size: 4rem; opacity: 0.3; }
.crop-variety-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.status-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.status-badge.ready { background: #10b981; color: white; }
.status-badge.growing { background: #3b82f6; color: white; }
.status-badge.seeded { background: #6b7280; color: white; }
.status-badge.germinating { background: #f59e0b; color: white; }

.crop-content { padding: 1.25rem; }
.crop-title { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.crop-variety { margin-bottom: 0.75rem; font-size: 0.9rem; }
.variety-link { color: var(--primary-light); font-weight: 600; }
.crop-details { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: var(--text-light); }
.detail-item { display: flex; align-items: center; gap: 0.35rem; }
.detail-item i { width: 14px; color: var(--primary-light); }

/* ============ VARIETIES ============ */
.varieties-section { padding: 4rem 0; background: var(--bg-white); }
.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.variety-card {
    background: #09C820;
    border-radius: var(--radius);
    border: 1px solid #a0d8a0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.variety-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90">🌱</text></svg>');
    background-repeat: repeat;
    background-size: 50px;
    background-position: 0 0;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.variety-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.variety-header {
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
    background: rgba(255,255,255,0.88);
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    z-index: 1;
}
.variety-name { font-size: 1.2rem; margin: 0; }
.variety-name a { color: var(--primary-dark); text-decoration: none; }
.variety-name a:hover { color: var(--primary-light); }
.variety-body { padding: 1rem 1.25rem; flex: 1; background: rgba(255,255,255,0.75); position: relative; z-index: 1; }
.variety-body p { margin-bottom: 0.6rem; line-height: 1.6; }
.variety-flavor { font-size: 0.95rem; color: var(--text); }
.variety-seeding { font-size: 0.95rem; color: var(--primary-dark); font-weight: 600; }
.variety-desc { font-size: 0.95rem; color: var(--text); line-height: 1.7; }
.variety-germ { font-size: 0.95rem; color: var(--text); }
.germ-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.germ-badge.germ-high { background: #d1fae5; color: #065f46; }
.germ-badge.germ-medium { background: #fef3c7; color: #92400e; }
.germ-badge.germ-low { background: #fee2e2; color: #991b1b; }
.variety-stats {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}
.variety-stats .stat { display: flex; justify-content: space-between; font-size: 0.9rem; }
.variety-stats .stat-label { color: var(--text-light); font-weight: 500; }
.variety-stats .stat-value { font-weight: 700; color: var(--text); }
.variety-footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--border-light); text-align: right; background: rgba(255,255,255,0.85); border-radius: 0 0 var(--radius) var(--radius); position: relative; z-index: 1; }

/* ============ VARIETY DETAIL PAGE IMAGE ============ */
.variety-hero-image {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.variety-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 420px;
}

/* ============ HOME PAGE VARIETY SHOWCASE (Image Cards) ============ */
.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-head .section-tag {
    display: inline-block;
    background: rgba(74, 140, 63, 0.1);
    color: var(--primary-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.section-head .section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}
.section-head .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-light);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}
.section-head .section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}
.section-foot {
    text-align: center;
    margin-top: 2.5rem;
}

.text-emerald {
    color: var(--primary-light);
}

.variety-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.variety-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    background: linear-gradient(135deg, var(--grad-from, #1b5e20), var(--grad-via, #388e3c));
}
.variety-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.variety-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.5s ease;
    /* Fallback gradient if image fails to load */
    background-color: var(--grad-from, #1b5e20);
    background-image: var(--img-url), linear-gradient(135deg, var(--grad-from, #1b5e20), var(--grad-via, #388e3c));
}
.variety-card:hover .variety-card-bg {
    transform: scale(1.08);
}

.variety-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.05) 30%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

.variety-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
    color: white;
}

.variety-card-emoji {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.variety-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.variety-card-flavor {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.variety-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}
.variety-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.variety-card-meta i {
    font-size: 0.75rem;
}

.variety-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.variety-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    padding: 0.35rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.3s ease;
}
.variety-card:hover .variety-card-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: #1a202c;
}
.variety-card-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.variety-card:hover .variety-card-cta i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .variety-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .variety-card {
        min-height: 300px;
    }
    .section-head .section-title {
        font-size: 1.7rem;
    }
}
@media (max-width: 480px) {
    .variety-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CONTACT CTA ============ */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}
.cta-content h2 { font-size: 2rem; color: white; margin-bottom: 0.75rem; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-outline { color: white; border-color: rgba(255,255,255,0.5); }
.cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ============ FOOTER ============ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 3rem 0 0;
    margin-top: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.footer-section p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}
.footer-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-section ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-section ul a:hover { color: white; padding-left: 3px; }
.contact-item { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.contact-item i { margin-top: 0.2rem; width: 14px; color: var(--primary-light); }
.hours { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-item { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-bottom { padding: 1.5rem 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom p { margin-bottom: 0.15rem; }

/* ============ FLASH MESSAGES ============ */
.flash-message {
    padding: 0.75rem 0;
    animation: slideDown 0.3s ease;
}
.flash-message.success { background: #10b981; color: white; }
.flash-message.error { background: #ef4444; color: white; }
.flash-message.info { background: #3b82f6; color: white; }
.flash-message .container { display: flex; justify-content: space-between; align-items: center; }
.flash-close { background: none; border: none; color: inherit; font-size: 1.5rem; cursor: pointer; opacity: 0.7; padding: 0 0.25rem; }
.flash-close:hover { opacity: 1; }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.flash {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease;
}
.flash-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.flash-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.flash-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* ============ EMPTY STATE ============ */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { color: var(--text-light); margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.95rem; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--bg-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74, 140, 63, 0.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }

/* ============ LOCATION GRID (About Page) ============ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* ============ CONTACT PAGE ============ */
.contact-page { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-section { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-card .icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: var(--radius-sm);
}
.contact-card h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-card p { color: var(--text-light); font-size: 0.9rem; }

/* ============ OVERLAY ============ */
.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .about-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-actions .contact-info { display: none; }
    .mobile-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #0d2818 0%, #1a4a2e 30%, #2d6b3e 60%, #1a4a2e 100%);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3), inset 0 0 80px rgba(76,175,80,0.1);
        padding: 5rem 1.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 999;
        overflow-y: auto;
        border-left: 3px solid rgba(76,175,80,0.5);
    }
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4caf50, #8bc34a, #cddc39, #8bc34a, #4caf50);
        background-size: 200% 100%;
        animation: shimmer 3s ease-in-out infinite;
    }
    @keyframes shimmer {
        0%, 100% { background-position: 0% 0; }
        50% { background-position: 100% 0; }
    }
    .nav.active { right: 0; }
    .nav.active .nav-list li {
        animation: slideIn 0.4s ease forwards;
        opacity: 0;
        transform: translateX(30px);
    }
    .nav.active .nav-list li:nth-child(1) { animation-delay: 0.05s; }
    .nav.active .nav-list li:nth-child(2) { animation-delay: 0.1s; }
    .nav.active .nav-list li:nth-child(3) { animation-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(4) { animation-delay: 0.2s; }
    .nav.active .nav-list li:nth-child(5) { animation-delay: 0.25s; }
    @keyframes slideIn {
        to { opacity: 1; transform: translateX(0); }
    }
    .nav-list { flex-direction: column; gap: 0.35rem; }
    .nav-link {
        display: block;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
        color: rgba(255,255,255,0.85);
        border-radius: 12px;
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        position: relative;
        overflow: hidden;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }
    .nav-link:hover::after { left: 100%; }
    .nav-link:hover, .nav-link.active {
        color: #fff;
        background: linear-gradient(135deg, rgba(76,175,80,0.4), rgba(139,195,74,0.3));
        border-color: rgba(76,175,80,0.4);
        transform: translateX(6px) scale(1.02);
        box-shadow: 0 4px 15px rgba(76,175,80,0.2);
    }
    .nav-link.login-link {
        background: linear-gradient(135deg, #4caf50, #388e3c);
        color: white;
        border: none;
        text-align: center;
        font-weight: 700;
        margin-top: 0.5rem;
        box-shadow: 0 4px 15px rgba(76,175,80,0.3);
    }
    .nav-link.login-link:hover {
        background: linear-gradient(135deg, #66bb6a, #43a047);
        transform: translateX(6px) scale(1.02);
        box-shadow: 0 6px 25px rgba(76,175,80,0.4);
    }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-features { gap: 1rem; }
    .hero-features .feature { font-size: 0.85rem; }
    .section-title { font-size: 1.7rem; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .crops-grid, .varieties-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-title { font-size: 1.6rem; }
    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; justify-content: center; }
    .about-stats { grid-template-columns: 1fr; }
}

/* =============================================
   MISSING STYLES - Added for homepage sections
   ============================================= */

/* === Hero Additions === */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}
.text-accent {
    color: #68d391;
}
.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.shape-1 {
    width: 400px; height: 400px;
    background: white;
    top: -100px; right: -100px;
}
.shape-2 {
    width: 300px; height: 300px;
    background: white;
    bottom: -50px; left: -50px;
}
.shape-3 {
    width: 200px; height: 200px;
    background: white;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* === Buttons === */
.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}
.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: white;
}
.btn-secondary-dark {
    background: rgba(0,0,0,0.2);
    color: white;
    border-color: rgba(255,255,255,0.3);
}
.btn-secondary-dark:hover {
    background: rgba(0,0,0,0.35);
    color: white;
    border-color: white;
}

/* === Section Headers === */
.section-header-center {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-tag {
    display: inline-block;
    background: rgba(74, 140, 63, 0.1);
    color: var(--primary-light);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}
.section-title-center {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}
.section-title-left {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}
.section-footer-center {
    text-align: center;
    margin-top: 2rem;
}

/* === Value Props === */
.value-props {
    padding: 4rem 0;
    background: var(--bg-white);
}
.props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.prop-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: var(--transition);
}
.prop-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.prop-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.prop-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}
.prop-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* === About Preview === */
.about-preview {
    padding: 4rem 0;
    background: var(--bg);
}
.about-preview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-preview-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1rem;
}
.about-stats-row {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    min-width: 120px;
}
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1.1;
}
.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}
.about-preview-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.visual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: var(--radius);
    background: var(--bg-white);
    border: 1px solid var(--border);
    text-align: center;
    min-height: 140px;
    transition: var(--transition);
}
.visual-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.visual-card .visual-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.visual-card span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
}
.visual-card-1 { grid-column: 1 / -1; }
.visual-card-2 { }
.visual-card-3 { }

/* === Varieties Showcase === */
.varieties-showcase {
    padding: 4rem 0;
    background: var(--bg-white);
}
.varieties-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.variety-showcase-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.variety-showcase-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.vsc-header {
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.vsc-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.vsc-name {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}
.vsc-germ-rate {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.rate-high { background: #d1fae5; color: #065f46; }
.rate-medium { background: #fef3c7; color: #92400e; }
.rate-low { background: #fee2e2; color: #991b1b; }
.vsc-body {
    padding: 1rem 1.25rem;
    flex: 1;
}
.vsc-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}
.vsc-detail:last-child { border-bottom: none; }
.vsc-label {
    color: var(--text-light);
}
.vsc-value {
    font-weight: 600;
    color: var(--text);
}
.vsc-value-highlight {
    color: var(--primary-light);
}
.vsc-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

/* === Crops Showcase === */
.crops-showcase {
    padding: 4rem 0;
    background: var(--bg);
}
.crops-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.crop-card-new {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.crop-card-new:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.crop-card-top {
    padding: 1.25rem 1.25rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
}
.crop-emoji {
    font-size: 2rem;
}
.crop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.badge-seeded { background: #e5e7eb; color: #374151; }
.badge-germinating { background: #fef3c7; color: #92400e; }
.badge-growing { background: #dbeafe; color: #1e40af; }
.badge-ready { background: #d1fae5; color: #065f46; }
.crop-card-body {
    padding: 1rem 1.25rem;
    flex: 1;
}
.crop-variety-name {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.15rem;
}
.crop-number {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.75rem;
}
.crop-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-light);
}
.crop-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.crop-meta i {
    width: 14px;
    color: var(--primary-light);
}
.crop-card-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

/* === Process Section === */
.process-section {
    padding: 4rem 0;
    background: var(--bg-white);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
    position: relative;
    margin-top: 2rem;
}
.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(74, 140, 63, 0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.step h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.step-connector {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-light), var(--accent));
    margin-top: 3rem;
    position: relative;
}
.step-connector::after {
    content: '▶';
    position: absolute;
    right: -6px;
    top: -7px;
    font-size: 0.6rem;
    color: var(--primary-light);
}

/* === CTA Section === */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-box {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-box-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
}
.cta-box-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}
.cta-box .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Footer Additions === */
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--primary-light);
    color: white;
}

/* === Hero Features === */
.hero-features .feature i { color: var(--accent); }

/* === Responsive fixes for new sections === */
@media (max-width: 1024px) {
    .props-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .step-connector { display: none; }
}
@media (max-width: 768px) {
    .props-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview-grid { grid-template-columns: 1fr; }
    .about-preview-visual { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .step-connector { display: none; }
    .crops-showcase-grid { grid-template-columns: 1fr; }
    .varieties-showcase-grid { grid-template-columns: 1fr; }
    .section-title-center { font-size: 1.7rem; }
    .section-title-left { font-size: 1.6rem; }
    .cta-box { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
    .props-grid { grid-template-columns: 1fr; }
    .about-preview-visual { grid-template-columns: 1fr; }
}

/* =============================================
   TOP NAVIGATION - Stylized Horizontal Menu
   ============================================= */
.top-nav {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    padding: 0.4rem 0;
}

.top-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}
.top-nav-logo:hover { color: var(--accent); }
.top-nav-logo .logo-icon { font-size: 1.6rem; line-height: 1; }
.top-nav-logo .logo-text { font-size: 0.95rem; letter-spacing: 0.3px; }

.top-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.top-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.top-nav-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}
.top-nav-btn.active {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.top-nav-btn.top-nav-login {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    font-weight: 700;
    padding: 0.55rem 1.25rem;
}
.top-nav-btn.top-nav-login:hover {
    background: #e6a000;
    border-color: #e6a000;
    color: var(--primary-dark);
    box-shadow: 0 3px 12px rgba(245, 158, 11, 0.4);
}

/* Hamburger toggle button */
.top-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    transition: var(--transition);
}
.top-nav-toggle:hover { border-color: rgba(255,255,255,0.6); }
.top-nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.top-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.top-nav-toggle.active span:nth-child(2) { opacity: 0; }
.top-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ RESPONSIVE: Mobile Menu ============ */
@media (max-width: 768px) {
    .top-nav { padding: 0.5rem 0; }

    .top-nav-toggle { display: flex; }

    .top-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        padding: 0.75rem 1.5rem 1.25rem;
        gap: 0.4rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .top-nav-menu.open {
        display: flex;
    }

    .top-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    .top-nav-btn.top-nav-login {
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .top-nav-logo .logo-text { font-size: 0.85rem; }
    .top-nav-btn { font-size: 0.85rem; padding: 0.6rem 0.9rem; }
}
