:root {
    --primary-green: #4CAF50;
    --accent-red: #D32F2F;
    --dark-text: #333;
    --light-text: #666;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --dark-bg: #333;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Navigation - Transparent */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.top-nav.nav-hidden {
    transform: translateY(-100%);
}

/* Logo styles moved to separate logo effect files (logo-elegant.css, logo-particle.css, etc.) */

/* MENU STYLE - EXECUTIVE (Chuyên nghiệp, sang trọng) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: visible;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    max-height: 100px;
    overflow: visible;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
    display: inline-block;
    vertical-align: middle;
}

/* Moved to desktop media query */

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7CB342 0%, #EF5350 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(124, 179, 66, 0.5);
}

.nav-menu a:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Active state for navigation */
.nav-menu a.active {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-menu a.active::before {
    width: 100%;
}

/* Menu icon spacing */
.nav-menu a i.fa-newspaper {
    margin-right: 6px;
    font-size: 14px;
}

/* Dropdown Menu Styles - Desktop */
@media (min-width: 769px) {
    .nav-menu li {
        display: flex;
        align-items: center;
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown > a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        padding: 8px 0;
        line-height: 1;
    }

    .nav-dropdown > a i {
        font-size: 10px;
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 5px);
        left: 50%;
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 15px 0;
        min-width: 250px;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999;
        pointer-events: none;
    }

    .nav-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 25px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-menu li a::before {
        display: none;
    }

    .dropdown-menu li a i {
        font-size: 16px;
        color: var(--primary-green);
        transition: all 0.3s ease;
    }

    .dropdown-menu li a:hover {
        background: rgba(76, 175, 80, 0.1);
        border-left-color: var(--primary-green);
        color: white;
        padding-left: 30px;
        transform: none;
        text-shadow: none;
    }

    .dropdown-menu li a:hover i {
        transform: scale(1.2);
        color: var(--accent-red);
    }
}

/* Side Navigation - Minimal Line with Nodes */
.side-nav {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.side-nav:hover {
    opacity: 1;
}

.side-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 0;
}

/* Vertical line connecting nodes */
.side-nav-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: linear-gradient(180deg,
        transparent,
        #7CB342 10%,
        #7CB342 90%,
        transparent
    );
    box-shadow:
        0 0 15px rgba(124, 179, 66, 0.8),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.side-nav-item {
    position: relative;
    padding: 12px 0;
}

/* Tooltip */
.side-nav-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(124, 179, 66, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.side-nav-item:hover::after {
    opacity: 1;
    left: 50px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    text-decoration: none;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    border: 4px solid #7CB342;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(124, 179, 66, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

.side-nav-link i {
    display: none;
    font-size: 11px;
    color: #7CB342;
}

.side-nav-link:hover {
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 100%);
    border-color: #ffffff;
    border-width: 4px;
    transform: scale(1.5);
    box-shadow:
        0 0 30px rgba(124, 179, 66, 1),
        0 5px 20px rgba(0, 0, 0, 0.6),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
}

.side-nav-link:hover i {
    display: block;
    color: #ffffff;
}

/* Active state */
.side-nav-link.active {
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 100%);
    border-color: #ffffff;
    border-width: 4px;
    transform: scale(1.35);
    box-shadow:
        0 0 35px rgba(124, 179, 66, 1),
        0 0 50px rgba(124, 179, 66, 0.8),
        0 5px 25px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.side-nav-link.active i {
    display: block;
    font-size: 13px;
    animation: iconPulse 2s ease-in-out infinite;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Active node indicator */
.side-nav-link.active::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid #7CB342;
    border-radius: 50%;
    opacity: 0.5;
    animation: ripple 2s ease-out infinite;
    box-shadow: 0 0 25px rgba(124, 179, 66, 0.8);
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Hide side nav on mobile */
@media (max-width: 1024px) {
    .side-nav {
        display: none;
    }
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.lang-toggle i {
    font-size: 16px;
}

.lang-text {
    letter-spacing: 1px;
}

.lang-toggle:hover {
    background: rgba(124, 179, 66, 0.2);
    border-color: #7CB342;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 18px;
}

.menu-toggle:hover {
    background: rgba(239, 83, 80, 0.2);
    border-color: #EF5350;
    transform: translateY(-2px) rotate(90deg);
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.3);
}

.menu-toggle.active {
    background: rgba(239, 83, 80, 0.3);
    border-color: #EF5350;
}

.menu-toggle.active i::before {
    content: '\f00d'; /* FontAwesome times/close icon */
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark Overlay trên hình nền */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Minimal Grid Pattern */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(124, 179, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 83, 80, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: 0 40px;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 25px;

    /* Animation fade-in đầu tiên */
    animation: betaBadgeFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.beta-dot {
    width: 8px;
    height: 8px;
    background: #7CB342;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(124, 179, 66, 0.8);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        background: #7CB342;
        box-shadow: 0 0 10px rgba(124, 179, 66, 0.8);
    }
    50% {
        background: #9CCC65;
        box-shadow: 0 0 20px rgba(156, 204, 101, 1);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: white;

    /* Animation fade-in từ dưới lên */
    animation: heroTitleFadeIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);

    /* Responsive font size */
    font-size: clamp(28px, 5vw, 48px);
}


.hero-title .highlight {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #22c55e 0%, #ef4444 100%);
}

/* ==================== HERO LOGO STYLES ==================== */
.hero-logo-container {
    margin-bottom: 50px;
    max-width: 730px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;

    /* Simple fade in animation */
    animation: logoFadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-logo {
    /* Desktop size - 700px */
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;

    /* White outline effect using multiple drop-shadows */
    filter:
        drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.6))
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));

    /* Simple transition only */
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
    filter:
        drop-shadow(0 0 4px rgba(255, 255, 255, 1))
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.7))
        drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}

