﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #66BB6A;
    --accent-color: #FFC107;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --success: #4CAF50;
    --danger: #dc3545;
    --warning: #FFC107;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
    padding: 2px 0;
}

.top-bar-left a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.top-bar-left i {
    font-size: 11px;
}

.top-bar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-selector {
    color: var(--white);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 13px;
    background-color: transparent;
}

.lang-selector:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-selector.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.flag-icon {
    font-size: 16px;
}

/* Header */
.main-header {
    background-color: var(--white);
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
}

.main-header .container {
    max-width: none;
    width: 100%;
    padding: 0 20px;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 12px 0;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay-content {
    position: relative;
    width: 90%;
    max-width: 600px;
}

.search-form-overlay {
    display: flex;
    background-color: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-form-overlay input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 18px;
    outline: none;
}

.search-form-overlay button {
    padding: 20px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.search-form-overlay button:hover {
    background-color: var(--secondary-color);
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.search-close:hover {
    transform: rotate(90deg);
}

.header-search {
    flex: 1;
    max-width: 500px;
}

.header-search form {
    display: flex;
}

.header-search input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.header-search button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cart-icon,
.user-icon,
.search-icon-header {
    position: relative;
    color: var(--text-color);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px;
}

.cart-icon:hover,
.user-icon:hover,
.search-icon-header:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li>a {
    display: inline-block;
    padding: 12px 10px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    line-height: 1.4;
}

.nav-menu>li>a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: transparent;
}


.header-search-nav {
    padding: 0;
    flex-shrink: 0;
    margin-left: 10px;
}

.search-icon-nav {
    color: var(--text-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 4px;
    cursor: pointer;
    line-height: 1;
}

.search-icon-nav:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: normal;
    font-size: 14px;
    text-transform: none;
}

.dropdown-menu li a:hover {
    background-color: #f8faf6;
    color: var(--primary-color);
    padding-left: 30px;
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
}

/* Hero Banner - Optimized for 1920x600 images (3.2:1 ratio) */
.hero-banner {
    position: relative;
    color: var(--white);
    padding: 0;
    text-align: left;
    overflow: hidden;
    width: 100%;
    /* Height based on 1920x600 ratio = 31.25% of width */
    height: 0;
    padding-bottom: 31.25%;
    /* 600/1920 = 0.3125 */
    min-height: 400px;
    max-height: 600px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 50%, #81C784 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.6) 0%, rgba(102, 187, 106, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-decorations {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.hero-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Slider Navigation */
.hero-slide {
    display: none;
}

.hero-slide.active {
    display: flex;
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

.btn-cart {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px;
    font-size: 14px;
    width: 100%;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cart:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-cart-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    z-index: 3;
}

.btn-cart-icon:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Categories */
.categories-section {
    padding: 80px 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: linear-gradient(135deg, #f8faf6 0%, var(--white) 100%);
    border-radius: 0;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border: 1px solid #e8f0e4;
    position: relative;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 187, 106, 0.2);
    border-color: var(--accent-color);
}

.category-card:hover::after {
    width: 80%;
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 20px;
    border: 2px solid #e8f0e4;
    transition: all 0.3s;
}

.category-card:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.category-icon {
    font-size: 70px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s;
    display: inline-block;
}

.category-card:hover .category-icon {
    color: var(--accent-color);
    transform: scale(1.1) rotate(-5deg);
}

.category-card h3 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s;
}

.category-card:hover h3 {
    color: var(--accent-color);
}

/* Products */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faf6 100%);
}

/* Products Slider Styles */
.products-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.products-slider-container {
    flex: 1;
    overflow: hidden;
}

.products-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.product-slide-item {
    flex: 0 0 calc(25% - 15px);
    /* 4 items per row: (100% - 3*20px gap)/4 = 25% - 15px */
    min-width: calc(25% - 15px);
}

/* Product Card - New Layout */
.product-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-image {
    height: 650px;
    /* TÄƒng cá»±c Ä‘áº¡i lÃªn 650px */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.product-card-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card-image .no-image {
    color: #ccc;
    font-size: 50px;
}

.product-card-content {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 42px;
}

.product-card-title a {
    color: #333;
    text-decoration: none;
}

.product-card-title a:hover {
    color: var(--primary-color);
}

.product-card-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
    min-height: 40px;
}

.product-card-price,
.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 15px;
}

.product-card-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto;
    transition: background 0.3s;
}

.product-card-btn:hover {
    background: #45a049;
}

/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    /* TÄƒng kÃ­ch thÆ°á»›c lÃªn 60px */
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 24px;
    /* TÄƒng font chá»¯ */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slider-prev-btn {
    left: 20px;
    /* Náº±m háº³n bÃªn trong */
}

.slider-next-btn {
    right: 20px;
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.slider-nav-btn:disabled:hover {
    transform: none;
}

/* Responsive Styles for Products Slider */
@media (max-width: 1024px) {
    .product-slide-item {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .product-slide-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .product-slide-image {
        height: 180px;
    }

    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-prev-btn {
        left: 10px;
    }

    .slider-next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .product-slide-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .products-slider-wrapper {
        gap: 10px;
    }

    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* View More Button */
.products-view-more {
    text-align: center;
    margin-top: 40px;
}

.products-view-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.products-view-more .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 0;
}

.gallery-bg {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(102, 187, 106, 0.9)),
        url('assets/images/banner1.jpg') center/cover no-repeat;
    padding: 60px 0;
}

.section-title-white {
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-color);
    border-radius: 5px;
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: -25px;
    z-index: 10;
}

.gallery-section .section-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    background: #2e7d32;
    padding: 15px 60px;
    border-radius: 0;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.gallery-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-slider-container {
    flex: 1;
    overflow: hidden;
}

.gallery-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.gallery-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 350px;
    /* Giáº£m chiá»u cao xuá»‘ng 350px cho cÃ¢n Ä‘á»‘i */
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Äá»•i sang cover Ä‘á»ƒ láº¥p Ä‘áº§y tháº», xÃ³a khoáº£ng thá»«a */
    background: #f0f0f0;
    /* Ná»n nháº¹ cho khoáº£ng trá»‘ng */
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #999;
}

.gallery-placeholder i {
    font-size: 50px;
    margin-bottom: 10px;
}

.gallery-placeholder span {
    font-size: 14px;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    /* TÄƒng kÃ­ch thÆ°á»›c lÃªn 60px */
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    font-size: 24px;
    /* TÄƒng font chá»¯ */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gallery-prev-btn {
    left: 20px;
}

.gallery-next-btn {
    right: 20px;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
    .gallery-slide-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .gallery-slide-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .gallery-card {
        height: 200px;
    }
}

/* Featured Products Layout - Modern Grid */
.products-featured-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    min-height: 600px;
}

/* Product Featured Main - Chiáº¿m 8 cá»™t, 3 hÃ ng */
.product-featured-main {
    grid-column: 1 / 9;
    grid-row: 1 / 4;
}

/* Products Grid - Chiáº¿m 4 cá»™t, 3 hÃ ng */
.products-featured-grid {
    grid-column: 9 / 13;
    grid-row: 1 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
}

/* Sáº¯p xáº¿p cÃ¡c sáº£n pháº©m nhá» */
.products-featured-grid .product-card-compact:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.products-featured-grid .product-card-compact:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.products-featured-grid .product-card-compact:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.products-featured-grid .product-card-compact:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

.products-featured-grid .product-card-compact:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
}

.products-featured-grid .product-card-compact:nth-child(6) {
    grid-column: 1;
    grid-row: 4;
}

.products-featured-grid .product-card-compact:nth-child(7) {
    grid-column: 2;
    grid-row: 4;
}

.product-featured-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 30px;
    z-index: 1;
}

.product-featured-card:hover::before {
    opacity: 1;
}

.product-featured-image {
    position: relative;
    height: 60%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
}

.product-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-featured-card:hover .product-featured-image img {
    transform: scale(1.08);
}

.product-featured-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: var(--white);
    padding: 12px 10px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    z-index: 3;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.product-featured-card:hover .product-featured-badge {
    transform: rotate(0deg) scale(1.05);
}

.badge-text {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.badge-percent {
    font-size: 18px;
    font-weight: bold;
}

.product-featured-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.product-featured-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.product-featured-content h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
}

.product-featured-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-featured-content h3 a:hover {
    color: var(--primary-color);
}

.product-featured-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-radius: 15px;
    padding: 20px;
}

.current-price-large {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.old-price-large {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.product-featured-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.product-featured-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.product-featured-actions .btn {
    flex: 1;
    justify-content: center;
    font-weight: 600;
    border-radius: 25px;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.product-featured-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.product-featured-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Products Grid Compact */
.products-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card-compact {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03) 0%, rgba(255, 193, 7, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.product-card-compact:hover::before {
    opacity: 1;
}

/* Sáº£n pháº©m Ä‘áº§u tiÃªn trong grid - chiáº¿m 2 cá»™t */
.products-featured-grid .product-card-compact:nth-child(1) {
    grid-column: 1 / 3;
}

.products-featured-grid .product-card-compact:nth-child(1) .product-card-image {
    height: 140px;
}

.products-featured-grid .product-card-compact:nth-child(1) .product-card-info h4 {
    font-size: 16px;
}

/* CÃ¡c sáº£n pháº©m khÃ¡c */
.products-featured-grid .product-card-compact:nth-child(n+2) .product-card-image {
    height: 120px;
}

.products-featured-grid .product-card-compact:nth-child(n+2) .product-card-info {
    padding: 12px;
}

.products-featured-grid .product-card-compact:nth-child(n+2) .product-card-info h4 {
    font-size: 13px;
    line-height: 1.3;
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card-compact:hover .product-card-image img {
    transform: scale(1.15);
}

.product-sale-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.product-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-info h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 1;
}

.product-card-info h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.product-card-info h4 a:hover {
    color: var(--primary-color);
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-cart-compact {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-cart-compact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.product-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.product-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    text-transform: uppercase;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-price {
    margin-bottom: 20px;
    text-align: center;
}

.product-price .current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white !important;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
}

.product-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.add-to-cart-form {
    display: none;
}

.current-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

/* Quick Links */
.quick-links {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e0 0%, #d4e8c8 100%);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-link-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 0;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.quick-link-item:hover::before {
    transform: scaleX(1);
}

.quick-link-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.quick-link-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.quick-link-item:hover .quick-link-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.quick-link-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: bold;
}

.quick-link-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 1);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.3);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: none;
    filter: none;
}

.stat-label {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: none;
    opacity: 0.8;
}

/* Services Section - List Layout vá»›i Icon bÃªn trÃ¡i */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #e8f5e0 0%, transparent 100%);
}

.services-list-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-list-item {
    display: flex;
    gap: 30px;
    background: var(--white);
    border-radius: 0;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--primary-color);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.4s;
}

.service-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
}

.service-list-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-list-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 42px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.4s;
    position: relative;
}

.service-list-item:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-list-item:hover .service-icon-wrapper::after {
    opacity: 0.3;
}

.service-list-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-list-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-list-item:hover .service-list-content h3 {
    color: var(--secondary-color);
}

.service-list-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-list-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-list-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.service-list-features i {
    color: var(--primary-color);
    font-size: 12px;
}

/* News */
.news-section,
.news-activities-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.view-all:hover {
    gap: 10px;
}

.section-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.news-slider-wrapper,
.tips-slider-wrapper,
.than-nong-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.news-slider,
.tips-slider,
.than-nong-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.news-slider::-webkit-scrollbar,
.tips-slider::-webkit-scrollbar,
.than-nong-slider::-webkit-scrollbar {
    display: none;
}

.news-slide,
.tip-slide,
.than-nong-slide {
    flex: 0 0 350px;
    min-width: 350px;
}

.news-slide .news-card,
.tip-slide .tip-card,
.than-nong-slide .than-nong-card {
    height: 100%;
}

.news-slide .news-content,
.tip-slide .tip-content,
.than-nong-slide .than-nong-content {
    padding: 20px;
    background: var(--white);
}

.news-slide .news-content h3,
.tip-slide .tip-content h3,
.than-nong-slide .than-nong-content h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.news-slide .news-content h3 a,
.tip-slide .tip-content h3 a,
.than-nong-slide .than-nong-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.news-slide .news-content h3 a:hover,
.tip-slide .tip-content h3 a:hover,
.than-nong-slide .than-nong-content h3 a:hover {
    color: var(--primary-color);
}

/* About Section Home */
.about-section-home {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.about-company-logo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-placeholder h3 {
    font-size: 32px;
    margin-top: 20px;
    text-align: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Sustainable Development Section */
.sustainable-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.sustainable-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustainable-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.sustainable-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.sustainable-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 100px;
}

/* Investor & Media Section */
.investor-media-section {
    padding: 80px 0;
    background-color: var(--white);
}

.investor-media-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.investor-card {
    background: linear-gradient(135deg, #f8faf6 0%, var(--white) 100%);
    padding: 50px 40px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f0e4;
}

.investor-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.investor-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.investor-card h4 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
}

.media-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 40px;
    border-radius: 0;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.media-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.media-logo i {
    font-size: 40px;
    color: var(--white);
}

.media-logo h3 {
    color: var(--white);
    font-size: 24px;
    margin: 0;
}

.media-content h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.media-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Than Nong Section: Carousel Slider vá»›i Video Cards */
.than-nong-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    position: relative;
    overflow: hidden;
}

