
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #2c3e2f;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color: #2e7d32 !important;
}

.navbar-brand span {
    color: #f57c00;
}

.navbar-nav .nav-link {
    color: #2c3e2f !important;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #f57c00 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #f57c00);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #2e7d32, #f57c00);
    color: #fff !important;
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2e7d32, #f57c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #2e7d32, #f57c00);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    color: #fff;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46,125,50,0.3);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid #2e7d32;
    background: transparent;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: #2e7d32;
    transition: 0.3s;
    margin-left: 15px;
}

.btn-outline-custom:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2e7d32;
    position: relative;
    display: inline-block;
}

.section-title-light {
    color: #fff;
}

.section-sub {
    color: #777;
    font-size: 18px;
    margin-bottom: 50px;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(46,125,50,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #2e7d32, #f57c00);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
}

.feature-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e2f;
}

.feature-card p {
    color: #777;
    line-height: 1.6;
}

/* Product Cards */
.product-card-light {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    cursor: pointer;
}

.product-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card-light img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2e7d32;
}

.product-info p {
    color: #777;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #2e7d32, #f57c00);
    color: #fff;
    padding: 80px 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Location Cards */
.location-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-info {
    padding: 20px;
    text-align: center;
}

.location-info h5 {
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-info p {
    color: #777;
    margin: 0;
}

/* Footer */
.footer-light {
    background: #1a2a1a;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-light h5 {
    color: #f57c00;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-light a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-light a:hover {
    color: #f57c00;
    padding-left: 5px;
}

.social-light a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.social-light a:hover {
    background: #f57c00;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }
    .section-title {
        font-size: 32px;
    }
    .section {
        padding: 60px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}