/* Simple Logo Animation */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Logo */
@media (max-width: 1024px) {
    .hero-logo-container {
        max-width: 480px;
    }

    .hero-logo {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-logo-container {
        max-width: 420px;
    }

    .hero-logo {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 12px 15px;
        gap: 10px;
    }

    .logo-img {
        height: 35px;
    }

    .lang-toggle {
        padding: 6px 10px;
        font-size: 11px;
    }

    .lang-toggle i {
        font-size: 12px;
    }

    .lang-text {
        display: none;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .nav-menu li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .nav-menu .nav-dropdown > a {
        padding: 12px 15px;
    }

    .nav-menu .dropdown-menu li a {
        padding: 10px 15px 10px 35px;
        font-size: 13px;
    }

    .hero-logo-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-logo {
        max-width: 300px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
    font-weight: 300;

    /* Animation fade-in với delay */
    animation: heroSubtitleFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);

    /* Responsive font size */
    font-size: clamp(16px, 2.5vw, 18px);
}

/* CTA Button - Cắt góc trên trái & dưới phải */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #EF5350 0%, #E53935 100%);
    color: #ffffff;
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);

    /* Animation fade-in với delay lớn nhất */
    animation: ctaButtonFadeIn 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(40px);
    box-shadow:
        0 4px 20px rgba(239, 83, 80, 0.4),
        0 0 30px rgba(124, 179, 66, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button::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 ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 10px 40px rgba(239, 83, 80, 0.6),
        0 0 50px rgba(124, 179, 66, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 100%);
    color: #ffffff;
}

.cta-button:active {
    transform: translateY(-2px) scale(1);
}

/* Accent Lines */
.accent-line {
    position: absolute;
    height: 2px;
    z-index: 3;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 35%;
    background: linear-gradient(90deg, transparent, rgba(124, 179, 66, 0.6), rgba(124, 179, 66, 0.3));
    box-shadow: 0 0 15px rgba(124, 179, 66, 0.4);
}

.line-2 {
    bottom: 30%;
    right: 0;
    width: 30%;
    background: linear-gradient(270deg, transparent, rgba(239, 83, 80, 0.6), rgba(239, 83, 80, 0.3));
    box-shadow: 0 0 15px rgba(239, 83, 80, 0.4);
}



/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.25);
    border-color: var(--primary-green);
}