.than-nong-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.than-nong-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.than-nong-section .section-header {
    position: relative;
    z-index: 1;
}

.than-nong-section .nav-btn {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.than-nong-section .nav-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.video-carousel-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.video-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-carousel-item {
    flex: 0 0 380px;
    min-width: 380px;
}

.video-carousel-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-carousel-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-carousel-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.video-carousel-card:hover .video-carousel-thumb img {
    transform: scale(1.2);
}

.video-carousel-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

.video-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-carousel-card:hover .video-carousel-overlay {
    opacity: 1;
}

.video-carousel-play {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.video-carousel-card:hover .video-carousel-play {
    transform: scale(1.15);
}

.video-carousel-play i {
    margin-left: 5px;
}

.video-carousel-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.video-carousel-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-carousel-info h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    flex: 1;
}

.video-carousel-info h4 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.video-carousel-info h4 a:hover {
    color: var(--accent-color);
}

.video-carousel-meta {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: auto;
}

.video-carousel-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.than-nong-layout {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 30px;
    align-items: stretch;
}

.than-nong-main-card {
    height: 100%;
}

.than-nong-list {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.than-nong-list-item {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
}

.than-nong-list-item:last-child {
    border-bottom: none;
}

.than-nong-list-thumb img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.than-nong-list-content h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.than-nong-list-content h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.than-nong-list-content h4 a:hover {
    color: var(--primary-color);
}

.than-nong-layout {
    display: grid;
    grid-template-columns: 2fr 1.4fr;
    gap: 30px;
    align-items: stretch;
}

.than-nong-main-card {
    height: 100%;
}

.than-nong-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.than-nong-list-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.than-nong-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.than-nong-list-thumb img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.than-nong-list-content h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.than-nong-list-content h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.than-nong-list-content h4 a:hover {
    color: var(--primary-color);
}

.than-nong-card {
    background-color: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.than-nong-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.than-nong-image {
    overflow: hidden;
}

.than-nong-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.than-nong-card:hover .than-nong-image img {
    transform: scale(1.1);
}

.than-nong-content {
    padding: 20px;
    flex: 1;
}

.than-nong-content h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.than-nong-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.than-nong-content h3 a:hover {
    color: var(--primary-color);
}

/* ===== HOME SPECIAL LAYOUTS: News / Tips / Than Nong ===== */

/* News Layout: Magazine/Masonry Style */
.news-activities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0e4 100%);
    position: relative;
}

.news-activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 187, 106, 0.05) 0%, transparent 50%);
}

.news-activities-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.news-activities-section .section-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 30px;
}

.news-activities-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    max-width: 90vw;
    height: 2px;
    background: linear-gradient(to right, #999 0%, #999 35%, #f0c000 35%, #f0c000 65%, #999 65%, #999 100%);
}

.news-magazine-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* News Grid Layout - Simple 3 Column Layout */
.news-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.news-grid-item {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.news-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.news-grid-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-grid-image {
    width: 100%;
    height: 250px;
    /* Gi?m chi?u cao xu?ng 250px cho g?n */
    overflow: hidden;
    position: relative;
}

.news-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill d?y khung ?nh */
    background: #f8f8f8;
    transition: transform 0.3s ease;
}

.news-grid-item:hover .news-grid-image img {
    transform: scale(1.08);
}

.news-grid-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 50px;
}

.news-grid-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-grid-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-color);
}

.news-grid-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-grid-content h3 a:hover {
    color: var(--primary-color);
}

.news-grid-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.news-grid-meta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.news-grid-date {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* News Slider Styles */
.news-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /* Loáº¡i bá» gap á»Ÿ wrapper Ä‘á»ƒ nÃºt báº¥m cÃ³ thá»ƒ Ä‘Ã¨ lÃªn slider */
    padding: 20px 0;
    margin-top: 30px;
}

.news-prev-btn,
.news-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    /* TÄƒng kÃ­ch thÆ°á»›c tá»« 50px lÃªn 60px */
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    font-size: 24px;
    /* TÄƒng font chá»¯ */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-prev-btn {
    left: 20px;
    /* ÄÆ°a háº³n vÃ o bÃªn trong thay vÃ¬ lÃ²i ra ngoÃ i */
}

.news-next-btn {
    right: 20px;
}

@media (max-width: 768px) {

    .news-prev-btn,
    .news-next-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .news-prev-btn {
        left: 10px;
    }

    .news-next-btn {
        right: 10px;
    }
}

.news-prev-btn:hover,
.news-next-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.news-prev-btn:disabled,
.news-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    display: none;
}

.news-slider-container {
    flex: 1;
    overflow: hidden;
}

.news-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.news-slide-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.news-slide-item .news-grid-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    height: 100%;
}

.news-slide-item .news-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.news-slide-item .news-grid-image {
    height: 280px;
    /* TÄƒng chiá»u cao áº£nh tá»« 200px lÃªn 280px */
}

.news-slide-item .news-grid-content {
    padding: 25px;
}

