     :root {
            --primary-green: #004d24; 
            --secondary-lime: #57e140; 
            --white: #ffffff;
            --dark-bg: #1a1a1a;
            --light-gray: #f8f9fa;
        }

        body { font-family: 'Poppins', sans-serif; color: #333; overflow-x: hidden; margin: 0; padding: 0; }

        /* Top Utility Bar */
        .top-bar { background-color: var(--dark-bg); color: rgba(255,255,255,0.8); font-size: 13px; padding: 10px 0; }
        .top-bar i { color: var(--secondary-lime); margin-right: 8px; }

        /* Navigation */
        .navbar { padding: 15px 0; background: var(--white) !important; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
        .navbar-brand img { max-height: 50px; }
        .nav-link { color: var(--dark-bg) !important; font-weight: 600; text-transform: capitalize; font-size: 15px; padding: 10px 15px !important; transition: 0.3s; }
        .nav-link:hover, .nav-link.active { color: var(--secondary-lime) !important; }

        /* Header Cart & Sign In */
        .header-actions { display: flex; align-items: center; gap: 20px; }
        .cart-icon-wrapper { position: relative; color: var(--primary-green); font-size: 20px; text-decoration: none; transition: 0.3s; }
        .cart-icon-wrapper:hover { color: var(--secondary-lime); }
        .cart-badge { position: absolute; top: -8px; right: -10px; background-color: var(--secondary-lime); color: var(--primary-green); font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 50%; border: 2px solid var(--white); }

        .btn-signin { background-color: var(--primary-green) !important; color: var(--white) !important; border-radius: 50px; padding: 8px 25px; font-weight: 700; text-transform: uppercase; font-size: 13px; border: 2px solid var(--primary-green); transition: 0.3s; text-decoration: none; }
        .btn-signin:hover { background-color: transparent !important; color: var(--primary-green) !important; }

        /* Offcanvas Menu */
        .offcanvas-start { width: 300px !important; }
        .offcanvas-header { background-color: var(--light-gray); border-bottom: 1px solid #ddd; }

        /* Hero Slider */
        .hero-slider { width: 100%; position: relative; }
        .carousel-item { height: 85vh !important; min-height: 550px; background-repeat: no-repeat !important; background-size: cover !important; background-position: center center !important; position: relative; }
        .carousel-item::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 1; }
        .animate-text-content { position: relative; z-index: 10; }
        .hero-sub { font-family: 'Yellowtail', cursive; color: var(--secondary-lime); font-size: 32px; margin-bottom: 15px; }
        .hero-slider h1 { font-size: 4rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #fff; }
        .hero-slider p { font-size: 1.2rem; max-width: 700px; margin-bottom: 40px; color: rgba(255,255,255,0.9); }
        .btn-lime { background-color: var(--secondary-lime); color: var(--primary-green); border-radius: 50px; padding: 15px 45px; font-weight: 700; border: none; transition: 0.3s; text-decoration: none; display: inline-block; }

        /* Text Animations */
        .carousel-item.active .animate-text-content .hero-sub { animation: fadeInUp 0.8s both 0.2s; }
        .carousel-item.active .animate-text-content h1 { animation: fadeInUp 0.8s both 0.4s; }
        .carousel-item.active .animate-text-content p { animation: fadeInUp 0.8s both 0.6s; }
        .carousel-item.active .animate-text-content .btn-lime { animation: fadeInUp 0.8s both 0.8s; }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        /* Expanded About Section */
        .about-section { background: #ffffff; padding: 100px 0 !important; }
        .pillar-item { background: var(--white); border: 1px solid #f0f0f0; transition: all 0.3s ease; }
        .pillar-item:hover { transform: translateY(-10px); border-color: var(--secondary-lime); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
        .about-image-wrapper { padding: 30px; }
        .about-shape-bg { position: absolute; top: 0; left: 0; width: 90%; height: 90%; background-color: var(--primary-green); border-radius: 20px; z-index: 1; }
        .stat-card { position: absolute; bottom: -10px; right: 20px; background: var(--white); border-left: 5px solid var(--secondary-lime); border-radius: 10px; z-index: 3; min-width: 220px; }
        .btn-brand-shop { background-color: var(--primary-green) !important; color: var(--white) !important; border-radius: 50px; font-weight: 700; display: flex; align-items: center; border: none; text-decoration: none; }
        .btn-icon-brand { background-color: var(--secondary-lime); color: var(--primary-green); width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 15px; }

        /* Product Showcase */
        .product-card-bg { background-color: #f8f8f8; border: 1px solid #eeeeee; border-radius: 12px; transition: 0.3s; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
        .product-item:hover .product-card-bg { border-color: var(--secondary-lime); transform: translateY(-5px); }

        /* News & Events */
        .news-card { transition: 0.3s ease; background: #fff; }
        .news-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important; }
        .news-image-wrapper { position: relative; height: 220px; overflow: hidden; }
        .news-date { position: absolute; bottom: 0; left: 20px; background: var(--secondary-lime); color: var(--primary-green); padding: 8px 15px; font-weight: 800; font-size: 14px; border-radius: 8px 8px 0 0; }

        footer { background-color: var(--primary-green); color: var(--white); padding: 40px 0; }

        @media (max-width: 991px) {
            .hero-slider h1 { font-size: 2.8rem; }
            .display-4 { font-size: 2.5rem; }
            .header-actions { margin-top: 20px; justify-content: center; }
            .about-image-wrapper { padding: 0; margin-bottom: 60px; }
        }

        /* --- Professional Footer Refinement (No Bullets, No Underlines) --- */
/* --- Brand-Colored Professional Footer --- */
.footer-section {
    background-color: var(--primary-green) !important; /* Using #004d24 */
    padding: 80px 0 30px;
    font-size: 14.5px;
}

/* 1. Remove Bullets & Adjust Spacing */
.footer-nav, 
.footer-contact-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.footer-nav li, 
.footer-contact-list li {
    margin-bottom: 12px;
}

/* ===== ABOUT PAGE STYLES ===== */

/* Hero Banner Section */
.about-hero {
    background: linear-gradient(135deg, #004d24 0%, #005a2a 100%);
    color: white;
    padding: 100px 0 !important;
}

.about-hero h1 {
    color: white;
}

.about-hero p {
    opacity: 0.95;
}

.hero-icon-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.hero-icon-box i {
    font-size: 80px;
    color: var(--secondary-lime);
    margin-bottom: 20px;
    display: block;
}

.hero-icon-box h5 {
    color: var(--secondary-lime);
    font-weight: 600;
}

.btn-hero {
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}

.btn-hero.btn-lime {
    background-color: var(--secondary-lime);
    color: var(--primary-green);
}

.btn-hero.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 28px;
    font-weight: 600;
}

.btn-hero.btn-outline:hover {
    background-color: white;
    color: var(--primary-green);
}

/* Stats Section */
.stats-section {
    background: var(--light-gray);
}

.stat-item {
    padding: 30px;
}

.stat-item h2 {
    color: var(--primary-green);
    font-size: 3rem;
    font-weight: 700;
}

.stat-item p {
    color: #999;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 50px 0 !important;
}

.mission-section h2 {
    color: var(--primary-green);
    font-weight: 700;
}

.mission-image {
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mission-text-col {
    padding-left: 2rem;
}

.mission-text-col p {
    color: #999;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mission-checklist {
    font-size: 15px;
    list-style: none;
    padding: 0;
}

.mission-checklist li {
    margin-bottom: 12px;
    color: #666;
}

.mission-checklist i {
    color: var(--secondary-lime);
    margin-right: 12px;
}

.mission-quote {
    background: var(--light-gray);
    border-left: 4px solid var(--secondary-lime);
    padding: 25px;
    border-radius: 8px;
}

.mission-quote p {
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

.vision-text-col {
    padding-right: 2rem;
}

.vision-margin {
    margin-top: 80px;
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

.values-section h2 {
    color: var(--primary-green);
    font-weight: 700;
}

.values-section-intro {
    color: #999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-lime);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 50px;
    color: var(--secondary-lime);
    margin-bottom: 20px;
    display: block;
}

.value-card h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: #999;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-us {
    padding: 50px 0 !important;
}

.why-us h2 {
    color: var(--primary-green);
    font-weight: 700;
}

.why-us-intro {
    color: #999;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.feature-content h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content p {
    color: #999;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #004d24 0%, #005a2a 100%);
    color: white;
    padding: 80px 0 !important;
}

.cta-section h2 {
    color: white;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-cta {
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta.btn-lime {
    background-color: var(--secondary-lime);
    color: var(--primary-green);
    border: none;
}

.btn-cta.btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(87, 225, 64, 0.3);
}

.btn-cta.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 33px;
}

.btn-cta.btn-outline:hover {
    background-color: white;
    color: var(--primary-green);
}

/* Responsive Updates */
@media (max-width: 991px) {
    .mission-text-col,
    .vision-text-col {
        padding-left: 0;
        padding-right: 0;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .hero-icon-box {
        margin-top: 2rem;
    }
}

/* ===== SHOP PAGE STYLES ===== */

/* Shop Hero Banner */
.shop-hero {
    background: linear-gradient(135deg, #004d24 0%, #005a2a 100%);
    color: white;
    padding: 80px 0 !important;
}

.shop-hero h1 {
    color: white;
    font-weight: 700;
}

.shop-hero p {
    opacity: 0.95;
    max-width: 700px;
}

/* Shop Section */
.shop-section {
    background: #ffffff;
}

/* Sidebar Styles */
.shop-sidebar {
    position: sticky;
    top: 20px;
}

.filter-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
}

.filter-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

/* Category Filters */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #666;
    font-size: 0.95rem;
}

.category-item:hover {
    background: var(--light-gray);
}

.category-item input[type="radio"] {
    cursor: pointer;
}

.category-item span {
    flex: 1;
}

.category-item small {
    color: #999;
    font-size: 0.85rem;
}

.category-item.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Price Range Filter */
.price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item,
.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.price-item input[type="checkbox"],
.rating-item input[type="checkbox"] {
    cursor: pointer;
}

.price-item span {
    color: #666;
}

/* Rating Filter */
.rating-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-item {
    flex-direction: column;
    align-items: flex-start;
}

.rating-item .stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin: 5px 0;
}

.rating-item small {
    color: #999;
    font-size: 0.85rem;
}

/* Search Product */
.search-product {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.search-product:focus {
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 0.2rem rgba(87, 225, 64, 0.1);
}

/* Shop Toolbar */
.shop-toolbar {
    background: white;
    padding: 15px 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
}

.results-info p {
    color: #666;
    font-size: 0.95rem;
}

.sort-select {
    width: 200px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #666;
    font-size: 0.95rem;
    background: white;
}

.sort-select:focus {
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 0.2rem rgba(87, 225, 64, 0.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.discount {
    background: #ff6b6b;
    color: white;
}

/* Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn:hover {
    background: var(--secondary-lime);
    color: var(--primary-green);
    transform: scale(1.1);
}

.wishlist-btn i {
    font-size: 18px;
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #003a1a;
}

/* Product Info */
.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--secondary-lime);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-name {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 2.8em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    color: #999;
    font-size: 0.8rem;
}

.product-description {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 12px;
    flex: 1;
    line-height: 1.5;
}

/* Product Footer */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-right: 8px;
}

.add-to-cart-btn {
    background: var(--secondary-lime);
    color: var(--primary-green);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    background: #4fd625;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 225, 64, 0.3);
}

/* Pagination */
.pagination-nav {
    padding-top: 30px;
}

.pagination {
    gap: 8px;
}

.page-link {
    color: var(--primary-green);
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.page-link:hover {
    background: var(--light-gray);
    border-color: var(--secondary-lime);
    color: var(--secondary-lime);
}

.page-item.active .page-link {
    background: var(--secondary-lime);
    border-color: var(--secondary-lime);
    color: var(--primary-green);
}

.page-item.disabled .page-link {
    color: #999;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .shop-sidebar {
        position: static;
        margin-bottom: 40px;
    }

    .filter-card {
        margin-bottom: 15px;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
    }

    .sort-options {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .shop-hero {
        padding: 50px 0 !important;
    }

    .shop-hero h1 {
        font-size: 1.8rem;
    }

    .shop-hero p {
        font-size: 0.95rem;
    }

    .shop-toolbar {
        flex-direction: column;
    }

    .results-info {
        width: 100%;
    }

    .sort-options {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }
}

/* 2. Link Style: Pure White & No Underline */
.footer-section a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
}

/* 3. Hover State: Brand Lime Glow */
.footer-section a:hover {
    color: var(--secondary-lime) !important; /* #57e140 */
    opacity: 1;
    transform: translateX(5px);
}

.footer-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
}

/* Heading Underline */
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-lime);
}

.footer-contact-icon {
    color: var(--secondary-lime) !important;
    width: 25px;
    font-size: 15px;
}

/* Portal Button: High Contrast */
.btn-portal-outline {
    border: 1.5px solid var(--secondary-lime) !important;
    color: var(--secondary-lime) !important;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-portal-outline:hover {
    background: var(--secondary-lime) !important;
    color: var(--primary-green) !important;
}

/* Footer Bottom Polish */
.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin-top: 50px;
}

/* ===== NEWS PAGE STYLES (REDESIGNED) ===== */

/* News Hero Banner */
.news-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
    background: #ffffff;
}

.news-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #004d24 0%, #00663d 50%, #005a2a 100%);
    z-index: -1;
}

.news-hero-content {
    position: relative;
    z-index: 1;
}

.news-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-lime);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.news-hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.news-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
}

.news-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h4 {
    color: var(--secondary-lime);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.news-hero-icon {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.1);
}

/* News Toolbar */
.news-toolbar {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.news-search {
    position: relative;
}

.news-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.news-search-input {
    padding: 12px 16px 12px 45px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.news-search-input:focus {
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 0.2rem rgba(87, 225, 64, 0.1);
}

.news-sort,
.news-category-filter {
    padding: 12px 16px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #666;
    transition: all 0.3s ease;
    background: white;
}

.news-sort:focus,
.news-category-filter:focus {
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 0.2rem rgba(87, 225, 64, 0.1);
}

/* Featured Article */
.featured-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    margin-bottom: 50px;
}

.featured-article:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 15px 50px rgba(0, 77, 36, 0.15);
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
}

@media (max-width: 991px) {
    .featured-wrapper {
        grid-template-columns: 1fr;
    }
}

.featured-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-image-wrapper img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.featured-badge {
    display: inline-block;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
}

.featured-title {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.3;
}

.featured-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.featured-author-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-author .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info small {
    color: #999;
    font-size: 0.8rem;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Article Card Professional */
.article-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.article-card:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 12px 40px rgba(0, 77, 36, 0.1);
    transform: translateY(-8px);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.12);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 77, 36, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.article-card:hover .article-overlay {
    opacity: 1;
}

.article-overlay-btn {
    padding: 12px 28px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-overlay-btn:hover {
    background: white;
    transform: scale(1.05);
}

.article-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 3;
}

.article-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta-small {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.article-category-small {
    background: rgba(87, 225, 64, 0.1);
    color: var(--secondary-lime);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.article-reading-time-small {
    color: #999;
}

.article-heading {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
    flex: 1;
}

.article-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.author-info-small {
    display: flex;
    align-items: center;
}

.author-name {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.read-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-link:hover {
    color: var(--secondary-lime);
    gap: 10px;
}

.read-more-btn {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more-btn:hover {
    color: var(--secondary-lime);
    gap: 12px;
}

/* News Pagination */
.news-pagination {
    padding-top: 30px;
}

.news-pagination .pagination {
    gap: 8px;
}

.news-pagination .page-link {
    color: var(--primary-green);
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-pagination .page-link:hover {
    background: var(--light-gray);
    border-color: var(--secondary-lime);
    color: var(--secondary-lime);
}

.news-pagination .page-item.active .page-link {
    background: var(--secondary-lime);
    border-color: var(--secondary-lime);
    color: var(--primary-green);
}

.news-pagination .page-item.disabled .page-link {
    color: #999;
    cursor: not-allowed;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.widget-title {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.2rem;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--secondary-lime);
    margin-bottom: 20px;
}

.widget-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, rgba(87, 225, 64, 0.12) 0%, rgba(0, 77, 36, 0.08) 100%);
    border: 2px solid rgba(87, 225, 64, 0.2);
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 0.2rem rgba(87, 225, 64, 0.1);
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--secondary-lime) 0%, #4fd625 100%);
    color: var(--primary-green);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(87, 225, 64, 0.3);
}

/* Recent Posts */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    padding-left: 8px;
}

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-gray);
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.12);
}