.service-card .content {
    padding: 2rem;
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover i {
    color: var(--accent-red);
    transform: rotateY(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: var(--primary-green);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover p {
    color: var(--dark-text);
}

.service-card .learn-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-red);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card .learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    transition: left 0.4s ease;
    z-index: -1;
}

.service-card .learn-more:hover::before {
    left: 0;
}

.service-card .learn-more:hover {
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.service-card .learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card .learn-more:hover::after {
    transform: translateX(5px);
}

/* Additional Services */
.additional-services {
    margin-top: 4rem;
    text-align: center;
}

.additional-services h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
    border-color: var(--primary-green);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--accent-red);
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: var(--primary-green);
}

.service-item span {
    font-weight: 600;
    color: var(--dark-text);
    white-space: nowrap;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover fixed;
    position: relative;
}

.industries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.industries-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex: 0 1 300px;
    min-width: 280px;
}

.industry-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-card .industry-content {
    padding: 2rem;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(211, 47, 47, 0.1), transparent);
    transition: left 0.5s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-red);
    background: var(--white);
}

.industry-card i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover i {
    color: var(--primary-green);
    transform: scale(1.1) rotateY(360deg);
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover h3 {
    color: var(--primary-green);
}

.industry-card p {
    color: var(--light-text);
    line-height: 1.6;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover p {
    color: var(--dark-text);
}

/* Commitments Section */
.commitments {
    padding: 80px 0;
    background: linear-gradient(rgba(245, 245, 245, 0.95), rgba(245, 245, 245, 0.95)),
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover fixed;
    position: relative;
}

.commitments h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.commitments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex: 0 1 300px;
    min-width: 280px;
}

.commitment-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.commitment-card:hover .commitment-image img {
    transform: scale(1.1);
}

.commitment-card .commitment-content {
    padding: 2rem;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-red));
    transition: left 0.5s ease;
}

.commitment-card:hover::before {
    left: 0;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
    border-color: var(--primary-green);
}

.commitment-card i {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.commitment-card:hover i {
    color: var(--accent-red);
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
}

.commitment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    transition: color 0.3s ease;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.commitment-card:hover h3 {
    color: var(--primary-green);
}

.commitment-card p {
    color: var(--light-text);
    line-height: 1.6;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.commitment-card:hover p {
    color: var(--dark-text);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    margin-right: 0.5rem;
}

.submit-btn {
    background: var(--accent-red);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.contact-info {
    padding: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 1rem;
    width: 30px;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-text);
}

.info-item p {
    color: var(--light-text);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(102, 187, 106, 0.95) 100%),
                url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--accent-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #B71C1C;
    transform: translateX(5px);
}

/* Team & Office Section */
.team-office {
    padding: 80px 0;
    background: var(--white);
}

.team-office h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.team-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-item .overlay p {
    color: #ccc;
    line-height: 1.5;
}

/* News Section */
.news {
    padding: 80px 0;
    background: var(--light-bg);
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.news-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--light-text);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.news-card.featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-card.featured .news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.news-category {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date {
    color: var(--light-text);
    font-size: 0.9rem;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card.featured h3 {
    font-size: 1.5rem;
}

.news-card:hover h3 {
    color: var(--primary-green);
}

.news-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card.featured p {
    -webkit-line-clamp: 4;
}

.read-more {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.news-actions {
    text-align: center;
}

.view-all-news {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-news:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

/* Recruitment Section */
.recruitment {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover fixed;
    position: relative;
}

.recruitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.03) 0%, rgba(211, 47, 47, 0.03) 100%);
    pointer-events: none;
}

.recruitment .container {
    position: relative;
    z-index: 1;
}

.recruitment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.recruitment-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--dark-text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Job Filter */
.job-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Dropdown Filter */
.dropdown-filter {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.job-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    min-width: 220px;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 8px 0;
    animation: dropdownSlide 0.3s ease;
}

.job-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.job-dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
    margin: 8px 0;
}

.job-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.job-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-filter.active .job-dropdown-menu {
    display: block;
}

.dropdown-filter.active .dropdown-toggle {
    background: var(--primary-green);
    color: var(--white);
}

.dropdown-filter.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
}

.dropdown-item {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 12px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-green);
}

.dropdown-item.active {
    background: var(--primary-green);
    color: var(--white);
}

.dropdown-item.clear-filter {
    color: #95a5a6;
    font-style: italic;
    border-bottom: 1px solid var(--light-bg);
}