.news-slide-item .news-grid-content h3 {
    font-size: 20px;
    /* TÄƒng font chá»¯ tiÃªu Ä‘á» */
    margin-bottom: 15px;
    min-height: 55px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-slide-item .news-grid-content p {
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-prev-btn,
.news-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.news-prev-btn:hover,
.news-next-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.news-prev-btn:disabled,
.news-next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive News Slider */
@media (max-width: 1024px) {
    .news-slide-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .news-slider-wrapper {
        gap: 10px;
    }

    .news-prev-btn,
    .news-next-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .news-slide-item {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }
}

.news-view-more {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.news-view-more .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.news-view-more .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.news-magazine-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-magazine-item:hover {
    transform: translateY(-5px);
}

/* Layout chÃ­nh xÃ¡c cho 5 items */
.news-magazine-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.news-magazine-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.news-magazine-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.news-magazine-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.news-magazine-item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.news-magazine-card {
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 0;
    overflow: hidden;
}

.news-magazine-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Item Ä‘áº§u tiÃªn - Large Featured */
.news-magazine-item:nth-child(1) .news-magazine-card {
    min-height: 550px;
}

.news-magazine-item:nth-child(1) .news-magazine-image {
    height: 350px;
}

/* Items 2-5 - Smaller cards */
.news-magazine-item:nth-child(n+2) .news-magazine-card {
    min-height: 260px;
}

.news-magazine-item:nth-child(n+2) .news-magazine-image {
    height: 160px;
}

.news-magazine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.news-magazine-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.news-magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-magazine-card:hover .news-magazine-image img {
    transform: scale(1.05);
}

.news-magazine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-magazine-card:hover .news-magazine-overlay {
    opacity: 1;
}

.news-magazine-badge {
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.news-magazine-content {
    padding: 20px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Content cho item Ä‘áº§u tiÃªn */
.news-magazine-item:nth-child(1) .news-magazine-content {
    padding: 25px;
}

.news-magazine-item:nth-child(1) .news-magazine-content h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Content cho items nhá» */
.news-magazine-item:nth-child(n+2) .news-magazine-content {
    padding: 15px;
}

.news-magazine-item:nth-child(n+2) .news-magazine-content h4 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-magazine-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.news-magazine-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 12px;
}

.news-magazine-date i {
    font-size: 11px;
}

.news-magazine-category {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-magazine-content h3 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.news-magazine-content h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.news-magazine-content h5 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.news-magazine-content h3 a,
.news-magazine-content h4 a,
.news-magazine-content h5 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.news-magazine-content h3 a:hover,
.news-magazine-content h4 a:hover,
.news-magazine-content h5 a:hover {
    color: var(--primary-color);
}

.news-magazine-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-magazine-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 15px;
}

.news-magazine-link:hover {
    gap: 12px;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.news-magazine-link i {
    transition: transform 0.3s ease;
}

.news-magazine-link:hover i {
    transform: translateX(3px);
}

.news-magazine-date-small {
    font-size: 11px;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 10px;
}

/* Tips Section: Large Image Cards vá»›i Gradient Overlay */
.tips-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.tips-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.tips-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tip-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    background: var(--white);
}

.tip-image-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tip-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tip-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.tip-image-card:hover .tip-image-wrapper img {
    transform: scale(1.2);
}

.tip-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s;
    mix-blend-mode: overlay;
}

.tip-image-card:hover .tip-image-overlay {
    opacity: 0.6;
}

.tip-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

.tip-image-content {
    padding: 25px;
    position: relative;
    background: var(--white);
}

.tip-image-icon {
    position: absolute;
    top: -30px;
    left: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.tip-image-card:hover .tip-image-icon {
    transform: scale(1.15) rotate(10deg);
}

.tip-image-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tip-image-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tip-image-content h3 a:hover {
    color: var(--primary-color);
}

.tip-image-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.tip-image-date {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tip-image-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.tip-image-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

/* Than Nong as dark band journey slider */
.than-nong-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
}

.than-nong-section .section-header {
    color: #fff;
}

.than-nong-section .section-title {
    color: #fff;
}

.than-nong-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.than-nong-section .nav-btn {
    border-color: #fff;
    color: #fff;
}

.than-nong-section .nav-btn:hover {
    background-color: #fff;
    color: #263238;
}

.than-nong-card {
    background-color: #ffffff;
}

/* Tips Section */
.tips-section {
    padding: 60px 0;
    background-color: var(--white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.tip-image {
    overflow: hidden;
}

.tip-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.tip-card:hover .tip-image img {
    transform: scale(1.1);
}

.tip-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tip-content h3 {
    margin-bottom: 15px;
    flex: 1;
}

.tip-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.tip-content h3 a:hover {
    color: var(--primary-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-category {
    color: var(--accent-color);
    font-size: 12px;
    text-transform: uppercase;
}

.news-content h3 {
    margin: 10px 0;
}

.news-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-main {
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.content-section h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-section ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.tech-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.tech-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Document List */
.document-list {
    margin-top: 30px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.document-item:hover {
    background: #e8f0e4;
}

.document-item i {
    font-size: 32px;
    color: var(--danger);
}

.document-item>div {
    flex: 1;
}

.document-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.document-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

/* Report Tabs */
.report-tabs {
    margin-top: 30px;
}

.tab-headers {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Announcement List */
.announcement-list {
    margin-top: 30px;
}

.announcement-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.announcement-date {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 15px;
}

.announcement-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.announcement-item p {
    margin-bottom: 15px;
}

/* Meeting Info */
.meeting-info {
    margin-top: 30px;
}

.meeting-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.meeting-card h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.meeting-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* Value Chain */
.value-chain {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-chain-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
}

.value-chain-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Farmer Support */
.farmer-support {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.support-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.support-content ul {
    margin-top: 20px;
}

/* Environment Grid */
.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.env-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8f0e4;
}

.env-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.env-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Health Content */
.health-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.health-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.health-text ul {
    margin-top: 20px;
}

/* Social Activities */
.social-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.activity-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.media-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.media-content {
    padding: 20px;
}

.media-content h3 {
    margin: 0;
    font-size: 16px;
}

.media-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.media-content h3 a:hover {
    color: var(--primary-color);
}

.media-slider-wrapper {
    overflow: hidden;
    margin-top: 30px;
}

.media-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.media-slider::-webkit-scrollbar {
    display: none;
}

.media-slide {
    flex: 0 0 300px;
    min-width: 300px;
}

.media-grid .media-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Brand Identity */
.brand-identity {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.brand-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.brand-guidelines {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.brand-guidelines h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.brand-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-showcase {
    width: 100%;
}

.logo-placeholder-large {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
}

.logo-placeholder-large h2 {
    color: var(--white);
    font-size: 32px;
    margin-top: 20px;
    text-align: center;
}

.section-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 100px;
    margin-bottom: 30px;
}

/* Culture Content */
.culture-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.culture-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 100px;
}

.culture-text ul {
    margin-top: 15px;
}

/* Timeline */
.history-timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 40px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.timeline-content {
    flex: 1;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.leader-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.leader-image-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 50px;
}

.leader-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.leader-position {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.partner-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.partner-logo-placeholder {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

.partner-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.partner-item ul {
    margin-top: 15px;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.award-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.award-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.award-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.award-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 15px;
}

/* Units Grid */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.unit-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

.unit-card:hover {
    transform: translateX(5px);
    background: #e8f0e4;
}

.unit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* SAP Content */
.sap-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.result-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.result-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.tech-intro {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

.tech-card ul {
    margin-top: 15px;
    text-align: left;
}

.tech-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Applications */
.applications-content {
    margin-top: 30px;
}

.application-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.application-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.application-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.application-text ul {
    margin-top: 15px;
}

/* Plan Timeline */
.plan-timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 40px;
}

.plan-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
}

.plan-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.plan-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-color);
}

.plan-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.plan-content {
    flex: 1;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.plan-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Tech Partners */
.tech-partners {
    margin-top: 30px;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.partner-logo-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

.partner-logo-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.partner-logo-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Products Page */
.products-page {
    padding: 40px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.products-sidebar {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid #e8f0e4;
}

.products-sidebar h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-sidebar h3 i {
    color: var(--accent-color);
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 14px;
}

.category-list li a i {
    color: var(--primary-color);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.category-list li a:hover {
    background-color: #f8faf6;
    color: var(--primary-color);
    padding-left: 20px;
}

.category-list li a.active {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

.category-list li a.active i {
    color: var(--white);
}

/* Sidebar Category Groups */
.sidebar-category-group {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.sidebar-category-group h4 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-category-group h4 i {
    color: var(--accent-color);
}

.category-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-sublist li {
    margin-bottom: 5px;
}

.category-sublist li a {
    display: block;
    padding: 8px 15px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-sublist li a:hover {
    background-color: #f8faf6;
    color: var(--primary-color);
    padding-left: 20px;
}

.category-sublist li a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Product Detail */
.product-detail-page {
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2d5016;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
    margin: 0 8px;
}

.breadcrumb .current {
    color: #666;
    font-weight: 500;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* Gi?m t? 40px xu?ng 20px d? g?n nhau hon */
    margin-bottom: 40px;
}

.main-image img {
    width: 100%;
    border-radius: 8px;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-sku {
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-price-detail {
    margin-bottom: 20px;
}

.product-price-detail .current-price {
    font-size: 36px;
}

.discount {
    background-color: var(--danger);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 10px;
}

.product-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-meta {
    margin-bottom: 30px;
}

.meta-item {
    margin-bottom: 10px;
}

.in-stock {
    color: var(--success);
    font-weight: bold;
}

.out-of-stock {
    color: var(--danger);
    font-weight: bold;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    cursor: pointer;
    border-radius: 4px;
}

.qty-input {
    width: 80px;
    padding: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.product-tabs {
    margin-top: 40px;
}

.tab-headers {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
}

.tab-pane {
    display: none;
    padding: 20px 0;
    line-height: 1.8;
}

.tab-pane.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
    font-weight: bold;
    width: 200px;
}

/* Cart */
.cart-page {
    padding: 40px 0;
}

.cart-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: left;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.old-price-small {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
}

.cart-totals {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.cart-totals h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.totals-row.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 10px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 15px;
}

/* Checkout */
.checkout-page {
    padding: 40px 0;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-form-wrapper,
.checkout-summary {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkout-form-wrapper h2,
.checkout-summary h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.order-item-info p {
    font-size: 12px;
    color: var(--text-light);
}

.order-item-total {
    font-weight: bold;
    color: var(--primary-color);
}

.order-success {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 20px;
}

.order-success h2 {
    color: var(--success);
    margin-bottom: 15px;
}

.success-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin-left: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.main-footer .container {
    max-width: 98%;
    width: 98%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    font-size: 24px;
}

.footer-column p {
    display: block;
    margin-bottom: 10px;
    text-align: justify;
}

/* Social & Contact info column - Need flex for icons */
.footer-column:last-child p {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.footer-column p i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-color);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .current {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* News Detail */
.news-detail-page {
    padding: 40px 0;
}

.news-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.news-detail-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-meta-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 14px;
}

.news-meta-detail span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content-detail {
    line-height: 1.8;
    font-size: 16px;
}

.news-sidebar {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.news-sidebar h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-news-item:last-child {
    border-bottom: none;
}

.related-news-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.related-news-content h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.related-news-content h4 a {
    color: var(--text-color);
    text-decoration: none;
}

.related-news-content h4 a:hover {
    color: var(--primary-color);
}

.related-news-date {
    font-size: 12px;
    color: var(--text-light);
}

.news-meta {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-light);
}

.news-meta span {
    margin-right: 15px;
}

/* About Page */
.about-page {
    padding: 40px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-content h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.about-content ul {
    margin-left: 30px;
    margin-top: 15px;
}

.about-content ul li {
    margin-bottom: 10px;
}

/* Contact Page */
.contact-page {
    padding: 40px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper,
.contact-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2,
.contact-info h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {

    /* Products Featured Layout */
    .products-featured-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        min-height: auto;
    }

    .product-featured-main {
        grid-column: 1;
        grid-row: 1;
    }

    .products-featured-grid {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .products-featured-grid .product-card-compact:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .products-featured-grid .product-card-compact:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .products-featured-grid .product-card-compact:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .products-featured-grid .product-card-compact:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }

    .products-featured-grid .product-card-compact:nth-child(n+5) {
        display: none;
    }

    .product-featured-content h3 {
        font-size: 24px;
    }

    .current-price-large {
        font-size: 28px;
    }

    /* News Magazine */
    .news-magazine-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
    }

    .news-magazine-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .news-magazine-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .news-magazine-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .news-magazine-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .news-magazine-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .news-magazine-item:nth-child(1) .news-magazine-card {
        min-height: 400px;
    }

    .news-magazine-item:nth-child(1) .news-magazine-image {
        height: 250px;
    }

    .news-magazine-item:nth-child(n+2) .news-magazine-card {
        min-height: 240px;
    }

    .news-magazine-item:nth-child(n+2) .news-magazine-image {
        height: 140px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    /* Only hide nav-menu for old header layout, not header-2rows */
    .main-header:not(.header-2rows) .nav-menu {
        display: none;
    }

    .main-header:not(.header-2rows) .mobile-menu-toggle {
        display: block;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-table {
        font-size: 14px;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .cart-totals {
        width: 100%;
    }

    .news-detail-content {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        position: static;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .quick-link-item {
        padding: 30px 20px;
    }

    .quick-link-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .services-list-layout {
        gap: 25px;
    }

    .service-list-item {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 36px;
        margin: 0 auto;
    }

    .service-list-content h3 {
        text-align: center;
        font-size: 20px;
    }

    .service-list-features {
        justify-content: center;
    }

    .products-featured-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 25px;
        min-height: auto;
    }

    .product-featured-main {
        grid-column: 1;
        grid-row: 1;
    }

    .products-featured-grid {
        grid-column: 1;
        grid-row: 2;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
        gap: 15px;
    }

    .products-featured-grid .product-card-compact:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .products-featured-grid .product-card-compact:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .products-featured-grid .product-card-compact:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .products-featured-grid .product-card-compact:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .products-featured-grid .product-card-compact:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .products-featured-grid .product-card-compact:nth-child(n+6) {
        display: none;
    }

    .product-featured-content {
        padding: 25px;
    }

    .product-featured-content h3 {
        font-size: 22px;
    }

    .current-price-large {
        font-size: 26px;
    }

    .product-featured-actions {
        flex-direction: column;
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-card {
        padding: 25px 15px;
    }

    .category-icon {
        font-size: 50px;
    }

    .news-magazine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }

    .news-magazine-item:nth-child(1),
    .news-magazine-item:nth-child(2),
    .news-magazine-item:nth-child(3),
    .news-magazine-item:nth-child(4),
    .news-magazine-item:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }

    .news-magazine-item:nth-child(1) .news-magazine-card {
        min-height: 350px;
    }

    .news-magazine-item:nth-child(1) .news-magazine-image {
        height: 200px;
    }

    .news-magazine-item:nth-child(n+2) .news-magazine-card {
        min-height: 280px;
    }

    .news-magazine-item:nth-child(n+2) .news-magazine-image {
        height: 160px;
    }

    .news-magazine-item:nth-child(1) .news-magazine-content h3 {
        font-size: 20px;
    }

    .news-magazine-item:nth-child(n+2) .news-magazine-content h4 {
        font-size: 16px;
    }

    .tips-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tip-image-wrapper {
        height: 220px;
    }

    .video-carousel-item {
        flex: 0 0 300px;
        min-width: 300px;
    }

    .video-carousel-thumb {
        height: 200px;
    }

    .news-slide,
    .tip-slide,
    .than-nong-slide {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .sustainable-content-wrapper {
        grid-template-columns: 1fr;
    }

    .investor-media-grid {
        grid-template-columns: 1fr;
    }

    .investor-card,
    .media-card {
        padding: 40px 30px;
    }

    .content-main {
        padding: 30px 20px;
    }

    .tech-grid,
    .info-grid,
    .value-chain,
    .environment-grid,
    .social-activities,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .farmer-support,
    .health-content,
    .brand-identity {
        grid-template-columns: 1fr;
    }

    .header-search-nav {
        display: none;
    }

    .nav-menu>li>a {
        padding: 15px 10px;
        font-size: 12px;
    }
}


/* ===== ABOUT PAGE MODERN STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(76,175,80,0.1)"/></svg>');
    opacity: 0.5;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 120px;
    position: relative;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.8;
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header-center h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background: var(--white);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.core-value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.core-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.core-value-card h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.core-value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: var(--white);
}

.modern-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item-modern:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px var(--white), 0 0 0 12px rgba(76, 175, 80, 0.2);
}

.timeline-dot.active {
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 8px var(--white), 0 0 0 12px rgba(255, 193, 7, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px var(--white), 0 0 0 20px rgba(255, 193, 7, 0.1);
    }

    100% {
        box-shadow: 0 0 0 8px var(--white), 0 0 0 12px rgba(255, 193, 7, 0.2);
    }
}

.timeline-content-modern {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.timeline-year-modern {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content-modern h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-content-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
}

.leadership-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.leader-card-modern {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.leader-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.leader-image-modern {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    margin: 40px auto 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.leader-info {
    padding: 0 30px 40px;
}

.leader-info h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.leader-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.leader-info p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.partner-card-modern {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.partner-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.partner-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.partner-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.partner-header h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.partner-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.partner-products h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.partner-products ul {
    list-style: none;
    padding: 0;
}

.partner-products li {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.partner-products li::before {
    content: 'â€¢';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
}

.awards-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.award-card-modern {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
}

.award-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.award-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.award-card-modern h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.award-card-modern p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.award-year {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-hero-text h1 {
        font-size: 36px;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leadership-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .partners-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .awards-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .timeline-content-modern {
        width: 80%;
    }

    .modern-timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-item-modern {
        padding-left: 60px;
    }

    .timeline-item-modern:nth-child(even) {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero-text h1 {
        font-size: 28px;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }

    .section-header-center h2 {
        font-size: 28px;
    }

    .core-value-card,
    .mission-card,
    .vision-card,
    .partner-card-modern {
        padding: 25px;
    }

    .awards-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-content-modern {
        width: calc(100% - 60px);
    }
}

/* ===== DIGITAL TRANSFORMATION PAGE STYLES ===== */

/* Digital Hero Section */
.digital-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    color: var(--white);
    overflow: hidden;
}

.digital-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(76,175,80,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,193,7,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(76,175,80,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.digital-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.digital-hero-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.digital-hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.digital-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.digital-hero-stats {
    display: flex;
    gap: 40px;
}

.digital-stat {
    text-align: center;
}

.digital-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.digital-stat .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Digital Visual */
.digital-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.digital-circle-main {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--white);
    position: relative;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 25px 80px rgba(76, 175, 80, 0.5);
        transform: scale(1.05);
    }
}

.digital-orbit {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    animation: counter-rotate 30s linear infinite;
}

.orbit-item:nth-child(1) {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item:nth-child(2) {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.orbit-item:nth-child(3) {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-item:nth-child(4) {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* SAP Section */
.sap-section {
    padding: 80px 0;
    background: var(--white);
}

.sap-overview {
    margin-bottom: 60px;
}

.sap-content-main h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.sap-content-main p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sap-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.sap-visual {
    display: flex;
    justify-content: center;
}

.sap-dashboard {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 20px;
    padding: 25px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header i {
    font-size: 20px;
    color: var(--primary-color);
}

.dashboard-header span {
    font-size: 16px;
    font-weight: 600;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dashboard-metric {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
}

.sap-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

/* SAP Benefits */
.sap-benefits h3 {
    text-align: center;
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 50px;
    font-weight: 600;
}

.benefits-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card-modern {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.benefit-card-modern h4 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card-modern p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-metric {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Digital Tech Section */
.digital-tech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
    position: relative;
}

.tech-ecosystem {
    position: relative;
    height: 400px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-center {
    position: absolute;
    z-index: 3;
}

.tech-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
    animation: pulse-core 4s ease-in-out infinite;
}

.tech-core span {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

@keyframes pulse-core {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.tech-layers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-layer {
    position: absolute;
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: rotate-slow 60s linear infinite;
}

.tech-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: counter-rotate-slow 60s linear infinite;
}

.tech-node:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.tech-node i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tech-node span {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.tech-node:nth-child(1) {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.tech-node:nth-child(2) {
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.tech-node:nth-child(3) {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.tech-node:nth-child(4) {
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counter-rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Tech Cards Grid */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-card-modern {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.tech-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tech-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tech-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.tech-header h3 {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.tech-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.tech-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.tech-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Smart Agriculture Section */
.smart-agriculture-section {
    padding: 80px 0;
    background: var(--white);
}

.smart-apps-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.smart-app-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.smart-app-item.reverse {
    direction: rtl;
}

.smart-app-item.reverse>* {
    direction: ltr;
}

.app-visual {
    display: flex;
    justify-content: center;
}

.app-screen {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 20px;
    padding: 25px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-header i {
    font-size: 20px;
    color: var(--primary-color);
}

.screen-header span {
    font-size: 16px;
    font-weight: 600;
}

.monitor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.monitor-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.monitor-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.monitor-value {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
}

.trace-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trace-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.trace-step.active {
    opacity: 1;
}

.trace-step i {
    font-size: 24px;
    color: var(--primary-color);
}

.trace-step span {
    font-size: 12px;
}

.analytics-chart {
    text-align: center;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 100px;
    margin-bottom: 15px;
    gap: 10px;
}

.bar {
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    width: 20px;
    border-radius: 3px 3px 0 0;
    animation: grow-bar 2s ease-out;
}

@keyframes grow-bar {
    from {
        height: 0;
    }

    to {
        height: var(--height, 50%);
    }
}

.chart-label {
    font-size: 14px;
    opacity: 0.8;
}

.app-content h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.app-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

.app-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-point i {
    color: var(--primary-color);
    font-size: 16px;
}

.benefit-point span {
    color: var(--text-color);
    font-weight: 500;
}

/* Digital Roadmap Section */
.digital-roadmap-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.roadmap-item {
    position: relative;
    display: flex;
    align-items: center;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.roadmap-item.completed .roadmap-dot {
    background: var(--primary-color);
}

.roadmap-item.active .roadmap-dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
    animation: pulse-roadmap 2s infinite;
}

@keyframes pulse-roadmap {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.roadmap-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.roadmap-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.roadmap-content h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.roadmap-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.roadmap-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.roadmap-progress span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Tech Partners Section */
.tech-partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.partner-card-tech {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.partner-card-tech:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.partner-logo-tech {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.partner-card-tech h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.partner-card-tech p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.partner-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tech-tag {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Responsive Digital Transformation */
@media (max-width: 1024px) {
    .digital-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .digital-hero-text h1 {
        font-size: 40px;
    }

    .sap-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .sap-dashboard {
        max-width: 400px;
        margin: 0 auto;
    }

    .dashboard-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .sap-features {
        max-width: 500px;
        margin: 0 auto;
    }

    .benefits-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .smart-app-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .smart-app-item.reverse {
        direction: ltr;
    }

    .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .roadmap-content {
        width: 80%;
    }

    .roadmap-track {
        left: 20px;
    }

    .roadmap-dot {
        left: 20px;
    }

    .roadmap-item {
        padding-left: 60px;
    }

    .roadmap-item:nth-child(even) {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .digital-hero {
        padding: 80px 0 60px;
    }

    .digital-hero-text h1 {
        font-size: 32px;
    }

    .digital-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .digital-circle-main {
        width: 150px;
        height: 150px;
        font-size: 40px;
    }

    .digital-orbit {
        width: 250px;
        height: 250px;
    }

    .orbit-item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .sap-content-main h3 {
        font-size: 24px;
    }

    .sap-content-main p {
        margin-bottom: 30px;
    }

    .sap-layout-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sap-dashboard {
        padding: 20px;
        max-width: 100%;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dashboard-metric {
        padding: 12px;
    }

    .feature-item {
        padding: 12px;
        gap: 10px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partners-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .roadmap-content {
        width: calc(100% - 60px);
    }

    .tech-ecosystem {
        height: 300px;
    }

    .tech-layer {
        width: 200px;
        height: 200px;
    }

    .tech-core {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
}

/* ===== INVESTOR RELATIONS PAGE STYLES ===== */

/* Investor Hero Section */
.investor-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    color: var(--white);
    overflow: hidden;
}

.investor-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float-bg 25s ease-in-out infinite;
}

@keyframes float-bg {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.investor-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.investor-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.investor-hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.investor-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.investor-hero-stats {
    display: flex;
    gap: 40px;
}

.investor-stat {
    text-align: center;
}

.investor-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 5px;
}

.investor-stat .stat-label {
    font-size: 14px;
    color: var(--white);
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Investor Chart Visual */
.investor-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.investor-chart {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.chart-container {
    text-align: center;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 20px;
    height: 200px;
    margin-bottom: 20px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8));
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chart-bar[data-value="85"] {
    height: 85%;
}

.chart-bar[data-value="92"] {
    height: 92%;
}

.chart-bar[data-value="100"] {
    height: 100%;
}

.chart-bar[data-value="110"] {
    height: 110%;
}

.chart-bar:hover {
    background: linear-gradient(to top, var(--accent-color), #fbbf24);
    transform: scale(1.05);
}

.bar-value {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

/* Company Overview Section */
.company-overview-section {
    padding: 80px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.overview-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.overview-card h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.overview-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
}

.highlight-number {
    font-size: 28px;
    font-weight: bold;
    color: #3b82f6;
}

.highlight-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.document-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 25px;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.document-content {
    flex: 1;
}

.document-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.document-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.document-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.doc-size,
.doc-type {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Reports Section */
.reports-section {
    padding: 80px 0;
    background: var(--white);
}

.reports-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-color: #3b82f6;
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    border-color: #3b82f6;
    color: #3b82f6;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.report-card {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.report-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.report-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.report-badge.annual {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.report-badge.quarterly {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.report-badge.industry {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.report-card h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.report-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.report-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #3b82f6;
}

.report-actions {
    display: flex;
    gap: 12px;
}

.btn-primary,
.btn-outline {
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: var(--white);
    border: none;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline:hover {
    background: #3b82f6;
    color: var(--white);
}

/* Announcements Section */
.announcements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.announcements-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.announcements-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #06b6d4);
}

.announcement-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.announcement-item::before {
    content: '';
    position: absolute;
    left: 71px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.announcement-date {
    flex-shrink: 0;
    text-align: center;
    width: 80px;
}

.date-day {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #3b82f6;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.date-year {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.announcement-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: all 0.3s ease;
}

.announcement-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.announcement-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.announcement-badge.important {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.announcement-badge.meeting {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.announcement-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.announcement-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.announcement-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.announcement-link:hover {
    gap: 12px;
    color: #1e40af;
}

/* Meeting Section */
.meeting-section {
    padding: 80px 0;
    background: var(--white);
}

.meeting-card-large {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.meeting-visual {
    text-align: center;
}

.meeting-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.meeting-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
    background: rgba(59, 130, 246, 0.05);
    padding: 15px;
    border-radius: 15px;
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.meeting-content h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.meeting-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

.meeting-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 15px;
}

.detail-item i {
    color: #3b82f6;
    font-size: 18px;
    width: 20px;
}

.detail-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.detail-value {
    display: block;
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.meeting-actions {
    display: flex;
    gap: 15px;
}

.btn-primary-large,
.btn-outline-large {
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-primary-large {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: var(--white);
    border: none;
}

.btn-outline-large {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-outline-large:hover {
    background: #3b82f6;
    color: var(--white);
}

/* Responsive Investor Relations */
@media (max-width: 1024px) {
    .investor-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .investor-hero-text h1 {
        font-size: 40px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reports-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .meeting-card-large {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }

    .tab-navigation {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .investor-hero {
        padding: 80px 0 60px;
    }

    .investor-hero-text h1 {
        font-size: 32px;
    }

    .investor-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .chart-bars {
        gap: 15px;
    }

    .chart-bar {
        width: 30px;
    }

    .overview-card {
        padding: 25px;
    }

    .document-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .announcements-timeline::before {
        left: 20px;
    }

    .announcement-item::before {
        left: 11px;
    }

    .announcement-item {
        gap: 20px;
        padding-left: 50px;
    }

    .announcement-date {
        position: absolute;
        left: -40px;
        top: 0;
        width: 60px;
    }

    .meeting-card-large {
        padding: 25px;
    }

    .meeting-actions {
        flex-direction: column;
    }

    .meeting-countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
}

/* Sustainability Page Styles */

/* Sustainability Hero Section */
.sustainability-hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 50%, #81c784 100%);
    color: var(--white);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.sustainability-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.sustainability-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sustainability-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.sustainability-hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.sustainability-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--white);
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.sustainability-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.sustainability-stat {
    text-align: center;
}

.sustainability-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #81c784;
    margin-bottom: 8px;
}

.sustainability-stat .stat-label {
    font-size: 14px;
    color: var(--white);
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Sustainability Circle Visual */
.sustainability-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sustainability Grid - New Layout */
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.sustainability-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.sustainability-card.main {
    grid-column: 2;
    grid-row: 1 / 3;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    min-height: auto;
}

.sustainability-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sustainability-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 20px;
}

.sustainability-card.main .card-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4CAF50, #81c784);
}

.sustainability-card h3,
.sustainability-card h4 {
    color: var(--white);
    margin: 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sustainability-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.sustainability-card h4 {
    font-size: 14px;
}

.sustainability-card.main p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* SDG Goals Section */
.sdg-goals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sdg-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sdg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #81c784);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sdg-card:hover::before {
    transform: scaleX(1);
}

.sdg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #4CAF50;
}

.sdg-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #81c784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.sdg-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 700;
}

.sdg-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sdg-progress {
    position: relative;
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81c784);
    border-radius: 4px;
    transition: width 2s ease;
    width: 0;
}

.progress-bar[data-progress="85"] {
    width: 85%;
}

.progress-bar[data-progress="78"] {
    width: 78%;
}

.progress-bar[data-progress="72"] {
    width: 72%;
}

.progress-bar[data-progress="80"] {
    width: 80%;
}

.progress-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Value Chain Section */
.value-chain-section {
    padding: 80px 0;
    background: var(--white);
}

.value-chain-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.chain-item {
    position: relative;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #e8f0e4;
    transition: all 0.3s ease;
}

.chain-item:hover {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
    z-index: 2;
}

.chain-item:hover .chain-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.chain-item:hover .chain-features li {
    color: rgba(255, 255, 255, 0.9);
}

.chain-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.chain-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.chain-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.chain-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chain-features li {
    font-size: 13px;
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.chain-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.chain-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.chain-item:last-child .chain-arrow {
    display: none;
}

/* Environmental Impact Section */
.environmental-impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.environmental-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.impact-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.2), rgba(76, 175, 80, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.impact-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.impact-number {
    font-size: 48px;
    font-weight: bold;
    color: #81c784;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.impact-chart {
    height: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.chart-line {
    height: 100%;
    background: linear-gradient(90deg, #81c784, #4CAF50);
    border-radius: 20px;
    position: relative;
    animation: chartGrow 2s ease-out;
}

.chart-line[data-trend="down"] {
    background: linear-gradient(90deg, #81c784, #66BB6A);
}

.chart-line[data-trend="up"] {
    background: linear-gradient(90deg, #4CAF50, #81c784);
}

@keyframes chartGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Farmer Partnership Section */
.farmer-partnership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.partnership-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-programs {
    margin: 30px 0;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.program-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.program-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.partnership-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8f0e4;
}

.partnership-stats .stat-item {
    text-align: center;
}

.partnership-stats .stat-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.partnership-stats .stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Farmer Network Visual */
.farmer-network {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    z-index: 3;
}

.network-center i {
    font-size: 32px;
    margin-bottom: 8px;
}

.network-center span {
    font-size: 14px;
    text-transform: uppercase;
}

.network-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.network-node:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

.network-node i {
    font-size: 20px;
    margin-bottom: 4px;
}

.network-node[data-position="1"] {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.network-node[data-position="2"] {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.network-node[data-position="3"] {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.network-node[data-position="4"] {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.network-connection {
    position: absolute;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: 1;
}

.network-connection[data-connect="1"] {
    top: 80px;
    left: 50%;
    width: 2px;
    height: 80px;
    transform: translateX(-50%);
}

.network-connection[data-connect="2"] {
    top: 50%;
    right: 80px;
    width: 80px;
    height: 2px;
    transform: translateY(-50%);
}

.network-connection[data-connect="3"] {
    bottom: 80px;
    left: 50%;
    width: 2px;
    height: 80px;
    transform: translateX(-50%);
}

.network-connection[data-connect="4"] {
    top: 50%;
    left: 80px;
    width: 80px;
    height: 2px;
    transform: translateY(-50%);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Innovation Section */
.innovation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="1" fill="rgba(76,175,80,0.2)"/></svg>');
    opacity: 0.5;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.innovation-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.innovation-image {
    height: 200px;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tech-visualization {
    position: relative;
    z-index: 2;
}

.tech-visualization i {
    font-size: 64px;
    color: var(--white);
    animation: techFloat 3s ease-in-out infinite;
}

.tech-waves,
.tech-circuits,
.tech-helix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: techSpin 8s linear infinite;
}

.tech-waves::before,
.tech-circuits::before,
.tech-helix::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: techSpin 6s linear infinite reverse;
}

@keyframes techFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes techSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.innovation-content {
    padding: 30px;
}

.innovation-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}

.innovation-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.innovation-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.innovation-features li {
    font-size: 13px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-features li:last-child {
    border-bottom: none;
}

.innovation-features li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Social Impact Section */
.social-impact-section {
    padding: 80px 0;
    background: var(--white);
}

.social-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-category {
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.impact-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-category:hover::before {
    transform: scaleX(1);
}

.impact-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-header {
    margin-bottom: 25px;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.impact-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-header h3 {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.impact-item .impact-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.impact-item .impact-label {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

/* Future Vision Section */
.future-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.future-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.vision-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vision-goals {
    margin: 30px 0;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.goal-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #81c784, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(129, 199, 132, 0.4);
}

.goal-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.goal-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.vision-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary-large,
.btn-outline-large {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #4CAF50, #81c784);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-outline-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-large:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Future Timeline Visual */
.future-timeline {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #81c784, #4CAF50);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-point {
    position: relative;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-point.active {
    background: linear-gradient(135deg, #4CAF50, #81c784);
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    transform: scale(1.1);
}

.timeline-point:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.point-year {
    font-size: 20px;
    margin-bottom: 5px;
}

.point-label {
    font-size: 12px;
    text-align: center;
    opacity: 0.9;
}

/* Responsive Sustainability */
@media (max-width: 1024px) {
    .sustainability-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .sustainability-hero-text h1 {
        font-size: 40px;
    }

    .sustainability-grid {
        max-width: 350px;
    }

    .sustainability-card {
        padding: 15px;
        min-height: 80px;
    }

    .sustainability-card .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .sustainability-card.main .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .sdg-grid {
        grid-template-columns: 1fr;
    }

    .value-chain-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .impact-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }

    .partnership-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
    }

    .social-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sustainability-hero {
        padding: 80px 0 60px;
    }

    .sustainability-hero-text h1 {
        font-size: 32px;
    }

    .sustainability-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .sustainability-grid {
        max-width: 300px;
        gap: 10px;
    }

    .sustainability-card {
        padding: 12px;
        min-height: 70px;
    }

    .sustainability-card .card-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .sustainability-card.main .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .sustainability-card h3 {
        font-size: 16px;
    }

    .sustainability-card h4 {
        font-size: 12px;
    }

    .sustainability-card.main p {
        font-size: 12px;
    }

    .value-chain-flow {
        grid-template-columns: 1fr;
    }

    .chain-arrow {
        display: none;
    }

    .impact-dashboard {
        grid-template-columns: 1fr;
    }

    .partnership-stats {
        flex-direction: column;
        gap: 20px;
    }

    .social-impact-grid {
        grid-template-columns: 1fr;
    }

    .vision-cta {
        flex-direction: column;
        align-items: center;
    }
}

.future-timeline {
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    padding: 20px;
}

.timeline-line {
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
}

.timeline-point {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}
}

/* Fix text visibility in environmental impact section */
.environmental-impact-section .section-header-center .section-label {
    color: #81c784 !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.environmental-impact-section .section-header-center h2 {
    color: var(--white) !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.environmental-impact-section .section-header-center p {
    color: var(--white) !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Fix text visibility in future vision section */
.future-vision-section .section-header-center .section-label {
    color: #81c784 !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.future-vision-section .section-header-center h2 {
    color: var(--white) !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.future-vision-section .section-header-center p {
    color: var(--white) !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Fix text visibility in innovation section */
.innovation-section .section-header-center .section-label {
    color: #81c784 !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.innovation-section .section-header-center h2 {
    color: var(--white) !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.innovation-section .section-header-center p {
    color: var(--white) !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2) !important;
}

/* Media Page Styles */

/* Media Hero Section */
.media-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #4a4a4a 100%);
    color: var(--white);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.media-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.media-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.media-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.media-hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.media-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.media-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.media-stat {
    text-align: center;
}

.media-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 8px;
}

.media-stat .stat-label {
    font-size: 14px;
    color: var(--white);
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Media Showcase Visual */
.media-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-showcase {
    position: relative;
    width: 400px;
    height: 300px;
}

.showcase-item {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.showcase-item.main {
    width: 250px;
    height: 180px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.showcase-item.secondary {
    width: 120px;
    height: 80px;
    z-index: 2;
}

.showcase-item.secondary:first-of-type {
    bottom: 20px;
    left: 0;
}

.showcase-item.secondary:last-of-type {
    bottom: 20px;
    right: 0;
}

.media-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
}

.media-frame i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #FFC107;
}

.showcase-item.secondary .media-frame i {
    font-size: 20px;
    margin-bottom: 5px;
}

.media-type {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-item.secondary .media-type {
    font-size: 10px;
}

.showcase-item:hover {
    transform: translateX(-50%) scale(1.05);
}

.showcase-item.secondary:hover {
    transform: scale(1.1);
}

/* Media Categories Section */
.media-categories-section {
    padding: 80px 0 40px;
    background: var(--white);
}

.media-category-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.media-category-tabs .tab-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.media-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.05);
}

.media-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.media-tab-btn i {
    font-size: 16px;
}

/* Featured Media Section */
.featured-media-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.featured-media-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    width: 100%;
}

.featured-media-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
}

.featured-media-item:nth-child(2) {
    grid-column: 4 / 6;
    grid-row: 1 / 2;
}

.featured-media-item:nth-child(3) {
    grid-column: 6 / 7;
    grid-row: 1 / 2;
}

.featured-media-item:nth-child(4) {
    grid-column: 4 / 6;
    grid-row: 2 / 3;
}

.featured-media-item:nth-child(5) {
    grid-column: 6 / 7;
    grid-row: 2 / 3;
}

.featured-media-item:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.featured-media-item:nth-child(7) {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

.featured-media-item:nth-child(8) {
    grid-column: 5 / 7;
    grid-row: 3 / 4;
}

.media-card-modern {
    height: 100%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.media-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-image-modern {
    position: relative;
    height: 65%;
    overflow: hidden;
}

.media-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card-modern:hover .media-image-modern img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card-modern:hover .media-overlay {
    opacity: 1;
}

.media-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.media-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-content-modern {
    padding: 20px;
    height: 40%;
    display: flex;
    flex-direction: column;
}

.featured-media-item.large .media-content-modern {
    height: 30%;
    padding: 25px;
}

.media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.media-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.media-date {
    font-size: 12px;
    color: var(--text-light);
}

.media-content-modern h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    flex: 1;
}

.featured-media-item.large .media-content-modern h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.media-content-modern h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.media-content-modern h3 a:hover {
    color: var(--primary-color);
}

.media-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin-top: auto;
}

/* Programs Section - New Layout */
.programs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.program-section-wrapper {
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.program-section-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.program-section-wrapper:last-child {
    margin-bottom: 0;
}

.program-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e8f0e4;
}

.program-section-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.program-section-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
    position: relative;
}

.program-section-icon.secondary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.program-section-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.program-section-icon.secondary::before {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

.program-section-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 700;
}

.program-section-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-section-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.program-section-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    background: #f8faf6;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.program-section-meta i {
    color: var(--primary-color);
    font-size: 12px;
}

.program-section-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-program-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-program-main.secondary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-program-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-program-main.secondary:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-program-play {
    width: 60px;
    height: 60px;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-program-play.secondary {
    background: rgba(255, 107, 53, 0.1);
    border-color: #FF6B35;
    color: #FF6B35;
}

.btn-program-play:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.btn-program-play.secondary:hover {
    background: #FF6B35;
    color: var(--white);
}

/* Episodes Grid */
.program-episodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.episode-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.episode-card.latest {
    border-color: #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.episode-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.episode-card:hover .episode-image img {
    transform: scale(1.1);
}

.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.episode-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.episode-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.episode-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.episode-content {
    padding: 20px;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.episode-number {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.episode-date {
    font-size: 12px;
    color: var(--text-light);
}

.episode-content h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.episode-content h4 a:hover {
    color: var(--primary-color);
}

.episode-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e8f0e4;
}

.episode-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.episode-stats i {
    color: var(--primary-color);
}

/* Responsive Programs */
@media (max-width: 1024px) {
    .program-episodes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .program-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .program-section-actions {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .program-episodes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .program-section-wrapper {
        padding: 25px;
        margin-bottom: 50px;
    }

    .program-section-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .program-section-content h3 {
        font-size: 24px;
    }

    .program-section-meta {
        justify-content: center;
        gap: 15px;
    }

    .episode-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .program-episodes-grid {
        grid-template-columns: 1fr;
    }

    .program-section-wrapper {
        padding: 20px;
    }

    .program-section-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.program-category {
    position: relative;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.program-title h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.program-title p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.program-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.program-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.program-slider::-webkit-scrollbar {
    display: none;
}

.program-slide {
    flex: 0 0 300px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover .program-overlay {
    opacity: 1;
}

.program-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.program-content {
    padding: 20px;
}

.program-content h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.program-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.program-content h4 a:hover {
    color: var(--primary-color);
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.program-duration {
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.slider-btn.prev {
    margin-left: -25px;
}

.slider-btn.next {
    margin-right: -25px;
}

/* Knowledge Hub Section */
.knowledge-hub-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.knowledge-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.knowledge-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.knowledge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.knowledge-card:hover .knowledge-image img {
    transform: scale(1.1);
}

.knowledge-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.knowledge-type {
    background: rgba(255, 193, 7, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.knowledge-content {
    padding: 25px;
}

.knowledge-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.knowledge-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.knowledge-level {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.knowledge-content h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.knowledge-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.knowledge-content h3 a:hover {
    color: var(--primary-color);
}

.knowledge-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.knowledge-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.knowledge-date {
    font-size: 12px;
    color: var(--text-light);
}

.knowledge-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.knowledge-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Brand Identity Section */
.brand-identity-section {
    padding: 80px 0;
    background: var(--white);
}

.brand-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-elements {
    margin: 30px 0;
}

.brand-element {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.element-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.element-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 700;
}

.element-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.color-palette {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.color-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-item:hover {
    transform: scale(1.1);
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

/* Brand Visual */
.brand-showcase {
    background: linear-gradient(135deg, #f8faf6 0%, #e8f0e4 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.logo-display {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.logo-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-icon-large {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.logo-icon-large i:first-child {
    position: absolute;
    font-size: 40px;
    color: #ffd700;
    z-index: 2;
}

.logo-icon-large i:last-child {
    position: absolute;
    font-size: 30px;
    color: #ffd700;
    z-index: 1;
    bottom: 10px;
}

.logo-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.logo-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.logo-variations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.logo-variant {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-variant:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.variant-preview {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Gallery Section */
.media-gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.05);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 15px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.gallery-load-more {
    text-align: center;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.lightbox-image {
    max-width: 800px;
    max-height: 600px;
}

.lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-info {
    padding: 25px;
    background: var(--white);
}

.lightbox-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.lightbox-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Media */
@media (max-width: 1024px) {
    .media-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .media-hero-text h1 {
        font-size: 40px;
    }

    .featured-media-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .featured-media-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .brand-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .media-hero {
        padding: 80px 0 60px;
    }

    .media-hero-text h1 {
        font-size: 32px;
    }

    .media-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .media-showcase {
        width: 300px;
        height: 200px;
    }

    .showcase-item.main {
        width: 200px;
        height: 120px;
    }

    .showcase-item.secondary {
        width: 80px;
        height: 60px;
    }

    .media-category-tabs .tab-navigation {
        flex-direction: column;
        align-items: center;
    }

    .featured-media-grid {
        grid-template-columns: 1fr;
    }

    .program-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .program-slide {
        flex: 0 0 280px;
    }

    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .brand-element {
        flex-direction: column;
        text-align: center;
    }

    .logo-main {
        flex-direction: column;
        gap: 15px;
    }

    .logo-variations {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }
}

/* Fix Media Layout Issues */
.media-content-modern {
    padding: 15px !important;
    height: 35% !important;
    display: flex !important;
    flex-direction: column !important;
}

.media-content-modern h3 {
    font-size: 14px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    flex: 1 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* First item (large) gets more space */
.featured-media-item:nth-child(1) .media-content-modern {
    height: 30% !important;
    padding: 20px !important;
}

.featured-media-item:nth-child(1) .media-content-modern h3 {
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    -webkit-line-clamp: 3 !important;
}

.featured-media-item:nth-child(1) .media-image-modern {
    height: 70% !important;
}

/* Remove max-width constraint */
.featured-media-grid {
    max-width: none !important;
    margin: 0 !important;
}

/* Fix responsive layout */
@media (max-width: 1024px) {
    .featured-media-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-rows: 200px !important;
    }

    .featured-media-item:nth-child(1) {
        grid-column: 1 / 3 !important;
        grid-row: 1 / 3 !important;
    }

    .featured-media-item:nth-child(2) {
        grid-column: 3 / 4 !important;
        grid-row: 1 / 2 !important;
    }

    .featured-media-item:nth-child(3) {
        grid-column: 4 / 5 !important;
        grid-row: 1 / 2 !important;
    }

    .featured-media-item:nth-child(4) {
        grid-column: 3 / 4 !important;
        grid-row: 2 / 3 !important;
    }

    .featured-media-item:nth-child(5) {
        grid-column: 4 / 5 !important;
        grid-row: 2 / 3 !important;
    }

    .featured-media-item:nth-child(6) {
        grid-column: 1 / 3 !important;
        grid-row: 3 / 4 !important;
    }

    .featured-media-item:nth-child(7) {
        grid-column: 3 / 5 !important;
        grid-row: 3 / 4 !important;
    }

    .featured-media-item:nth-child(8) {
        grid-column: 1 / 5 !important;
        grid-row: 4 / 5 !important;
    }
}

@media (max-width: 768px) {
    .featured-media-grid {
        grid-template-columns: 1fr 1fr !important;
        grid-auto-rows: 200px !important;
    }

    .featured-media-item:nth-child(1) {
        grid-column: 1 / 3 !important;
        grid-row: 1 / 2 !important;
    }

    .featured-media-item:nth-child(n+2) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* Fix Gallery Grid Layout */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    grid-auto-rows: 200px !important;
    gap: 15px !important;
    margin-bottom: 40px !important;
}

/* Fix Programs Layout for Mobile */
@media (max-width: 768px) {
    .programs-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Prevent Horizontal Overflow */
html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

* {
    max-width: 100% !important;
}

.container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Fix specific sections that might cause overflow */
.media-hero-content,
.featured-media-grid,
.programs-layout,
.knowledge-grid,
.brand-layout,
.gallery-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix grid items */
.featured-media-item,
.program-category,
.knowledge-card,
.gallery-item {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix sliders */
.program-slider {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.program-slide {
    min-width: 0 !important;
    flex-shrink: 0 !important;
}

/* Fix media showcase */
.media-showcase {
    max-width: 100% !important;
    width: 100% !important;
}

/* Responsive fixes */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
    }

    .featured-media-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .programs-layout {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .media-hero-stats {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix specific elements that cause overflow */
.than-nong-slide {
    flex: 0 0 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
}

.video-carousel-item {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
}

.media-slide {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
}

/* Fix dropdown menu */
.dropdown-menu {
    min-width: 200px !important;
    max-width: 250px !important;
}

/* Fix cart summary */
.cart-summary {
    width: 100% !important;
    max-width: 350px !important;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .than-nong-slide {
        flex: 0 0 250px !important;
        min-width: 250px !important;
        max-width: 250px !important;
    }

    .video-carousel-item {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }

    .media-slide {
        flex: 0 0 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }

    .dropdown-menu {
        min-width: 180px !important;
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    .than-nong-slide {
        flex: 0 0 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
    }

    .video-carousel-item {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        max-width: 220px !important;
    }

    .media-slide {
        flex: 0 0 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;
    }
}

/* Global overflow prevention */
section,
div,
article,
main {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix hero sections */
.hero-banner,
.media-hero,
.sustainability-hero,
.investor-hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Fix grid layouts */
.categories-grid,
.products-grid,
.quick-links-grid,
.stats-grid,
.services-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix flex layouts */
.hero-content,
.media-hero-content,
.sustainability-hero-content {
    width: 100% !important;
    max-width: 100% !important;
    flex-wrap: wrap !important;
}

/* Fix specific media page elements */
.media-showcase {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

.showcase-item {
    max-width: 100% !important;
}

/* Fix program sliders */
.program-slider-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px !important;
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .media-showcase {
        width: 100% !important;
        max-width: 300px !important;
    }

    .showcase-item.main {
        width: 200px !important;
        max-width: 200px !important;
    }

    .showcase-item.secondary {
        width: 80px !important;
        max-width: 80px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }

    .media-showcase {
        width: 100% !important;
        max-width: 250px !important;
    }

    .showcase-item.main {
        width: 150px !important;
        max-width: 150px !important;
    }

    .showcase-item.secondary {
        width: 60px !important;
        max-width: 60px !important;
    }
}

/* Tab Content Section - Simplified */
.tab-content-section {
    padding: 40px 0 80px;
    background: var(--white);
    min-height: 400px;
}

.tab-content-pane {
    display: none !important;
    animation: fadeInUp 0.5s ease;
}

.tab-content-pane.active {
    display: block !important;
}

.tab-content-pane h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
}

/* All Content Message */
.all-content-message {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.content-message-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    max-width: 600px;
}

.content-message-card i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-message-card h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.content-message-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Grid Layouts */
.video-items-grid,
.photo-items-grid,
.brand-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* News Grid Modern Layout */
.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* News Card Modern */
.news-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.news-card-modern.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 300px;
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
}

/* News Card Image */
.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.news-card-modern.featured .news-card-image {
    height: 100%;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-card-image img {
    transform: scale(1.1);
}

.news-placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.news-placeholder-image i {
    font-size: 48px;
    opacity: 0.8;
}

/* News Card Overlay */
.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card-modern:hover .news-card-overlay {
    opacity: 1;
}

.news-category-tag {
    background: rgba(76, 175, 80, 0.9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.featured-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* News Card Content */
.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-modern.featured .news-card-content {
    justify-content: center;
    padding: 40px;
}

/* News Card Meta */
.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-meta i {
    color: var(--primary-color);
    font-size: 12px;
}

/* News Card Title */
.news-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-card-modern.featured .news-card-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.news-card-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-title a:hover {
    color: var(--primary-color);
}

/* News Card Excerpt */
.news-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-modern.featured .news-card-excerpt {
    font-size: 16px;
    -webkit-line-clamp: 4;
    margin-bottom: 25px;
}

/* News Card Footer */
.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    margin-top: auto;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(76, 175, 80, 0.1);
}

.read-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.news-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.news-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-stats i {
    color: var(--primary-color);
}

/* News Empty State */
.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
}

.news-empty-state i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

.news-empty-state h4 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.news-empty-state p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* News Pagination */
.news-pagination {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 2px solid rgba(76, 175, 80, 0.1);
}

.pagination-info {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.pagination-number.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.pagination-dots {
    color: var(--text-light);
    font-weight: bold;
    padding: 0 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .news-card-modern.featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .news-card-modern.featured .news-card-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-image {
        height: 200px;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card-modern.featured .news-card-content {
        padding: 25px;
    }

    .news-card-modern.featured .news-card-title {
        font-size: 22px;
    }

    .pagination-controls {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-numbers {
        order: 1;
    }

    .pagination-btn {
        order: 2;
    }
}

@media (max-width: 480px) {
    .news-card-content {
        padding: 15px;
    }

    .news-card-modern.featured .news-card-content {
        padding: 20px;
    }

    .news-card-title {
        font-size: 16px;
    }

    .news-card-modern.featured .news-card-title {
        font-size: 20px;
    }

    .news-empty-state {
        padding: 50px 20px;
    }

    .news-empty-state i {
        font-size: 48px;
    }

    .news-empty-state h4 {
        font-size: 20px;
    }
}

/* Item Cards */
.video-item,
.photo-item,
.news-item,
.brand-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-item.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e0 100%);
    border-color: var(--primary-color);
    padding: 40px;
    min-height: 250px;
}

.video-item:hover,
.photo-item:hover,
.news-item:hover,
.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Thumbnails */
.video-thumbnail,
.photo-thumbnail,
.news-thumbnail,
.brand-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.video-thumbnail i,
.photo-thumbnail i,
.news-thumbnail i,
.brand-thumbnail i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.news-item.featured .news-thumbnail i {
    font-size: 64px;
    color: #FFD700;
}

.video-item:hover .video-thumbnail i,
.photo-item:hover .photo-thumbnail i,
.news-item:hover .news-thumbnail i,
.brand-item:hover .brand-thumbnail i {
    transform: scale(1.1);
}

.video-thumbnail span,
.photo-thumbnail span,
.news-thumbnail span,
.brand-thumbnail span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-item.featured .news-thumbnail span {
    font-size: 20px;
    color: var(--primary-color);
}

.video-thumbnail p,
.photo-thumbnail p,
.news-thumbnail p,
.brand-thumbnail p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}

.news-item.featured .news-thumbnail p {
    font-size: 16px;
    max-width: 400px;
    font-weight: 600;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tab-content-pane h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .video-items-grid,
    .photo-items-grid,
    .news-items-grid,
    .brand-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .video-item,
    .photo-item,
    .news-item,
    .brand-item {
        padding: 25px;
        min-height: 180px;
    }

    .news-item.featured {
        padding: 30px;
        min-height: 220px;
    }

    .content-message-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {

    .video-items-grid,
    .photo-items-grid,
    .news-items-grid,
    .brand-items-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-item,
    .photo-item,
    .news-item,
    .brand-item {
        padding: 20px;
        min-height: 160px;
    }

    .news-item.featured {
        padding: 25px;
        min-height: 200px;
    }

    .content-message-card {
        padding: 30px 20px;
    }

    .content-message-card i {
        font-size: 48px;
    }

    .content-message-card h3 {
        font-size: 20px;
    }
}


/* ========================================
   MEDIA PAGE - NEW LAYOUT
   ======================================== */

/* Quick Navigation */
.media-quick-nav {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.quick-nav-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: #f8faf6;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 150px;
}

.quick-nav-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-nav-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.quick-nav-item span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Media Sections */
.media-section {
    padding: 80px 0;
}

.media-section:nth-child(odd) {
    background: #f8faf6;
}

.media-section:nth-child(even) {
    background: var(--white);
}

/* Section Header Left */
.section-header-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.section-icon.green {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.section-icon.orange {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.section-icon.yellow {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.section-icon.purple {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

.section-info {
    flex: 1;
    min-width: 300px;
}

.section-info h2 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.section-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.section-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    background: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-meta i {
    color: var(--primary-color);
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.media-grid .media-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.media-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.media-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.media-card.large .media-card-image {
    height: 100%;
    min-height: 400px;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-card:hover .media-card-image img {
    transform: scale(1.1);
}

.media-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .media-card-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.media-card-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}

.media-card-content {
    padding: 20px;
}

.media-card-date {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.media-card-content h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.media-card.large .media-card-content h3 {
    font-size: 20px;
}

.media-card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.media-card-content h3 a:hover {
    color: var(--primary-color);
}

/* Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.1);
}

.program-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover .program-card-overlay {
    opacity: 1;
}

.episode-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.program-card-content {
    padding: 20px;
}

.program-date {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.program-card-content h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.program-card-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.program-card-content h4 a:hover {
    color: var(--primary-color);
}

.program-card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tip-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tip-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tip-card:hover .tip-card-image img {
    transform: scale(1.1);
}

.tip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFC107;
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tip-card-content {
    padding: 20px;
}

.tip-category {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.tip-card-content h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.tip-card-content h4 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tip-card-content h4 a:hover {
    color: var(--primary-color);
}

.tip-card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.tip-card-content .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.tip-card-content .read-more:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* Brand Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.brand-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.brand-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8faf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.brand-card-icon .color-palette {
    display: flex;
    gap: 5px;
}

.brand-card-icon .color-palette span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.brand-card h4 {
    font-size: 18px;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.brand-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.brand-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-download:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f8faf6;
    border-radius: 15px;
}

.empty-state i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Media Page */
@media (max-width: 1024px) {

    .media-grid,
    .program-grid,
    .tips-grid,
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid .media-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .media-grid .media-card.large .media-card-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .quick-nav-grid {
        gap: 10px;
    }

    .quick-nav-item {
        padding: 15px 20px;
        min-width: 120px;
    }

    .quick-nav-item i {
        font-size: 24px;
    }

    .quick-nav-item span {
        font-size: 12px;
    }

    .section-header-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .section-info h2 {
        font-size: 24px;
    }

    .media-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {

    .media-grid,
    .program-grid,
    .tips-grid,
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .media-grid .media-card.large {
        grid-column: span 1;
    }

    .quick-nav-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-nav-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        min-width: auto;
    }
}


/* ========================================
   HEALTH CARE SECTION
   ======================================== */

.health-care-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.health-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.health-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.health-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.health-card h3 {
    font-size: 20px;
    color: var(--text-color);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.health-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.health-stat {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.health-stat .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.health-stat .stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Health Section */
@media (max-width: 1024px) {
    .health-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .health-grid {
        grid-template-columns: 1fr;
    }

    .health-card {
        padding: 25px 20px;
    }
}

/* News Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header .breadcrumb {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
    background: transparent;
    padding: 0;
}

.page-header .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.page-header .breadcrumb a:hover {
    opacity: 0.8;
}

.page-header .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.news-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

/* News Categories Filter */
.news-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.news-meta i {
    color: var(--primary-color);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
}

/* No Products Message */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-products p {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .news-categories {
        padding: 20px;
        gap: 10px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 18px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pagination a,
    .pagination span {
        width: 40px;
        height: 40px;
    }
}

/* Subsidiaries Section */
.subsidiaries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #ffffff 100%);
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.subsidiary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.subsidiary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.subsidiary-card:hover::before {
    opacity: 1;
}

.subsidiary-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.subsidiary-card:hover .subsidiary-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.subsidiary-content {
    position: relative;
    z-index: 2;
}

.subsidiary-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.subsidiary-card:hover .subsidiary-content h3 {
    color: var(--primary-color);
}

.subsidiary-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.subsidiary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.subsidiary-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    background: rgba(76, 175, 80, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.subsidiary-info span i {
    color: var(--primary-color);
    font-size: 12px;
}

.subsidiary-card:hover .subsidiary-info span {
    background: rgba(76, 175, 80, 0.2);
    color: var(--text-color);
}

/* Responsive for Subsidiaries */
@media (max-width: 768px) {
    .subsidiaries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .subsidiary-card {
        padding: 25px;
    }

    .subsidiary-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .subsidiary-content h3 {
        font-size: 20px;
    }

    .subsidiary-info {
        gap: 10px;
    }

    .subsidiary-info span {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* Active state for dropdown menu links */
.dropdown-menu li a.active {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    padding-left: 25px !important;
}

.dropdown-menu li a.active::before {
    content: 'â†’';
    margin-right: 8px;
    font-weight: bold;
}

/* Hero Banner Responsive */
@media (max-width: 1024px) {
    .hero-slide .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .hero-decorations {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-slide {
        min-height: 500px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-nav {
        padding: 0 15px;
    }

    .hero-dots {
        bottom: 20px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-decorations {
        gap: 15px;
    }

    .hero-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Hero Banner Override Fixes */
.hero-banner {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

.hero-slide .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.hero-content {
    width: 100% !important;
    max-width: 600px !important;
    position: relative !important;
    z-index: 2 !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
    z-index: 1 !important;
}

/* Stats Section Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* Quick Links Responsive Fix */
@media (min-width: 1025px) {
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px !important;
    }

    .quick-link-item {
        padding: 35px 20px !important;
    }

    .quick-link-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 36px !important;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .quick-link-item {
        padding: 30px 20px !important;
    }

    .quick-link-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .quick-link-item {
        padding: 30px 25px !important;
        margin: 0 20px !important;
    }

    .quick-link-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 36px !important;
    }
}

/* Quick Links Override Global Fixes */
.quick-links {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    display: block !important;
}

.quick-links-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    box-sizing: border-box !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

.quick-link-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Quick Links Responsive - Clean Version */
@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .quick-link-item {
        padding: 30px 20px;
    }

    .quick-link-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-link-item {
        margin: 0 10px;
    }
}

/* Investor Media Section Responsive Fix */
.investor-media-section {
    padding: 80px 0;
    background-color: var(--white);
}

.investor-media-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    width: 100%;
}

.investor-card,
.media-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    .investor-media-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .investor-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .investor-card,
    .media-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {

    .investor-card,
    .media-card {
        padding: 30px 20px;
    }

    .investor-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
}

/* Investor Media Section - Clean Version */
.investor-media-section {
    padding: 80px 0;
    background-color: var(--white);
}

.investor-media-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.investor-card {
    background: linear-gradient(135deg, #f8faf6 0%, var(--white) 100%);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8f0e4;
}

.investor-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
}

.investor-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.investor-card h4 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 30px;
}

.media-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 40px;
    border-radius: 15px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.media-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.media-logo i {
    font-size: 40px;
    color: var(--white);
}

.media-logo h3 {
    color: var(--white);
    font-size: 24px;
    margin: 0;
}

.media-content h2 {
    color: var(--white);
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.media-content p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Quick Links - Final Clean Version */
.quick-links {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e0 0%, #d4e8c8 100%);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-link-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-link-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.quick-link-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.quick-link-item:hover .quick-link-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.quick-link-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: bold;
}

.quick-link-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Logo Responsive */
@media (max-width: 1024px) {
    .logo-image {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 45px;
        height: 45px;
    }
}

/* Header Layout - Full Width */
.main-header {
    width: 100% !important;
    max-width: 100% !important;
}

.main-header .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 20px !important;
}

.header-content {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 30px !important;
    padding: 12px 0 !important;
    width: 100% !important;
}

/* Logo - Left aligned */
.logo {
    justify-self: start !important;
    flex-shrink: 0 !important;
}

/* Navigation - Center aligned */
.main-nav {
    justify-self: center !important;
    width: auto !important;
}

/* Header Actions - Right aligned */
.header-actions {
    justify-self: end !important;
    flex-shrink: 0 !important;
}

/* Header Responsive */
@media (max-width: 1024px) {
    .header-content {
        gap: 25px !important;
    }

    .main-header .container {
        padding: 0 15px !important;
    }

    .logo-image {
        width: 65px !important;
        height: 65px !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        gap: 15px !important;
    }

    .main-header .container {
        padding: 0 10px !important;
    }

    .logo-image {
        width: 60px !important;
        height: 60px !important;
    }

    .nav-menu {
        gap: 2px !important;
    }

    .nav-menu>li>a {
        padding: 12px 6px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 10px !important;
    }

    .logo-image {
        width: 55px !important;
        height: 55px !important;
    }

    .nav-menu>li>a {
        padding: 10px 4px !important;
        font-size: 13px !important;
    }
}

/* Brand Partners Section */
.brand-partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.brand-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.brand-partners-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.brand-partners-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
}

.brand-partners-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.brand-partners-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
    font-weight: 400;
}

.brand-slider-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.brand-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brand-slider::-webkit-scrollbar {
    display: none;
}

.brand-slide {
    flex: 0 0 250px;
    min-width: 250px;
}

.brand-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.brand-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.brand-card:hover .brand-logo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.brand-card:hover .brand-logo img {
    filter: grayscale(0%) brightness(1.1);
}

.brand-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    transition: all 0.3s;
}

.brand-card:hover .brand-placeholder {
    color: var(--white);
}

.brand-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
}

.brand-placeholder span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.brand-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.brand-card:hover .brand-info h4 {
    color: var(--primary-color);
}

.brand-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.brand-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.brand-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.brand-nav-btn.prev {
    margin-left: -25px;
}

.brand-nav-btn.next {
    margin-right: -25px;
}

.brand-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.trust-badge i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.trust-badge span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-partners-section {
        padding: 60px 0;
    }

    .brand-partners-section .section-title {
        font-size: 2rem;
    }

    .brand-slide {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .brand-card {
        padding: 25px 15px;
    }

    .brand-logo {
        width: 100px;
        height: 70px;
    }

    .brand-trust-badges {
        gap: 20px;
    }

    .trust-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .brand-navigation {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-slide {
        flex: 0 0 200px;
        min-width: 200px;
    }

    .brand-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Banner Gallery Slider Section */
.banner-gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.banner-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.banner-slide:hover .banner-slide-image {
    transform: scale(1.02);
}

.banner-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.banner-slide-placeholder i {
    font-size: 5rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.banner-slide-placeholder p {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

/* Navigation Arrows */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.banner-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.banner-nav-btn:hover {
    background: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.banner-nav-btn i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Dots Indicator */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.banner-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    backdrop-filter: blur(5px);
}

.banner-dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Responsive Design for Banner Slider */
@media (max-width: 1200px) {
    .banner-slider-wrapper {
        max-width: 1200px;
    }

    .banner-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .banner-gallery-section {
        padding: 60px 0;
    }

    .banner-slider-wrapper {
        margin: 0 20px;
        border-radius: 15px;
    }

    .banner-slider {
        height: 400px;
    }

    .banner-nav {
        padding: 0 15px;
    }

    .banner-nav-btn {
        width: 50px;
        height: 50px;
    }

    .banner-nav-btn i {
        font-size: 1.2rem;
    }

    .banner-slide-placeholder i {
        font-size: 4rem;
    }

    .banner-slide-placeholder p {
        font-size: 1.5rem;
    }

    .banner-dots {
        bottom: 20px;
        gap: 12px;
    }

    .banner-dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .banner-gallery-section {
        padding: 40px 0;
    }

    .banner-slider-wrapper {
        margin: 0 15px;
        border-radius: 12px;
    }

    .banner-slider {
        height: 300px;
    }

    .banner-nav-btn {
        width: 45px;
        height: 45px;
    }

    .banner-nav-btn i {
        font-size: 1.1rem;
    }

    .banner-dot {
        width: 12px;
        height: 12px;
    }

    .banner-slide-placeholder i {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .banner-slide-placeholder p {
        font-size: 1.3rem;
    }
}

/* Responsive for News Grid Layout */
@media (max-width: 768px) {
    .news-grid-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .news-grid-image {
        height: 220px;
    }

    .news-grid-content {
        padding: 25px;
    }

    .news-grid-content h3 {
        font-size: 20px;
    }

    .news-grid-content p {
        font-size: 15px;
    }

    .news-view-more {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .news-grid-layout {
        gap: 20px;
        margin-top: 30px;
    }

    .news-grid-image {
        height: 180px;
    }

    .news-grid-content {
        padding: 20px;
    }

    .news-grid-content h3 {
        font-size: 18px;
    }

    .news-grid-content p {
        font-size: 14px;
    }

    .news-view-more .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Products Section - Grid Layout */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

.products-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-grid-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.product-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-grid-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-grid-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-grid-item:hover .product-grid-image img {
    transform: scale(1.05);
}

.product-grid-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-grid-actions {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-grid-item:hover .product-grid-actions {
    opacity: 1;
}

.btn-add-cart,
.btn-view-detail {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-cart:hover,
.btn-view-detail:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-grid-info {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-grid-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.product-grid-info h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-grid-info h3 a:hover {
    color: var(--primary-color);
}

.product-grid-price {
    margin-top: auto;
}

.product-grid-price .price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.product-grid-price .price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.products-view-more {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.products-view-more .btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    border: none;
    text-decoration: none;
}

.products-view-more .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 187, 106, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-section .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.products-section .section-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 30px;
}

.products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    max-width: 90vw;
    height: 2px;
    background: linear-gradient(to right, #999 0%, #999 35%, #f0c000 35%, #f0c000 65%, #999 65%, #999 100%);
}

.products-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 80px;
    /* Add padding to make space for navigation buttons */
}

.products-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-carousel-item {
    flex: 0 0 calc(25% - 19px);
    /* 4 items per row with gap */
    min-width: 260px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-carousel-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.product-carousel-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-carousel-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 25px 25px 0 0;
}

.product-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-carousel-item:hover .product-carousel-image img {
    transform: scale(1.1);
}

.product-carousel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.product-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(102, 187, 106, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-carousel-item:hover .product-carousel-overlay {
    opacity: 1;
}

.product-carousel-actions {
    display: flex;
    gap: 15px;
}

.btn-carousel-cart,
.btn-carousel-view {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-carousel-cart:hover,
.btn-carousel-view:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-carousel-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-carousel-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-color);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-carousel-info h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-carousel-info h3 a:hover {
    color: var(--primary-color);
}

.product-carousel-price {
    margin-top: auto;
}

.product-carousel-price .price-current {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.product-carousel-price .price-old {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.products-carousel-nav {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-nav-btn.prev {
    /* Left button */
}

.carousel-nav-btn.next {
    /* Right button */
}

.products-view-more {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.products-view-more .btn {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
}

.products-view-more .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

/* Responsive for Products Carousel */
@media (max-width: 1200px) {
    .product-carousel-item {
        flex: 0 0 calc(33.333% - 17px);
        /* 3 items per row */
        min-width: 240px;
    }

    .products-carousel-wrapper {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .product-carousel-item {
        flex: 0 0 calc(50% - 12.5px);
        /* 2 items per row */
        min-width: 220px;
    }

    .products-carousel {
        gap: 20px;
    }

    .products-carousel-wrapper {
        padding: 0 60px;
    }

    .product-carousel-image {
        height: 180px;
    }

    .product-carousel-info {
        padding: 20px;
    }

    .product-carousel-info h3 {
        font-size: 16px;
        min-height: 40px;
    }

    .product-carousel-price .price-current {
        font-size: 20px;
    }

    .carousel-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .products-view-more {
        margin-top: 50px;
    }

    .products-view-more .btn {
        padding: 15px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-carousel-item {
        flex: 0 0 calc(100% - 0px);
        /* 1 item per row on very small screens */
        min-width: 200px;
    }

    .products-carousel {
        gap: 15px;
    }

    .products-carousel-wrapper {
        padding: 0 50px;
    }

    .product-carousel-image {
        height: 160px;
    }

    .product-carousel-info {
        padding: 15px;
    }

    .product-carousel-info h3 {
        font-size: 15px;
        min-height: 35px;
    }

    .product-carousel-price .price-current {
        font-size: 18px;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Products Responsive */
@media (max-width: 1024px) {
    .products-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .product-grid-image {
        height: 180px;
    }

    .product-grid-info {
        padding: 15px;
    }

    .product-grid-info h3 {
        font-size: 15px;
        min-height: 35px;
    }

    .product-grid-price .price-current {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .product-grid-image {
        height: 160px;
    }

    .product-grid-info {
        padding: 12px;
    }

    .product-grid-info h3 {
        font-size: 14px;
        min-height: 32px;
    }

    .product-grid-price .price-current {
        font-size: 15px;
    }

    .btn-add-cart,
    .btn-view-detail {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/* Agency Policy Section */
.agency-policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e9 100%);
}

.agency-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.policy-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8f0e4;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.policy-icon i {
    font-size: 28px;
    color: #fff;
}

.policy-card h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.policy-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.agency-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 50px;
    color: #fff;
}

.agency-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.agency-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.agency-cta .btn {
    background: #fff;
    color: var(--primary-color);
}

.agency-cta .btn:hover {
    background: var(--accent-color);
    color: #fff;
}

@media (max-width: 1024px) {
    .agency-policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .agency-policy-grid {
        grid-template-columns: 1fr;
    }

    .agency-cta {
        padding: 30px 20px;
    }

    .agency-cta h3 {
        font-size: 22px;
    }
}


/* FAQ Page Styles */
.faq-banner {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(102, 187, 106, 0.8)),
        url('../images/banner1.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.faq-banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb-section {
    background: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumb-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-section span {
    color: #666;
    margin: 0 8px;
}

.breadcrumb-section .current {
    color: #999;
}

.faq-section {
    padding: 50px 0;
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-header p {
    color: #666;
    font-size: 16px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
}

.faq-list {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 5px 5px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question-content {
    flex: 1;
}

.faq-question-content h4 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.5;
}

.faq-meta {
    font-size: 13px;
    color: #999;
}

.faq-meta .faq-author {
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.7;
    border-left: 3px solid var(--primary-color);
    margin-left: 59px;
    margin-right: 20px;
    margin-bottom: 15px;
}

.faq-item.active .faq-question {
    background: #f0f7f0;
}

/* FAQ Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.widget-title {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.news-list-widget {
    padding: 15px;
}

.news-item-widget {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-item-widget:last-child {
    border-bottom: none;
}

.news-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.news-info-widget a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-info-widget a:hover {
    color: var(--primary-color);
}

.ask-question-widget {
    padding: 20px;
    text-align: center;
    border: none;
    background: transparent;
}

.btn-ask-question {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ask-question:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Ask Question Form */
.ask-question-form {
    margin-top: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.ask-question-form h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 24px;
}

.ask-question-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ask-question-form .form-group {
    margin-bottom: 0;
}

.ask-question-form input,
.ask-question-form select,
.ask-question-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.ask-question-form input:focus,
.ask-question-form select:focus,
.ask-question-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ask-question-form button {
    display: block;
    margin: 20px auto 0;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-banner {
        padding: 60px 0;
    }

    .faq-banner h1 {
        font-size: 28px;
    }

    .faq-sidebar {
        grid-template-columns: 1fr;
    }

    .ask-question-form .form-row {
        grid-template-columns: 1fr;
    }

    .ask-question-form {
        padding: 20px;
    }

    .faq-answer p {
        margin-left: 20px;
    }
}


/* Mobile Header & Top Bar Fix */
@media (max-width: 992px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 0;
    }

    .nav-menu>li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu>li>a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        min-width: 100%;
    }

    .has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 30px;
    }

    .header-search-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        font-size: 20px;
    }

    .header-actions {
        order: 2;
    }

    .logo {
        order: 1;
    }

    .mobile-menu-toggle {
        order: 3;
    }

    .logo-image {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 576px) {
    .top-bar-right {
        gap: 5px;
    }

    .lang-selector {
        padding: 4px 10px;
        font-size: 12px;
    }

    .logo-image {
        width: 50px !important;
        height: 50px !important;
    }

    .header-actions {
        gap: 10px;
    }

    .cart-icon,
    .user-icon {
        font-size: 18px;
    }
}


/* Fix header overlap on mobile */
@media (max-width: 992px) {
    .hero-banner {
        margin-top: 0;
    }

    .hero-banner .hero-content {
        padding-top: 40px;
    }

    .main-header {
        position: relative;
    }

    .top-bar+.main-header+.hero-banner,
    .main-header+.hero-banner {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-banner .hero-content h2 {
        font-size: 24px;
    }

    .hero-banner .hero-content p {
        font-size: 14px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Banner 1920x600 - Responsive Fixes */
.hero-banner {
    height: auto;
    padding-bottom: 0;
    min-height: 500px;
    max-height: 600px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: inherit;
}

.hero-slide:not(.active) {
    display: none;
}

.hero-slide.active {
    display: flex;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background-color: #f5f5f5;
}

/* Responsive for 1920x600 banner */
@media (max-width: 1200px) {
    .hero-banner {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-slide .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-decorations {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 350px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 300px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-dots {
        bottom: 15px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }
}


/* Header 2 Rows Layout */
.header-2rows {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.header-2rows .container {
    max-width: 1200px;
    padding: 0 15px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-2rows .logo {
    flex-shrink: 0;
    padding: 10px 0;
    margin-left: 170px;
}

.header-2rows .logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header Top Row - Contact Info */
/* ===== HEADER 2 ROWS LAYOUT ===== */
.header-2rows {
    width: 100%;
}

/* HÃ ng 1: Top bar XANH - cÄƒn pháº£i */
.header-top-bar-full {
    background: #1a5c2e;
    width: 100%;
}

.header-top-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 15px;
}

.header-top-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-phone,
.header-email {
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone i,
.header-email i {
    color: #ffd700;
}

.header-search-top {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.header-search-top .search-input-top {
    border: none;
    padding: 6px 10px;
    font-size: 12px;
    width: 120px;
    outline: none;
}

.header-search-top .search-btn-top {
    background: transparent;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: #666;
}

.header-lang {
    display: flex;
    gap: 5px;
    align-items: center;
}

.header-lang .lang-selector {
    padding: 2px 4px;
    border-radius: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-lang .lang-selector:hover,
.header-lang .lang-selector.active {
    background: rgba(255, 255, 255, 0.2);
}

.header-lang .flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* HÃ ng 2: Nav bar TRáº®NG - cÄƒn giá»¯a */
.header-nav-bar-full {
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Needed for absolute positioned menu */
}

.header-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    gap: 30px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-wrapper .logo-image {
    height: 55px;
    width: auto;
}

/* Menu trÃªn ná»n tráº¯ng */
.header-nav-bar-full .main-nav {
    display: flex;
    align-items: center;
}

.header-nav-bar-full .nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-nav-bar-full .nav-menu>li>a {
    color: #333 !important;
    padding: 15px 18px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.header-nav-bar-full .nav-menu>li>a:hover {
    color: #1a5c2e !important;
}

/* Mobile menu toggle - áº©n trÃªn desktop */
.mobile-menu-toggle {
    display: none;
}

/* ===== HEADER MAIN BAR ===== */
.header-main-bar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-main-bar .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* Header Nav Row */
.header-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.header-2rows .main-nav {
    display: flex;
    align-items: center;
}

.header-2rows .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.header-2rows .nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s;
}

.header-2rows .nav-menu>li>a:hover {
    color: var(--primary-color);
}

.header-2rows .nav-menu>li>a i {
    font-size: 10px;
}

.header-2rows .has-dropdown {
    position: relative;
}

.header-2rows .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    z-index: 1000;
    border-top: 2px solid var(--primary-color);
}

.header-2rows .has-dropdown:hover .dropdown-menu {
    display: block;
}

.header-2rows .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.header-2rows .dropdown-menu li a:hover {
    background: #f8f8f8;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mega Menu for Products */
.header-2rows .has-mega-menu {
    position: static;
}

.header-2rows .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 30px 50px;
    z-index: 1000;
}

.header-2rows .has-mega-menu:hover .mega-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.header-2rows .mega-menu-column {
    min-width: 200px;
}

.header-2rows .mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.header-2rows .mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-2rows .mega-menu-column ul li a {
    display: block;
    padding: 8px 0;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.header-2rows .mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.header-2rows .search-icon-nav {
    color: #333;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s;
}

.header-2rows .search-icon-nav:hover {
    color: var(--primary-color);
}

.header-2rows .mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

/* Header 2 Rows Responsive */
@media (max-width: 992px) {

    /* Top bar mobile - áº©n hoáº·c thu gá»n */
    .header-top-bar-full {
        padding: 8px 0;
    }

    .header-top-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .header-phone,
    .header-email {
        font-size: 11px;
    }

    .header-search-top {
        display: none;
        /* áº¨n search trÃªn mobile, dÃ¹ng search overlay */
    }

    /* Nav bar mobile */
    .header-nav-bar-full {
        position: relative;
    }

    .header-nav-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo-wrapper {
        flex: 0 0 auto;
    }

    .logo-wrapper .logo-image {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: #1a5c2e;
        color: #fff;
        border-radius: 8px;
        cursor: pointer;
        font-size: 22px;
        border: none;
        outline: none;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: #145024;
        transform: scale(1.05);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    /* Menu áº©n máº·c Ä‘á»‹nh trÃªn mobile */
    .header-nav-bar-full .main-nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
        z-index: 9999 !important;
        width: 100% !important;
        border-top: 3px solid #1a5c2e !important;
    }

    /* Menu hiá»‡n khi cÃ³ class active */
    .header-nav-bar-full .main-nav.active {
        display: block !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .header-nav-bar-full .nav-menu {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        background: #fff !important;
    }

    .header-nav-bar-full .nav-menu>li {
        border-bottom: 1px solid #e8e8e8;
        width: 100%;
    }

    .header-nav-bar-full .nav-menu>li:last-child {
        border-bottom: none;
    }

    .header-nav-bar-full .nav-menu>li>a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 16px 20px !important;
        text-align: left !important;
        font-size: 15px !important;
        width: 100%;
        transition: all 0.2s ease;
    }

    .header-nav-bar-full .nav-menu>li>a:hover {
        background: #f8f8f8;
        padding-left: 25px !important;
    }

    .header-nav-bar-full .nav-menu>li>a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .header-nav-bar-full .has-dropdown.open>a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Dropdown mobile */
    .header-nav-bar-full .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border-top: none !important;
        display: none;
        background: #f5f5f5;
        border-radius: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .header-nav-bar-full .has-dropdown.open .dropdown-menu {
        display: block !important;
        max-height: 500px;
    }

    .header-nav-bar-full .dropdown-menu li {
        width: 100%;
    }

    .header-nav-bar-full .dropdown-menu li a {
        padding: 12px 20px 12px 40px !important;
        font-size: 14px;
        border-bottom: 1px solid #e0e0e0;
        display: block;
        width: 100%;
        transition: all 0.2s ease;
    }

    .header-nav-bar-full .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .header-nav-bar-full .dropdown-menu li a:hover {
        background: #e8e8e8;
        padding-left: 45px !important;
    }
}

@media (max-width: 576px) {

    /* Top bar - hiá»ƒn thá»‹ tá»‘i giáº£n */
    .header-top-bar-full {
        padding: 6px 0;
    }

    .header-top-content {
        padding: 0 10px;
        gap: 6px;
    }

    .header-phone,
    .header-email {
        font-size: 10px;
    }

    .header-phone i,
    .header-email i {
        font-size: 9px;
    }

    /* áº¨n email trÃªn mÃ n hÃ¬nh ráº¥t nhá» */
    .header-email {
        display: none;
    }

    .header-lang .flag-img {
        width: 20px;
        height: 14px;
    }

    /* Nav bar */
    .header-nav-inner {
        padding: 8px 12px;
    }

    .logo-wrapper .logo-image {
        height: 42px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .header-nav-bar-full .nav-menu>li>a {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }

    .header-nav-bar-full .dropdown-menu li a {
        padding: 10px 16px 10px 32px !important;
        font-size: 13px;
    }
}


/* Remove gap between header and banner */
.header-2rows {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-banner {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body {
    margin: 0;
    padding: 0;
}

/* Hide old top-bar since we use header-2rows now */
.top-bar {
    display: none;
}

/* Fix gap between header and banner on mobile */
@media (max-width: 992px) {
    .header-2rows {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .header-nav-bar-full {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .hero-banner {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Ensure no gap from header shadow */
    .main-header.header-2rows {
        box-shadow: none;
    }
}

@media (max-width: 768px) {

    /* 1. Hero Banner Adjustment */
    .hero-banner {
        height: auto !important;
        min-height: 250px;
    }

    .hero-banner .hero-slide img,
    .hero-bg-image {
        height: 250px !important;
        object-fit: cover;
    }

    .hero-nav {
        display: none !important;
    }

    .hero-dots {
        bottom: 10px;
    }

    /* 2. Global Section Padding Reduction */
    section {
        padding: 40px 0 !important;
    }

    .section-header {
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 24px !important;
    }

    .view-all {
        font-size: 14px;
        align-self: flex-start;
        margin-top: 10px;
    }

    /* 3. News Section */
    .news-slide-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .news-grid-card {
        flex-direction: column;
    }

    .news-grid-image {
        width: 100%;
        height: 180px;
    }

    /* 4. Products Section */
    .product-slide-item {
        flex: 0 0 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
    }

    /* 5. Stats Section */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* 6. Gallery Section */
    .gallery-slide-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    /* 7. Footer margins */
    footer {
        padding-top: 40px;
    }

    /* 8. Fix Container Padding */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 576px) {
    .product-slide-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .news-activities-section {
        padding-top: 0px !important;
        margin-top: -20px !important;
        padding-bottom: 20px !important;
    }
}

/* Custom Products Slider Styling */
.products-section .section-header {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.products-section .section-header .view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.products-section .section-title {
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    color: #1a5c2e !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 32px;
}

.products-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #FFBD00;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    background: #f9f9f9 !important;
    margin: -15px -15px 15px -15px;
    overflow: hidden;
    height: 250px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-title a {
    color: #333;
    text-decoration: none;
}

.product-card-desc {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card-btn {
    display: block;
    width: 100%;
    background: #4CAF50;
    color: #fff !important;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: auto;
}

.product-card-btn:hover {
    background: #1a5c2e;
}

@media (max-width: 992px) {
    .products-section .section-header .view-all {
        position: static;
        display: block;
        margin-top: 20px;
        transform: none;
    }
}

/* === NEW FLOATING CONTACT BAR OVERRIDES === */
.floating-contact-bar {
    position: fixed !important;
    right: 20px !important;
    bottom: 30px !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.contact-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 24px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.contact-icon:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.phone-icon { background: linear-gradient(135deg, #ff5757 0%, #ff3838 100%) !important; }
.messenger-icon { background: linear-gradient(135deg, #00b2ff 0%, #006aff 100%) !important; }
.facebook-icon { background: linear-gradient(135deg, #4267B2 0%, #3b5998 100%) !important; }
.zalo-icon { background: linear-gradient(135deg, #0068FF 0%, #0052CC 100%) !important; padding: 18px !important; }

@media (max-width: 768px) {
    .floating-contact-bar {
        right: 15px !important;
        bottom: 80px !important;
        gap: 0 !important;
        flex-direction: column-reverse !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .zalo-icon { padding: 13px !important; }
}
