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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.logo-text span {
    font-weight: 300;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a3c2a;
}

.btn-nav {
    background: #1a3c2a;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem !important;
    letter-spacing: 0.3px;
    transition: background 0.2s !important;
}

.btn-nav:hover {
    background: #2a5c40 !important;
    color: #fff !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

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

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(160deg, #0d2818 0%, #1a3c2a 40%, #2a5c40 100%);
    text-align: center;
    color: #fff;
}

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}

.btn-primary {
    background: #c9a84c;
    color: #0d2818;
}

.btn-primary:hover {
    background: #dbbe6a;
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #c9a84c;
}

.trust-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    align-self: center;
}

/* Categories */
.categories {
    padding: 100px 0;
}

h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #777;
    max-width: 480px;
    margin: 0 auto 48px;
    font-weight: 300;
    font-size: 1.05rem;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cat-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
    background: #f8f9f8;
    border: 1px solid #e8ece8;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.25s;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 60, 42, 0.12);
    border-color: #1a3c2a;
}

.cat-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.cat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cat-card p {
    color: #888;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
}

.cat-cta {
    text-align: center;
    margin-top: 48px;
}

/* About */
.about {
    padding: 100px 0;
    background: #f8f9f8;
}

.about-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: #555;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Why Us */
.why-us {
    padding: 100px 0;
}

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

.feature-card {
    text-align: center;
    padding: 36px 20px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: #f0f4f0;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: #777;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: #f8f9f8;
}

.contact-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    text-align: center;
    padding: 48px 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8ece8;
    text-decoration: none;
    color: #1a1a1a;
    flex: 1;
    max-width: 340px;
    transition: all 0.25s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 60, 42, 0.1);
    border-color: #1a3c2a;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: #777;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0d2818;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

.footer p {
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 900px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        gap: 20px;
        border-bottom: 1px solid #eee;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

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

    .hero {
        padding: 130px 0 80px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .trust-bar {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item strong {
        font-size: 1.3rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .categories, .about, .why-us, .contact {
        padding: 72px 0;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        max-width: 100%;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