.dropdown-item.clear-filter:hover {
    background: #f8f9fa;
    color: #6c757d;
}

.dropdown-item.clear-filter.active {
    background: transparent;
    color: #95a5a6;
}

.search-box {
    display: flex;
    background: var(--light-bg);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    position: relative;
}

.search-box:focus-within {
    border-color: var(--primary-green);
}

.search-box input {
    border: none;
    padding: 0.8rem 1.5rem;
    background: transparent;
    outline: none;
    min-width: 300px;
    flex: 1;
}

.search-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--accent-red);
}

.clear-search {
    background: transparent;
    border: none;
    color: #95a5a6;
    padding: 0 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: none;
}

.clear-search.active {
    display: block;
}

.clear-search:hover {
    color: var(--accent-red);
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-card {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.job-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.job-urgent,
.job-hot {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-urgent {
    background: var(--accent-red);
    color: var(--white);
}

.job-hot {
    background: #FF9800;
    color: var(--white);
}

.job-content h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.company-name {
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 1rem;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.job-details i {
    color: var(--primary-green);
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-bg);
    color: var(--dark-text);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-deadline {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.job-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.apply-btn {
    flex: 1;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.save-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-btn:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.recruitment-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.view-all-jobs,
.post-job {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-jobs {
    background: var(--primary-green);
    color: var(--white);
}

.view-all-jobs:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.post-job {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.post-job:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Shopping Cart */
.cart-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.cart-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

.product-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-card i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.product-card .price {
    font-size: 2rem;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.add-to-cart {
    background: var(--accent-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #B71C1C;
    transform: translateY(-2px);
}

.cart-status {
    margin-top: 2rem;
    padding: 1rem;
    background: #FFF3E0;
    border-radius: 5px;
    color: #F57C00;
    display: none;
}

.cart-status.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: brightness(1.3) drop-shadow(0 3px 12px rgba(124, 179, 66, 0.5));
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.5) drop-shadow(0 5px 30px rgba(124, 179, 66, 0.8));
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-logo h4 {
    margin-bottom: 0;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-card.featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    /* Top Nav */
    .top-nav {
        padding: 15px 20px;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .logo-img {
        height: 40px;
    }

    /* Nav Actions */
    .nav-actions {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }

    .lang-toggle {
        padding: 8px 12px;
        font-size: 12px;
    }

    .lang-toggle i {
        font-size: 14px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }

    /* ===== MENU MOBILE - VIẾT LẠI HOÀN TOÀN ===== */

    /* FORCE RESET - Class được thêm bởi JavaScript */
    .mobile-menu-item,
    a.mobile-menu-item,
    .nav-menu a.mobile-menu-item,
    nav .nav-menu li a.mobile-menu-item {
        background: rgba(0, 0, 0, 0.2) !important;
        background-color: rgba(0, 0, 0, 0.2) !important;
    }

    /* Menu chính - ẩn mặc định */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: transparent !important;
        backdrop-filter: blur(20px);
        padding: 0 !important;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0 !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        flex-direction: column !important;
    }

    /* Menu hiện khi active */
    .nav-menu.active {
        display: block;
        max-height: calc(100vh - 70px);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Khóa body khi menu mở */
    body.menu-open {
        overflow: hidden;
    }

    /* Các mục menu chính */
    .nav-menu > li,
    ul.nav-menu > li,
    .top-nav .nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        display: block !important;
        align-items: initial !important;
    }

    .nav-menu li > a {
        display: block !important;
        padding: 18px 30px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        transition: all 0.3s ease !important;
        background: rgba(0, 0, 0, 0.2) !important;
        background-color: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Reset pseudo-elements từ desktop */
    .nav-menu li > a::before,
    .nav-menu li > a::after {
        display: none !important;
        content: none !important;
    }

    .nav-menu li > a:hover {
        color: white !important;
        background: rgba(0, 0, 0, 0.4) !important;
        transform: none !important;
    }

    .nav-menu li > a.active {
        color: #A8B2C0 !important;
        background: rgba(0, 0, 0, 0.2) !important;
        text-shadow: none !important;
    }

    /* Dropdown "Dịch Vụ" trên mobile */
    .nav-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-dropdown > a i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    /* Xoay icon khi dropdown mở */
    .nav-dropdown.active > a i {
        transform: rotate(180deg);
    }

    /* Submenu dropdown */
    .dropdown-menu {
        display: none;
        background: rgba(0, 0, 0, 0.3);
        padding: 10px 0;
    }

    /* Hiện submenu khi dropdown active */
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    /* Các item trong dropdown */
    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 30px 15px 50px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        font-weight: 400;
        transition: all 0.3s ease;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: white;
    }

    .dropdown-menu li a i {
        font-size: 18px;
        color: #A8B2C0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 13px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .service-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .service-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .industries-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .industry-card {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .commitments-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .commitment-card {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .team-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 250px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card.featured {
        grid-column: 1;
        grid-row: auto;
    }

    .news-card.featured .news-image {
        height: 200px;
    }

    .job-filter {
        flex-direction: column;
        gap: 1.5rem;
    }

    .filter-tabs {
        justify-content: center;
    }

    .search-box input {
        min-width: auto;
        width: 100%;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-img {
        height: 35px;
    }

    .logo span {
        font-size: 1.5rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        height: 30px;
    }
}

/* Smooth Scroll - Disabled for custom JS scroll */
html {
    scroll-behavior: auto;
}

/* Loading Animation */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hero Title Animation */
@keyframes heroTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover effect đơn giản cho hero title */
.hero-title:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


/* Gradient animation */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Gradient animation nhanh cho hover */
@keyframes gradientShiftFast {
    0%, 100% {
        background-position: 0% 50%;
        text-shadow:
            0 0 15px rgba(124, 179, 66, 0.8),
            0 0 30px rgba(239, 83, 80, 0.6);
    }
    25% {
        background-position: 25% 25%;
        text-shadow:
            0 0 20px rgba(255, 215, 0, 0.9),
            0 0 40px rgba(124, 179, 66, 0.7);
    }
    50% {
        background-position: 100% 50%;
        text-shadow:
            0 0 25px rgba(239, 83, 80, 1),
            0 0 50px rgba(255, 215, 0, 0.8);
    }
    75% {
        background-position: 75% 75%;
        text-shadow:
            0 0 20px rgba(124, 179, 66, 0.9),
            0 0 40px rgba(239, 83, 80, 0.7);
    }
}

/* Hero Subtitle Animation */
@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Beta Badge Animation */
@keyframes betaBadgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    60% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card Float Animation */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* CTA Button Animation */
@keyframes ctaButtonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==================== Pagination Styles (Public Web) ==================== */
nav[role="navigation"] {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination li {
    display: inline-block;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-text);
    background: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Active page */
.pagination li.active span {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green) 0%, #66BB6A 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transform: scale(1.05);
}

/* Hover effect */
.pagination li a:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 18px rgba(76, 175, 80, 0.4);
}

/* Disabled state */
.pagination li.disabled span {
    color: #bdbdbd;
    background: #f5f5f5;
    cursor: not-allowed;
    border-color: #eeeeee;
    box-shadow: none;
}

.pagination li.disabled span:hover {
    background: #f5f5f5;
    border-color: #eeeeee;
    transform: none;
}

/* Previous and Next buttons */
.pagination li:first-child a,
.pagination li:last-child a {
    font-weight: 700;
    padding: 0 18px;
}

.pagination li:first-child a:hover,
.pagination li:last-child a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 6px 18px rgba(211, 47, 47, 0.4);
}

/* Dots (ellipsis) */
.pagination li.disabled {
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .pagination li a,
    .pagination li span {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
        padding: 0 12px;
    }

    .pagination li:first-child a,
    .pagination li:last-child a {
        padding: 0 14px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }

    .pagination li a,
    .pagination li span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 10px;
        border-radius: 8px;
    }

    .pagination li:first-child a,
    .pagination li:last-child a {
        padding: 0 12px;
    }

    /* Hide some page numbers on very small screens */
    .pagination li:not(.active):not(:first-child):not(:last-child):not(.disabled) {
        display: none;
    }

    .pagination li:not(.active):not(:first-child):not(:last-child):not(.disabled):nth-child(2),
    .pagination li:not(.active):not(:first-child):not(:last-child):not(.disabled):nth-last-child(2) {
        display: inline-block;
    }
}