.recent-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recent-post-title {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.recent-post-date {
    color: #999;
    font-size: 0.8rem;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.category-link:hover {
    background: rgba(87, 225, 64, 0.1);
    color: var(--secondary-lime);
    border-left-color: var(--secondary-lime);
    padding-left: 20px;
}

.category-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 8px 14px;
    background: var(--light-gray);
    color: var(--primary-green);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-link:hover {
    background: transparent;
    color: var(--secondary-lime);
    border-color: var(--secondary-lime);
}

/* News CTA Section */
.news-cta {
    background: linear-gradient(135deg, #004d24 0%, #00663d 50%, #005a2a 100%);
    color: white;
    padding: 100px 0 !important;
    margin-top: 50px;
}

.news-cta h2 {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.news-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.news-cta .btn-cta {
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.news-cta .btn-lime {
    background: var(--secondary-lime);
    color: var(--primary-green);
    border: none;
}

.news-cta .btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(87, 225, 64, 0.4);
}

.news-cta .btn-outline {
    border: 2px solid white;
    color: white;
}

.news-cta .btn-outline:hover {
    background: white;
    color: var(--primary-green);
    border-color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .news-hero-title {
        font-size: 2.5rem;
    }

    .news-hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .featured-content {
        padding: 28px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .news-cta {
        padding: 60px 0 !important;
    }

    .news-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .news-hero {
        padding: 60px 0 !important;
    }

    .news-hero-title {
        font-size: 1.8rem;
    }

    .news-hero-subtitle {
        font-size: 1rem;
    }

    .news-hero-stats {
        flex-direction: row;
        gap: 20px;
        font-size: 0.85rem;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }

    .news-toolbar {
        padding: 16px;
    }

    .featured-wrapper {
        grid-template-columns: 1fr;
    }

    .featured-image-wrapper {
        min-height: 250px;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-title {
        font-size: 1.2rem;
    }

    .featured-author-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .articles-grid {
        gap: 16px;
    }

    .sidebar-widget {
        padding: 20px;
    }
}

/* Featured Article */
.featured-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.featured-article:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.featured-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-article:hover .featured-image-wrapper img {
    transform: scale(1.05);
}

.article-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.featured-content {
    background: white;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-category {
    background: rgba(87, 225, 64, 0.1);
    color: var(--secondary-lime);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.article-reading-time {
    color: #999;
    font-size: 0.9rem;
}

.featured-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.featured-excerpt {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author h6 {
    color: var(--primary-green);
    font-weight: 600;
}

.article-author small {
    color: #999;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.read-more-btn:hover {
    color: var(--secondary-lime);
    border-bottom-color: var(--secondary-lime);
    gap: 12px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Article Card */
.article-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.article-card:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-date {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 8px 15px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 8px 8px 0 0;
}

.article-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta-small {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.article-category-small {
    background: rgba(87, 225, 64, 0.1);
    color: var(--secondary-lime);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.article-reading-time-small {
    color: #999;
}

.article-heading {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}

.article-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.author-name {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
}

.read-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-link:hover {
    color: var(--secondary-lime);
    gap: 10px;
}

/* News Pagination */
.news-pagination {
    padding-top: 30px;
}

.news-pagination .pagination {
    gap: 8px;
}

.news-pagination .page-link {
    color: var(--primary-green);
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-pagination .page-link:hover {
    background: var(--light-gray);
    border-color: var(--secondary-lime);
    color: var(--secondary-lime);
}

.news-pagination .page-item.active .page-link {
    background: var(--secondary-lime);
    border-color: var(--secondary-lime);
    color: var(--primary-green);
}

.news-pagination .page-item.disabled .page-link {
    color: #999;
    cursor: not-allowed;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px;
}

.widget-title {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.widget-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, rgba(87, 225, 64, 0.1) 0%, rgba(0, 77, 36, 0.05) 100%);
    border: 1px solid rgba(87, 225, 64, 0.2);
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-input:focus {
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 0.2rem rgba(87, 225, 64, 0.1);
}

.btn-subscribe {
    background: var(--secondary-lime);
    color: var(--primary-green);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #4fd625;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 225, 64, 0.3);
}

/* Recent Posts */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    padding-left: 8px;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.recent-post-date {
    color: #999;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: rgba(87, 225, 64, 0.1);
    color: var(--secondary-lime);
    padding-left: 20px;
}

.category-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 8px 14px;
    background: var(--light-gray);
    color: var(--primary-green);
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-link:hover {
    background: transparent;
    color: var(--secondary-lime);
    border-color: var(--secondary-lime);
}

/* News CTA Section */
.news-cta {
    background: linear-gradient(135deg, #004d24 0%, #005a2a 100%);
    color: white;
    padding: 80px 0 !important;
}

.news-cta h2 {
    color: white;
    font-weight: 700;
}

.news-cta .btn-cta {
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.news-cta .btn-lime {
    background-color: var(--secondary-lime);
    color: var(--primary-green);
    border: none;
}

.news-cta .btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(87, 225, 64, 0.3);
}

.news-cta .btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 33px;
}

.news-cta .btn-outline:hover {
    background-color: white;
    color: var(--primary-green);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .featured-image-wrapper {
        height: 300px;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .news-hero {
        padding: 50px 0 !important;
    }

    .news-hero h1 {
        font-size: 2.5rem;
    }

    .news-cta {
        padding: 50px 0 !important;
    }

    .news-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .featured-image-wrapper {
        height: 250px;
    }

    .featured-content {
        padding: 20px !important;
    }

    .featured-title {
        font-size: 1.3rem;
    }

    .articles-grid {
        gap: 16px;
    }

    .article-body {
        padding: 16px;
    }
}


/* ===== PROFESSIONAL CORPORATE FAQ PAGE ===== */

.faq-hero-corporate {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-green);
    padding: 70px 0 50px 0;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.faq-hero-corporate h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-green);
}
.faq-hero-corporate p {
    font-size: 1.15rem;
    color: #444;
    max-width: 600px;
    margin-bottom: 0;
}

.faq-section-corporate {
    background: #fff;
    padding: 60px 0 80px 0;
}
.faq-corporate-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.faq-category-sidebar-corporate {
    min-width: 260px;
    background: #f8f9fa;
    border-radius: 14px;
    border: 1px solid #e0e0e0;
    padding: 32px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    position: sticky;
    top: 30px;
}
.faq-category-title-corporate {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.faq-category-list-corporate {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.category-btn-corporate {
    background: none;
    border: none;
    color: #444;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 10px 0 10px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, padding 0.2s;
    cursor: pointer;
}
.category-btn-corporate.active, .category-btn-corporate:hover {
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding-left: 18px;
}

.faq-category-content-corporate {
    flex: 1;
    min-width: 0;
}
.faq-category-section-corporate {
    animation: fadeIn 0.3s ease-in;
}
.faq-category-section-corporate:not(:first-child) {
    margin-top: 40px;
}
.faq-category-header-corporate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--secondary-lime);
    padding-bottom: 8px;
}
.faq-accordion-corporate {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item-corporate {
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item-corporate.open, .faq-item-corporate:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 6px 24px rgba(87,225,64,0.07);
}
.faq-button-corporate {
    width: 100%;
    background: none;
    border: none;
    color: var(--primary-green);
    font-size: 1.08rem;
    font-weight: 700;
    padding: 20px 24px;
    text-align: left;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
    position: relative;
}
.faq-button-corporate .faq-arrow {
    margin-left: 18px;
    font-size: 1.2rem;
    color: #b2b2b2;
    transition: transform 0.3s;
}
.faq-item-corporate.open .faq-button-corporate .faq-arrow {
    color: var(--secondary-lime);
    transform: rotate(180deg);
}
.faq-button-corporate:focus {
    outline: none;
    background: #e9fbe6;
}
.faq-body-corporate {
    padding: 0 24px 20px 24px;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    background: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAQ Contact CTA */
.faq-contact-cta-corporate {
    background: #f8f9fa;
    border-top: 1.5px solid #e0e0e0;
    padding: 50px 0 0 0;
    text-align: center;
    margin-top: 60px;
}
.faq-contact-cta-corporate h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.faq-contact-cta-corporate p {
    color: #444;
    font-size: 1.08rem;
    margin-bottom: 28px;
}
.btn-corporate {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 38px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: inline-block;
}
.btn-corporate:hover {
    background: var(--secondary-lime);
    color: var(--primary-green);
    box-shadow: 0 6px 24px rgba(87,225,64,0.13);
}

/* Responsive Design */
@media (max-width: 991px) {
    .faq-corporate-container {
        flex-direction: column;
        gap: 30px;
    }
    .faq-category-sidebar-corporate {
        position: static;
        width: 100%;
        min-width: 0;
        margin-bottom: 30px;
    }
}
@media (max-width: 576px) {
    .faq-hero-corporate {
        padding: 40px 0 30px 0;
    }
    .faq-hero-corporate h1 {
        font-size: 1.5rem;
    }
    .faq-section-corporate {
        padding: 30px 0 40px 0;
    }
    .faq-category-sidebar-corporate {
        padding: 18px 10px;
    }
    .faq-category-header-corporate {
        font-size: 1.1rem;
        padding-bottom: 4px;
    }
    .faq-button-corporate {
        padding: 14px 12px;
        font-size: 0.98rem;
    }
    .faq-body-corporate {
        padding: 0 12px 14px 12px;
        font-size: 0.95rem;
    }
}

/* --- News Hero Refinement --- */
.news-hero { background-color: var(--primary-green); color: white; padding: 120px 0; position: relative; }
.text-lime { color: var(--secondary-lime); }
.news-hero-stats-grid { display: flex; gap: 20px; margin-top: 40px; }
.stat-glass-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 15px 30px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.news-hero-visual i { font-size: 180px; opacity: 0.15; color: var(--secondary-lime); }

/* --- Toolbar & Filters --- */
.news-toolbar-wrapper { background: #fff; padding: 25px; border-radius: 15px; margin-top: -60px; z-index: 10; position: relative; }
.search-premium { position: relative; }
.search-premium i { position: absolute; left: 15px; top: 15px; color: #aaa; }
.search-premium input { width: 100%; padding: 10px 10px 10px 45px; border: 1px solid #eee; border-radius: 8px; }

/* --- Featured & Standard Cards --- */
.featured-post-card { border: 1px solid #eee; border-radius: 20px; overflow: hidden; transition: 0.4s; }
.featured-post-card:hover { transform: translateY(-10px); border-color: var(--secondary-lime); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.post-img-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.post-content-frame { padding: 40px; background: #fff; }
.post-tag-badge { position: absolute; top: 20px; left: 20px; background: var(--secondary-lime); color: var(--primary-green); font-weight: 800; padding: 5px 15px; border-radius: 5px; font-size: 11px; }

.standard-post-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 15px; overflow: hidden; transition: 0.3s; }
.standard-img-wrapper { height: 200px; overflow: hidden; position: relative; }
.standard-body { padding: 25px; }
.standard-date-badge { position: absolute; bottom: 0; left: 20px; background: var(--secondary-lime); color: var(--primary-green); padding: 5px 15px; font-weight: 800; font-size: 12px; border-radius: 5px 5px 0 0; }

/* --- Sidebar & CTA --- */
.newsletter-box { background: var(--primary-green); color: #fff; padding: 30px; border-radius: 15px; }
.widget-title-premium.dark { color: var(--primary-green); border-bottom: 3px solid var(--secondary-lime); padding-bottom: 10px; margin-bottom: 20px; width: fit-content; }
.category-pills .pill { display: flex; justify-content: space-between; padding: 12px 20px; background: #f8f9fa; margin-bottom: 8px; text-decoration: none; color: var(--primary-green); font-weight: 600; border-radius: 8px; transition: 0.3s; }
.category-pills .pill:hover { background: var(--secondary-lime); padding-left: 25px; }

.btn-lime-large { background: var(--secondary-lime); color: var(--primary-green); padding: 15px 40px; border-radius: 50px; font-weight: 800; text-decoration: none; transition: 0.3s; }
.btn-lime-large:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(87,225,64,0.3); }

/* ===== MODERN FAQ PAGE REDESIGN ===== */

/* FAQ Hero Section */
.faq-hero-modern {
    background: linear-gradient(135deg, var(--primary-green) 0%, #005a2a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-hero-decoration {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(87, 225, 64, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.breadcrumb-faq {
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb-faq a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-faq a:hover {
    color: var(--secondary-lime);
}

.breadcrumb-faq span {
    margin: 0 10px;
    opacity: 0.6;
}

.faq-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.faq-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.faq-search-advanced-modern {
    margin-top: 40px;
}

.faq-search-box-modern {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-box-modern i {
    position: absolute;
    left: 20px;
    top: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    pointer-events: none;
}

.faq-search-input-modern {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.faq-search-input-modern:focus {
    outline: none;
    border-color: var(--secondary-lime);
    background: white;
    box-shadow: 0 0 0 4px rgba(87, 225, 64, 0.2);
}

.faq-search-input-modern::placeholder {
    color: #999;
}

.clear-search-btn-modern {
    position: absolute;
    right: 15px;
    top: 18px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    transition: 0.3s;
}

.clear-search-btn-modern:hover {
    color: var(--primary-green);
}

.min-vh-60 {
    min-height: 60vh;
}

.bg-light-faq {
    background: #fafbfc;
}

.py-6 {
    padding: 60px 0 !important;
}

/* Category Section Header */
.section-header-modern {
    margin-bottom: 40px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Category Cards Grid */
.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-lime);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.category-card-modern:hover::before {
    transform: scaleX(1);
}

.category-card-modern:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 15px 40px rgba(0, 77, 36, 0.08);
    transform: translateY(-5px);
}

.category-icon-modern {
    font-size: 40px;
    color: var(--secondary-lime);
    margin-bottom: 10px;
}

.category-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.category-count-modern {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.category-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 18px;
    color: var(--secondary-lime);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Section */
.faq-section-modern {
    background: white;
    padding: 60px 0;
}

/* Sidebar */
.faq-sidebar-modern-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-sidebar-widget-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-sidebar-widget-modern:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 10px 30px rgba(0, 77, 36, 0.05);
}

.sidebar-widget-title-modern {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-lime);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget-title-modern i {
    color: var(--secondary-lime);
    font-size: 20px;
}

.sidebar-categories-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-category-btn-modern {
    display: block;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 15px;
}

.sidebar-category-btn-modern:hover {
    color: var(--primary-green);
    background: #f8f9fa;
    border-left-color: var(--secondary-lime);
    padding-left: 20px;
}

.sidebar-category-btn-modern.active {
    background: rgba(87, 225, 64, 0.1);
    color: var(--primary-green);
    border-left-color: var(--secondary-lime);
    font-weight: 600;
}

/* Help Widget */
.help-widget-modern {
    background: linear-gradient(135deg, var(--primary-green) 0%, #005a2a 100%);
    color: white;
    border: none;
}

.help-widget-modern:hover {
    border-color: var(--secondary-lime);
}

.help-widget-inner {
    text-align: center;
}

.help-icon-modern {
    font-size: 50px;
    color: var(--secondary-lime);
    margin-bottom: 15px;
    display: block;
}

.help-widget-modern .sidebar-widget-title-modern {
    color: white;
    border-bottom-color: var(--secondary-lime);
    text-align: center;
    justify-content: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.help-widget-modern .sidebar-widget-title-modern i {
    color: var(--secondary-lime);
}

.sidebar-help-text-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-help-contact-modern {
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-help-contact-modern:hover {
    background: #7fff9f;
    transform: translateY(-2px);
}

/* FAQ Category Sections */
.faq-category-section-modern {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-header-modern {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.category-header-icon-modern {
    font-size: 40px;
    color: var(--secondary-lime);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(87, 225, 64, 0.1);
    border-radius: 12px;
}

.faq-category-title-modern {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.category-subtitle-modern {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Accordion Styling */
.faq-accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-modern {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 8px 20px rgba(0, 77, 36, 0.05);
}

.faq-button-modern {
    background: white;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    padding: 20px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-button-modern:not(.collapsed) {
    background: rgba(87, 225, 64, 0.08);
    color: var(--primary-green);
}

.faq-button-modern:hover {
    background: rgba(87, 225, 64, 0.05);
}

.faq-button-modern::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23004d24' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.faq-button-modern.collapsed::after {
    transform: translateY(-50%) rotate(-180deg);
}

.accordion-body {
    padding: 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* CTA Section */
.faq-contact-cta-modern {
    background: linear-gradient(135deg, var(--primary-green) 0%, #005a2a 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.faq-contact-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(87, 225, 64, 0.05);
    border-radius: 50%;
}

.cta-title-modern {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.cta-subtitle-modern {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-modern {
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.cta-btn-modern {
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.cta-btn-modern.btn-primary {
    background: var(--secondary-lime);
    color: var(--primary-green);
}

.cta-btn-modern.btn-primary:hover {
    background: #7fff9f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(87, 225, 64, 0.3);
}

.cta-btn-modern.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-btn-modern.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .faq-hero-title {
        font-size: 2.2rem;
    }

    .faq-hero-subtitle {
        font-size: 1rem;
    }

    .faq-sidebar-modern-sticky {
        position: static;
    }

    .categories-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .cta-title-modern {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .faq-hero-modern {
        padding: 60px 0;
    }

    .faq-hero-title {
        font-size: 2rem;
    }

    .section-title-modern {
        font-size: 1.8rem;
    }

    .categories-grid-modern {
        grid-template-columns: 1fr;
    }

    .category-header-modern {
        flex-direction: column;
        gap: 15px;
    }

    .faq-category-title-modern {
        font-size: 1.6rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .cta-btn-modern {
        width: 100%;
    }

    .breadcrumb-faq {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .faq-hero-title {
        font-size: 1.6rem;
    }

    .faq-hero-subtitle {
        font-size: 0.95rem;
    }

    .faq-search-input-modern {
        font-size: 14px;
        padding: 14px 16px 14px 45px;
    }

    .category-card-modern {
        padding: 20px;
    }

    .faq-category-title-modern {
        font-size: 1.3rem;
    }

    .faq-button-modern {
        padding: 16px;
        font-size: 15px;
    }

    .cta-title-modern {
        font-size: 1.5rem;
    }

    .cta-subtitle-modern {
        font-size: 1rem;
    }
}

/* ===== MODERN NEWS PAGE REDESIGN ===== */

/* Enhanced Hero Section */
.news-hero-modern {
    background: linear-gradient(135deg, var(--primary-green) 0%, #005a2a 100%);
    color: white;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(87, 225, 64, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.news-hero-modern-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-modern {
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-modern a:hover {
    color: var(--secondary-lime);
}

.breadcrumb-modern span {
    margin: 0 10px;
    opacity: 0.6;
}

.hero-badge-modern {
    display: inline-block;
    background: rgba(87, 225, 64, 0.2);
    color: var(--secondary-lime);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(87, 225, 64, 0.4);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-lime), #7fff9f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 550px;
}

.stat-box-modern {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box-modern:hover {
    background: rgba(87, 225, 64, 0.15);
    border-color: rgba(87, 225, 64, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-lime);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.hero-visual-modern {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-card-modern i {
    font-size: 60px;
    color: var(--secondary-lime);
    margin-bottom: 15px;
    display: block;
}

.floating-card-modern h6 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.floating-card-modern p {
    opacity: 0.8;
    font-size: 14px;
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.min-vh-60 {
    min-height: 60vh;
}

/* Modern Main Section */
.bg-light-modern {
    background: #fafbfc;
}

.py-6 {
    padding: 60px 0 !important;
}

.mb-6 {
    margin-bottom: 60px;
}

/* Search & Filter Bar */
.search-filter-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-box-modern {
    position: relative;
}

.search-box-modern i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #999;
    pointer-events: none;
}

.search-input-modern {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.search-input-modern:focus {
    outline: none;
    border-color: var(--secondary-lime);
    background-color: #fafbfc;
    box-shadow: 0 0 0 3px rgba(87, 225, 64, 0.1);
}

.search-input-modern::placeholder {
    color: #aaa;
}

.form-select-modern {
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    height: auto;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004d24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px;
}

.form-select-modern:focus {
    outline: none;
    border-color: var(--secondary-lime);
    box-shadow: 0 0 0 3px rgba(87, 225, 64, 0.1);
}

/* Featured Article */
.featured-article-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
}

.featured-article-modern:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.featured-article-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-article-modern:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 36, 0.2);
    z-index: 1;
}

.featured-article-content {
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-tag {
    display: inline-block;
    background: rgba(87, 225, 64, 0.15);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(87, 225, 64, 0.3);
}

.read-time,
.published-date {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-article-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.featured-article-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    justify-content: space-between;
    flex-wrap: wrap;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    font-size: 16px;
}

.author-title {
    font-size: 13px;
    color: #999;
    margin: 3px 0 0 0;
}

.read-more-btn {
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    background: #50d836;
    transform: translateX(5px);
}

/* Article Cards */
.article-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-lime);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.article-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card-modern:hover .article-card-image img {
    transform: scale(1.08);
}

.card-date-badge {
    position: absolute;
    bottom: 0;
    left: 15px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    padding: 6px 14px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px 6px 0 0;
}

.article-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-block;
    background: rgba(87, 225, 64, 0.15);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
    border: 1px solid rgba(87, 225, 64, 0.3);
}

.article-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.card-read-time {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-lime);
    gap: 8px;
}

/* Pagination */
.pagination-modern {
    margin-top: 50px;
}

.pagination-modern .pagination {
    gap: 8px;
}

.pagination-modern .page-link {
    border: 2px solid #e8e8e8;
    color: var(--primary-green);
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination-modern .page-link:hover:not(.disabled) {
    background: var(--secondary-lime);
    color: var(--primary-green);
    border-color: var(--secondary-lime);
}

.pagination-modern .page-item.active .page-link {
    background: var(--secondary-lime);
    color: var(--primary-green);
    border-color: var(--secondary-lime);
}

.pagination-modern .page-item.disabled .page-link {
    border-color: #e8e8e8;
    color: #aaa;
    cursor: not-allowed;
}

/* Sidebar Widgets */
.news-sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget-modern {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sidebar-widget-modern:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.widget-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-lime);
}

.widget-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-green) 0%, #005a2a 100%);
    color: white;
}

.newsletter-widget .widget-title {
    color: white;
    border-bottom-color: var(--secondary-lime);
}

.newsletter-widget .widget-description {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group-modern {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    background: var(--secondary-lime);
    color: var(--primary-green);
    border: none;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.newsletter-btn:hover {
    background: #7fff9f;
    transform: translateX(2px);
}

.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* Trending Widget */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.trending-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.trending-item:hover {
    padding-left: 10px;
}

.trending-item:last-child {
    border-bottom: none;
}

.trending-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-lime);
    color: var(--primary-green);
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

.trending-content {
    flex: 1;
}

.trending-title {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.trending-date {
    font-size: 12px;
    color: #999;
}

/* Categories Widget */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.category-btn {
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background: var(--secondary-lime);
    border-color: var(--secondary-lime);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.category-btn i {
    font-size: 24px;
    color: var(--primary-green);
    transition: 0.3s;
}

.category-btn:hover i {
    color: var(--primary-green);
}

.category-btn span {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 13px;
}

.category-btn small {
    font-size: 11px;
    color: #999;
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.category-btn:hover small {
    background: rgba(255, 255, 255, 0.5);
    color: var(--primary-green);
}

/* About Widget */
.about-widget {
    border-left: 4px solid var(--secondary-lime);
}

.about-btn {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.about-btn:hover {
    background: var(--secondary-lime);
    color: var(--primary-green);
    transform: translateX(5px);
}

/* CTA Section */
.news-cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #005a2a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.news-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(87, 225, 64, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.cta-btn.btn-primary {
    background: var(--secondary-lime);
    color: var(--primary-green);
}

.cta-btn.btn-primary:hover {
    background: #7fff9f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(87, 225, 64, 0.3);
}

.cta-btn.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-btn.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .featured-article-modern {
        grid-template-columns: 1fr;
    }

    .featured-article-image {
        min-height: 300px;
    }

    .featured-article-content {
        padding: 30px;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .featured-article-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .news-hero-modern {
        padding: 60px 0 80px;
    }

    .hero-visual-modern {
        min-height: 300px;
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-subtitle-modern {
        font-size: 1rem;
    }

    .featured-article-content {
        padding: 25px;
    }

    .featured-article-title {
        font-size: 1.5rem;
    }

    .article-author-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .read-more-btn {
        width: 100%;
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .hero-stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title-modern {
        font-size: 1.7rem;
    }

    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-filter-modern {
        padding: 20px;
    }

    .search-filter-modern .row {
        flex-direction: column;
    }

    .featured-article-modern {
        border-radius: 12px;
    }

    .featured-article-content {
        padding: 20px;
    }

    .featured-article-title {
        font-size: 1.3rem;
    }

    .article-card-title {
        font-size: 1.1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb-modern {
        font-size: 12px;
    }

    .hero-badge-modern {
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* --- Login & Auth Styling --- */
.auth-row {
    min-height: 90vh;
}

.auth-visual-side {
    height: 100%;
    background: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1260') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px;
}

.auth-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0, 77, 36, 0.95) 0%, rgba(87, 225, 64, 0.4) 100%);
}

.auth-visual-content {
    position: relative;
    z-index: 5;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
}

.auth-feature-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-lime);
}

/* Form Styling */
.auth-form-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 40px;
}

.input-group-auth {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-auth i {
    position: absolute;
    left: 15px;
    color: #ccc;
    z-index: 5;
}

.auth-input {
    padding: 12px 15px 12px 45px !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 8px !important;
    font-size: 14px;
    transition: 0.3s;
}

.auth-input:focus {
    border-color: var(--secondary-lime) !important;
    box-shadow: none !important;
    background-color: #fdfdfd;
}

/* Buttons */
.btn-login-submit {
    background-color: var(--primary-green) !important;
    color: white !important;
    padding: 14px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-login-submit:hover {
    background-color: var(--secondary-lime) !important;
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

.btn-outline-register {
    border: 2px solid var(--primary-green) !important;
    color: var(--primary-green) !important;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-outline-register:hover {
    background-color: var(--primary-green) !important;
    color: white !important;
}

@media (max-width: 991px) {
    .auth-form-wrapper { padding: 20px; }
}

/* --- Registration Specifics --- */
.registration-bg {
    background: url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1260') center/cover no-repeat !important;
}

.registration-form-width {
    max-width: 600px !important; /* Wider than login for side-by-side inputs */
}

/* Custom dropdown arrow for auth select */
select.auth-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ccc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

@media (max-width: 768px) {
    .auth-row {
        min-height: auto;
    }
}


/* --- Dashboard Card Components --- */

/* 1. Main Balance Card (Glassmorphism) */
/* --- Fluid Wallet Card Adjustments --- */

.glass-balance-card {
    background: linear-gradient(135deg, #004d24 0%, #002d15 100%) !important;
    border-radius: 24px;
    padding: 30px; /* Reduced slightly to give more internal room */
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
    min-height: 220px; /* Ensures consistent height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Fix for Large Amounts */
.glass-balance-card h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem); /* Fluid typography: shrinks as screen/box gets smaller */
    font-weight: 800;
    margin-bottom: 20px;
    white-space: nowrap; /* Keeps it on one line */
    overflow: hidden;
    text-overflow: ellipsis; /* Adds ... if it absolutely hits the edge */
    word-break: break-all;
}

/* Responsive adjustment for very large amounts on mobile */
@media (max-width: 576px) {
    .glass-balance-card h1 {
        font-size: 1.6rem !important;
    }
    .glass-balance-card {
        padding: 20px;
    }
}

.glass-balance-card::after {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.text-lime {
    color: var(--secondary-lime) !important;
}

/* 2. Quick Action Dock Buttons */
.action-btn {
    background: #fff;
    border: 1px solid #edf2f9;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none !important;
    color: #1a1a1a;
    transition: all 0.3s ease;
    display: block;
    font-weight: 600;
    font-size: 13px;
}

.action-btn:hover {
    background: var(--secondary-lime);
    border-color: var(--secondary-lime);
    color: var(--primary-green);
    transform: translateY(-5px);
}

.action-btn i {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}

/* 3. KPI Stat Widgets */
.stat-widget {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #edf2f9;
    transition: 0.3s;
}

.icon-shape {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* 4. Table & Data Cards */
.table-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

/* 5. Custom Utilities for Dashboard */
.bg-primary-subtle { background-color: rgba(13, 110, 253, 0.1) !important; }
.bg-success-subtle { background-color: rgba(87, 225, 64, 0.1) !important; }
.bg-warning-subtle { background-color: rgba(255, 193, 7, 0.1) !important; }
.bg-info-subtle { background-color: rgba(13, 202, 240, 0.1) !important; }
.bg-danger-subtle { background-color: rgba(220, 53, 69, 0.1) !important; }

.fw-800 { font-weight: 800; }
.bg-white-25 { background-color: rgba(255, 255, 255, 0.25); }

/* --- Wallet Page Specifics --- */

/* Inner Shadow for Progress and Modals */
.shadow-inner {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

/* Modal Styling */
.modal-content {
    background: #ffffff;
}

.modal-header .btn-close {
    background-color: #f8f9fa;
    opacity: 1;
    padding: 10px;
    border-radius: 50%;
    font-size: 10px;
}

/* Financial Inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control-lg {
    font-weight: 700;
    color: var(--primary-green);
    border-radius: 12px;
}

.form-control-lg:focus {
    border-color: var(--secondary-lime);
}

/* Status Icons */
.fa-circle-check { font-size: 18px; }
.fa-clock { font-size: 18px; }

/* ===== PROFESSIONAL CORPORATE FAQ PAGE ===== */

/* FAQ Header */
.faq-header-corporate {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-corporate {
    font-size: 14px;
}

.breadcrumb-corporate .breadcrumb-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb-corporate .breadcrumb-item a:hover {
    color: var(--secondary-lime);
}

.faq-title-corporate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0;
    letter-spacing: -0.5px;
}

.faq-subtitle-corporate {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.faq-search-corporate {
    display: flex;
    align-items: center;
}

.search-box-corporate {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.search-box-corporate i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}

.faq-search-input-corporate {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.faq-search-input-corporate:focus {
    outline: none;
    border-color: var(--secondary-lime);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(87, 225, 64, 0.1);
}

.faq-search-input-corporate::placeholder {
    color: #ccc;
}

/* FAQ Content Section */
.faq-content-corporate {
    background: #fff;
}

/* Sidebar */
.faq-sidebar-corporate {
    padding-bottom: 30px;
}

.sidebar-title-corporate {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categories-nav-corporate {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-btn-corporate {
    background: none;
    border: none;
    padding: 14px 0;
    text-align: left;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
}

.category-btn-corporate i {
    color: var(--secondary-lime);
    font-size: 16px;
    width: 20px;
}

.category-btn-corporate:hover {
    color: var(--primary-green);
    padding-left: 8px;
}

.category-btn-corporate.active {
    color: var(--primary-green);
    font-weight: 700;
    border-bottom-color: var(--secondary-lime);
    border-bottom-width: 2px;
    padding-left: 8px;
}

/* Contact Widget */
.contact-widget-corporate {
    border-top: 2px solid #f0f0f0;
}

.widget-label-corporate {
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.contact-link-corporate {
    display: block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.contact-link-corporate:hover {
    color: var(--secondary-lime);
    padding-left: 4px;
}

.contact-link-corporate i {
    margin-right: 8px;
    color: var(--secondary-lime);
}

/* FAQ Section Styling */
.faq-category-section-corporate {
    margin-bottom: 50px;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.faq-category-title-corporate {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

/* Accordion Styling */
.faq-accordion-corporate {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-corporate {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-corporate:hover {
    border-color: var(--secondary-lime);
    box-shadow: 0 4px 12px rgba(0, 77, 36, 0.06);
}

.faq-button-corporate {
    background: #fff !important;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 15px;
    padding: 18px 20px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border: none !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
}

.faq-button-corporate:not(.collapsed) {
    background: #f8f9fa !important;
    color: var(--primary-green);
}

.faq-button-corporate:hover {
    background: #f8f9fa !important;
    color: var(--primary-green);
}

.faq-button-corporate::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23004d24' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.faq-button-corporate.collapsed::after {
    transform: translateY(-50%) rotate(-180deg);
}

.accordion-body {
    padding: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    background: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-title-corporate {
        font-size: 2rem;
    }

    .faq-search-corporate {
        margin-top: 20px;
    }

    .faq-category-title-corporate {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-header-corporate {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .faq-title-corporate {
        font-size: 1.8rem;
    }

    .faq-subtitle-corporate {
        font-size: 1rem;
    }

    .search-box-corporate {
        max-width: 100%;
    }

    .faq-sidebar-corporate {
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    .categories-nav-corporate {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-btn-corporate {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 12px;
        border-bottom: none;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .category-btn-corporate:hover {
        padding-left: 12px;
    }

    .category-btn-corporate.active {
        border-color: var(--secondary-lime);
        background: #f8f9fa;
    }

    .contact-widget-corporate {
        border-top: none;
    }
}

@media (max-width: 576px) {
    .faq-search-input-corporate {
        font-size: 14px;
        padding: 10px 14px 10px 40px;
    }

    .faq-button-corporate {
        padding: 14px 16px;
        font-size: 14px;
    }

    .accordion-body {
        padding: 16px;
    }

    .faq-category-title-corporate {
        font-size: 1.3rem;
    }

    .categories-nav-corporate {
        grid-template-columns: 1fr;
    }
}