/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── Navigation ── */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-scrolled.scrolled {
    background: rgba(254, 253, 248, 0.97);
    box-shadow: 0 4px 24px rgba(6, 95, 70, 0.08);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: #065f46;
}
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo-text { font-family: 'Lora', serif; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.nav-cta):hover { color: #059669; }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #059669;
    border-radius: 1px;
    transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
    background: #065f46;
    color: #fefdf8 !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #047857; transform: translateY(-1px); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2.5px;
    background: #065f46;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 40%, #fefdf8 100%);
    padding: 6rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(6, 95, 70, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-main-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(6, 95, 70, 0.1), 0 4px 16px rgba(6, 95, 70, 0.06);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(6, 95, 70, 0.08);
    color: #065f46;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-headline {
    font-family: 'Lora', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.25;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
}
.hero-accent {
    color: #059669;
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    transition: all 0.25s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
    background: #065f46;
    color: #fefdf8;
    box-shadow: 0 4px 16px rgba(6, 95, 70, 0.25);
}
.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: #065f46;
    border: 1.5px solid rgba(6, 95, 70, 0.2);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #059669;
    transform: translateY(-2px);
}

/* Floating stat cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(6, 95, 70, 0.1);
    transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateX(6px); }
.stat-card--1 { animation: float1 4s ease-in-out infinite; }
.stat-card--2 { animation: float2 4.5s ease-in-out infinite; }
.stat-card--3 { animation: float3 5s ease-in-out infinite; }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-card--1 .stat-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.stat-card--2 .stat-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.stat-card--3 .stat-icon { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #9d174d; }
.stat-icon svg { width: 24px; height: 24px; }
.stat-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #6b7280; }
.stat-value { font-size: 1.15rem; font-weight: 800; color: #1a1a2e; }

/* ── Section shared ── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #059669;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.05rem; line-height: 1.7; color: #4b5563; }

/* ── Products ── */
.products {
    padding: 6rem 0;
    background: #fefdf8;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.product-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(6, 95, 70, 0.12);
}
.product-img {
    height: 200px;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-content { padding: 1.5rem; }
.product-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
}
.product-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #6b7280;
}

/* ── About ── */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fefdf8 0%, #ecfdf5 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images {
    position: relative;
    min-height: 500px;
}
.about-img-main {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 95, 70, 0.15);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(6, 95, 70, 0.2);
    border: 4px solid #fefdf8;
}
.about-img-secondary img { width: 100%; height: 250px; object-fit: cover; }
.about-pattern {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #34d399 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.4;
    z-index: -1;
}
.about-content .section-title { text-align: left; }
.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.25rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.about-feature-icon {
    width: 28px;
    height: 28px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature-icon svg { width: 16px; height: 16px; color: #059669; }
.about-feature span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

/* ── Why Us ── */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(145deg, #065f46 0%, #047857 100%);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(52, 211, 153, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1;
}
.why-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s, transform 0.3s;
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}
.why-card-number {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(52, 211, 153, 0.35);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.why-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fefdf8;
    margin-bottom: 0.6rem;
}
.why-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(254, 253, 248, 0.7);
}

/* ── Visit ── */
.visit {
    padding: 6rem 0;
    background: #fefdf8;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.visit-info { padding: 1rem 0; }
.visit-info .section-title { text-align: left; }
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2rem 0;
}
.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.visit-detail-icon {
    width: 44px;
    height: 44px;
    background: #d1fae5;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.visit-detail-icon svg { width: 20px; height: 20px; color: #065f46; }
.visit-detail-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin-bottom: 0.2rem;
}
.visit-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
}
.visit-detail-value a { color: #059669; transition: color 0.2s; }
.visit-detail-value a:hover { color: #047857; }
.visit-cta { margin-top: 0.5rem; }

/* ── Footer ── */
.footer {
    background: #064e3b;
    padding: 4rem 0 2rem;
    color: rgba(254, 253, 248, 0.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fefdf8;
    margin-bottom: 1rem;
}
.footer-logo svg { width: 32px; height: 32px; }
.footer-logo span { font-family: 'Lora', serif; }
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #34d399;
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.65);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: #fefdf8; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.65);
    transition: color 0.2s;
}
.footer-contact a:hover { color: #34d399; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(254, 253, 248, 0.4);
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 2rem; }
    .stat-card { flex: 1; min-width: 160px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { min-height: 400px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(6, 95, 70, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }
    .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
    .hero-main-card { padding: 2rem; }
    .hero-stats { flex-direction: column; }
    .stat-card { animation: none !important; }
    .products-grid { grid-template-columns: 1fr; }
    .about-images { min-height: 350px; }
    .about-img-main img { height: 350px; }
    .about-img-secondary { right: 0; }
    .about-features { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

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