/*
Theme Name: GDT Group Theme
Author: Henry Duy
Description: Custom theme for GDT Group
Version: 1.1.7
*/

/* GDT Group UI/UX Mockup Design System - LIGHT MODE */

:root {
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --border-glass: rgba(15, 23, 42, 0.08);
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.08);
    --cyan: #0891b2;
    --cyan-glow: rgba(8, 145, 178, 0.08);
    --accent: #4f46e5;
    --text-main: #0f172a;
    --text-muted: #475569;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-h1: linear-gradient(to right, #0f172a, var(--primary), var(--cyan));
    --gradient-btn: linear-gradient(135deg, var(--cyan), var(--primary));
    --shadow-btn: 0 4px 15px rgba(37, 99, 235, 0.15);
    --shadow-btn-hover: 0 6px 20px rgba(37, 99, 235, 0.3);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Entity Anchor Text Styles inside <main> */
main p a, 
main div a:not(.btn-primary):not(.btn-secondary):not(.hero-badge):not(.nav-link):not(.breadcrumbs a):not(.social-brand-btn):not(.filter-btn):not(.category-tab) {
    color: var(--primary);
    font-weight: 700;
}
main p a:hover, 
main div a:not(.btn-primary):not(.btn-secondary):not(.hero-badge):not(.nav-link):not(.breadcrumbs a):not(.social-brand-btn):not(.filter-btn):not(.category-tab):hover {
    text-decoration: underline;
}

h1, h1.section-title {
    background: var(--gradient-h1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

/* Hero Badge & Pulsing Dot */
.hero-badge {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    cursor: default;
}

.hero-badge:hover {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--cyan);
    animation: pulse-badge-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-badge-dot {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.logo-text {
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 1px;
    background: linear-gradient(to right, #0f172a, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.02);
}


.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.25rem 0;
}

button.nav-link {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    cursor: pointer;
    outline: none;
}

.nav-link:hover, .nav-link.active, button.nav-link:hover {
    color: var(--primary);
}

/* Dropdown navigation styles */
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 2px 6px rgba(37, 99, 235, 0.04);
    list-style: none;
    padding: 0.5rem;
    min-width: 320px;
    width: max-content !important;
    white-space: nowrap !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}
.dropdown-menu li {
    margin-bottom: 2px;
    white-space: nowrap !important;
}
.dropdown-menu li:last-child {
    margin-bottom: 0;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    border-radius: 10px;
    white-space: nowrap !important;
    transition: all 0.2s ease;
}
.dropdown-menu li a span {
    white-space: nowrap !important;
    display: inline-block !important;
}
.dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    transform: translateX(3px);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), var(--primary));
    border-radius: 2px;
}

.btn-contact {
    background: var(--gradient-btn);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-btn);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

/* Common Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
}

/* Sections styling */
section {
    margin-bottom: 6rem;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.press-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.press-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.25) !important;
}
/* Universal Hero Sapo Paragraph Separation Spacing Across All Templates */
.fanmen-hero-sapo p,
.agency-hero-sapo p,
.beauty-hero-sapo p,
.careers-hero-sapo p,
.culture-hero-sapo p,
.ecosystem-hero-sapo p,
.team-hero-sapo p,
.tech-hero-sapo p,
.hero-paragraphs p,
.hero-sapo p,
.hero-desc p {
    margin-bottom: 1.25rem !important;
    line-height: 1.75 !important;
}

.fanmen-hero-sapo p:last-child,
.agency-hero-sapo p:last-child,
.beauty-hero-sapo p:last-child,
.careers-hero-sapo p:last-child,
.culture-hero-sapo p:last-child,
.ecosystem-hero-sapo p:last-child,
.team-hero-sapo p:last-child,
.tech-hero-sapo p:last-child,
.hero-paragraphs p:last-child,
.hero-sapo p:last-child,
.hero-desc p:last-child {
    margin-bottom: 0 !important;
}
/* Universal Section Description Styling for All Non-Hero Sections */
.section-desc,
.section-intro,
.section-intro-text,
.agency-press-intro-wrapper {
    color: var(--text-muted) !important;
    text-align: center !important;
    max-width: 780px !important;
    margin: 0.75rem auto 2.5rem auto !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.section-desc p,
.section-intro p,
.section-intro-text p,
.agency-press-intro-wrapper p {
    color: var(--text-muted) !important;
    text-align: center !important;
    max-width: 780px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient buttons */
.btn-primary {
    background: var(--gradient-btn);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-btn);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-glass);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, 0.15);
}

/* Footer styling */
footer {
    background: #f1f5f9;
    border-top: 1px solid var(--border-glass);
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 3rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4,
.footer-col .footer-title {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: block;
    font-family: var(--font-sans);
}

.footer-col h4::after,
.footer-col .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Ecosystem Partner Links styling */
.partner-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: #ffffff;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.partner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.partner-gdt:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
}

.partner-fanmen:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.02);
}


.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Form controls for Light Mode */
.form-control {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(8, 145, 178, 0.1);
}

/* Responsive & Mobile Navigation Drawer */
body.menu-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Base Hamburger Icon */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 22px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
        position: relative;
        margin-left: 0.5rem;
    }
    
    .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--text-main);
        border-radius: 2px;
        transition: var(--transition);
        transform-origin: left center;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(1px, -1px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 1px);
    }

    /* Mobile Drawer */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-glass);
        padding: 6rem 2rem 2rem 2rem;
        z-index: 999;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
        gap: 1.25rem;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        font-weight: 700;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }
    
    /* Mobile Dropdown (Accordion style) */
    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        padding-top: 0.25rem;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }
    
    .nav-menu .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .nav-menu .dropdown-menu li {
        margin-bottom: 0.5rem;
    }
    
    .nav-menu .dropdown-menu a {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-muted);
        padding: 0.25rem 0;
        display: block;
    }
    
    /* Layout adjustments */
    .container {
        padding-top: 5.5rem;
        padding-bottom: 2.5rem;
    }
    
    section {
        margin-bottom: 3.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-contact {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Bilingual Language Switcher Layout & Logic */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-glass);
    padding: 0.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
}

.lang-btn {
    display: inline-block;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    background: var(--primary);
    color: white;
}

/* Visibility toggles based on active language */
body:not(.lang-en) [lang="en"] {
    display: none !important;
}

body.lang-en [lang="vi"] {
    display: none !important;
}

/* Breadcrumbs styling */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}
.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs .separator {
    color: rgba(15, 23, 42, 0.2);
}
.breadcrumbs .current {
    color: var(--cyan);
}

/* Corporate Profile Metadata Section styling */
.company-profile-section {
    margin-top: 4rem;
    margin-bottom: 6rem;
}
.profile-meta-card {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.profile-meta-title-col h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.profile-meta-title-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.profile-meta-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.profile-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.95rem;
}
.profile-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.profile-meta-key {
    font-weight: 700;
    color: var(--text-muted);
}
.profile-meta-val {
    font-weight: 800;
    color: var(--text-main);
}
.profile-meta-val a {
    color: var(--primary);
}
.profile-meta-val a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .profile-meta-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

/* Footer social icons hover effect */
.footer-socials a:hover {
    background: var(--primary) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* ==========================================
   Ecosystem Overview Page Styles
   ========================================== */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.eco-card-large {
    display: flex;
    flex-direction: column;
    padding: 2.25rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.eco-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.eco-card-large .eco-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.eco-card-large .eco-card-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.eco-card-large .eco-card-tag {
    padding: 0.3rem 0.85rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eco-card-large h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.eco-card-large .eco-card-slogan {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.eco-card-large .eco-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.eco-card-large .eco-card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-glass);
}

/* Brand styling accents */
.card-agency {
    border-top: 4px solid var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, rgba(37, 99, 235, 0.01) 100%);
}
.card-agency .eco-card-tag {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.card-fanmen {
    border-top: 4px solid #10b981;
    background: linear-gradient(135deg, #ffffff 0%, rgba(16, 185, 129, 0.01) 100%);
}
.card-fanmen .eco-card-tag {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}
.card-fanmen .eco-card-slogan {
    color: #10b981;
}

.card-tech {
    border-top: 4px solid #8b5cf6;
    background: linear-gradient(135deg, #ffffff 0%, rgba(139, 92, 246, 0.01) 100%);
}
.card-tech .eco-card-tag {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}
.card-tech .eco-card-slogan {
    color: #8b5cf6;
}

.card-home {
    border-top: 4px solid #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 158, 11, 0.01) 100%);
}
.card-home .eco-card-tag {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}
.card-home .eco-card-slogan {
    color: #f59e0b;
}

.card-beautytech {
    border-top: 4px solid #ec4899;
    background: linear-gradient(135deg, #ffffff 0%, rgba(236, 72, 153, 0.01) 100%);
}
.card-beautytech .eco-card-tag {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
}
.card-beautytech .eco-card-slogan {
    color: #ec4899;
}

/* Interactive flow diagram styles */
.eco-diagram-container {
    position: relative;
    padding: 3rem;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
}

.eco-diagram-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    position: relative;
}

.diagram-svg-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.diagram-center {
    z-index: 10;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
    text-align: center;
    padding: 1rem;
}

.diagram-center .center-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diagram-center .center-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 600;
}

.diagram-node-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    transition: var(--transition);
}

.diagram-node-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: var(--transition);
    cursor: pointer;
}

.diagram-node-circle img {
    height: 22px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.diagram-node-label {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

/* Diagram positioning and brand border color */
.node-agency { transform: translate(0, -140px); }
.node-agency .diagram-node-circle { border-color: var(--primary); }
.node-agency .diagram-node-circle:hover { background: rgba(37, 99, 235, 0.05); transform: scale(1.1); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15); }

.node-fanmen { transform: translate(130px, -45px); }
.node-fanmen .diagram-node-circle { border-color: #10b981; }
.node-fanmen .diagram-node-circle:hover { background: rgba(16, 185, 129, 0.05); transform: scale(1.1); box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15); }

.node-tech { transform: translate(80px, 100px); }
.node-tech .diagram-node-circle { border-color: #8b5cf6; }
.node-tech .diagram-node-circle:hover { background: rgba(139, 92, 246, 0.05); transform: scale(1.1); box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15); }

.node-home { transform: translate(-80px, 100px); }
.node-home .diagram-node-circle { border-color: #f59e0b; }
.node-home .diagram-node-circle:hover { background: rgba(245, 158, 11, 0.05); transform: scale(1.1); box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15); }

.node-beautytech { transform: translate(-130px, -45px); }
.node-beautytech .diagram-node-circle { border-color: #ec4899; }
.node-beautytech .diagram-node-circle:hover { background: rgba(236, 72, 153, 0.05); transform: scale(1.1); box-shadow: 0 12px 30px rgba(236, 72, 153, 0.15); }

@media (max-width: 768px) {
    .eco-diagram-wrapper {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .diagram-svg-arrows { display: none; }
    .diagram-node-item { position: relative; transform: none !important; flex-direction: row; gap: 1rem; width: 100%; max-width: 250px; justify-content: flex-start; }
    .diagram-node-circle { width: 60px; height: 60px; }
    .diagram-center { margin-bottom: 2rem; width: 110px; height: 110px; }
    .diagram-node-label { margin-top: 0; }
}

/* Policy Pages Layout */
.policy-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 6rem;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.policy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.policy-nav-item a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.policy-nav-item.active a, .policy-nav-item a:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.06));
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.03);
}

.policy-content .policy-card {
    padding: 3rem;
    border-radius: 20px;
}

.policy-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policy-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.policy-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-card li {
    margin-bottom: 0.5rem;
}

/* Glassmorphism Table Styling */
.policy-table-wrapper {
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.policy-table th {
    background: rgba(15, 23, 42, 0.03);
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-glass);
}

.policy-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-muted);
    line-height: 1.5;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover {
    background: rgba(37, 99, 235, 0.01);
}

@media (max-width: 992px) {
    .policy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .policy-sidebar {
        position: relative;
        top: 0;
    }
    .policy-nav-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .policy-nav-item {
        flex-shrink: 0;
    }
}

/* Policies Landing Page (policies.html) */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3.5rem 0 6rem 0;
}

.policies-card {
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.policies-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.policies-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.policies-card:hover .policies-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.policies-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.policies-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.policies-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.policies-btn:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}


/* Directory Grid & Profile Card Styles (shared between Team & About) */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 6rem;
}
.member-profile-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}
.member-profile-card.hidden {
    display: none !important;
}
.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.25rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    transition: var(--transition);
}
.member-profile-card:hover .avatar-circle {
    transform: scale(1.05);
}
.role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: center;
}

/* Division-specific colors */
.div-execs .avatar-circle { background: linear-gradient(135deg, #4f46e5, #3b82f6); }
.div-execs .role-badge { background: rgba(79, 70, 229, 0.08); color: #4f46e5; border: 1px solid rgba(79, 70, 229, 0.15); }

.div-agency .avatar-circle { background: linear-gradient(135deg, #3b82f6, #0891b2); }
.div-agency .role-badge { background: rgba(37, 99, 235, 0.08); color: #2563eb; border: 1px solid rgba(37, 99, 235, 0.15); }

.div-fanmen .avatar-circle { background: linear-gradient(135deg, #10b981, #059669); }
.div-fanmen .role-badge { background: rgba(16, 185, 129, 0.08); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.15); }

.div-tech .avatar-circle { background: linear-gradient(135deg, #a855f7, #6366f1); }
.div-tech .role-badge { background: rgba(168, 85, 247, 0.08); color: #a855f7; border: 1px solid rgba(168, 85, 247, 0.15); }

.div-home .avatar-circle { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.div-home .role-badge { background: rgba(6, 182, 212, 0.08); color: #0891b2; border: 1px solid rgba(6, 182, 212, 0.15); }

.div-beauty .avatar-circle { background: linear-gradient(135deg, #ec4899, #d946ef); }
.div-beauty .role-badge { background: rgba(236, 72, 153, 0.08); color: #ec4899; border: 1px solid rgba(236, 72, 153, 0.15); }

.member-profile-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.member-profile-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 1rem;
}
.member-profile-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    border-top: 1px dashed var(--border-glass);
    padding-top: 1rem;
    margin-top: auto;
}

@media (max-width: 1200px) {
    .directory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .directory-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   About Page Specific Styles
   ========================================== */

/* About specific layout */
.intro-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.intro-text {
    flex: 1.2;
}
.intro-graphic {
    flex: 0.8;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(99, 102, 241, 0.05));
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}
.intro-graphic-big-val {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, var(--text-main), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Horizontal Timeline Styles */
.timeline-container-horizontal {
    position: relative;
    width: 100%;
    overflow-x: auto;
    padding: 2rem 0;
    margin-bottom: 5rem;
    /* hide scrollbar but keep scroll functionality */
    scrollbar-width: thin;
    scrollbar-color: var(--border-glass) transparent;
}
.timeline-container-horizontal::-webkit-scrollbar {
    height: 6px;
}
.timeline-container-horizontal::-webkit-scrollbar-track {
    background: transparent;
}
.timeline-container-horizontal::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 3px;
}
.timeline-track-horizontal {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    min-width: max-content;
    position: relative;
}
.timeline-track-horizontal::before {
    content: '';
    position: absolute;
    top: 7px; /* Align with center of the 14px dot */
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--border-glass);
    z-index: 1;
}
.timeline-card-horizontal {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.timeline-dot-horizontal {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--cyan);
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 3;
    transition: var(--transition);
}
.timeline-card-horizontal:hover .timeline-dot-horizontal {
    background-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    transform: scale(1.2);
}
.timeline-content-horizontal {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    flex-grow: 1;
}
.timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}
.timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Leader Profiles Detail Grid */
.leader-profile-section {
    background: rgba(15, 23, 42, 0.01);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 6rem 0;
}
.leader-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}
.leader-detail-card:last-child {
    margin-bottom: 0;
}
.leader-detail-avatar {
    flex: 0.3;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    min-width: 180px;
}
.leader-detail-info {
    flex: 1.7;
}
.leader-detail-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}
.leader-detail-meta {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.leader-detail-meta span {
    color: var(--text-muted);
    margin-right: 1.5rem;
}
.leader-info-title {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 0.25rem;
}
.leader-list {
    list-style-type: none;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.leader-list li {
    margin-bottom: 0.4rem;
    padding-left: 1.25rem;
    position: relative;
}
.leader-list li::before {
    content: '•';
    color: var(--cyan);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .intro-block, .leader-detail-card {
        flex-direction: column;
    }
}

/* Vision, Mission, Core Values styles */
.vmc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.vmc-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.vmc-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(8, 145, 178, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
    color: var(--cyan);
}

.vmc-card:hover .vmc-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.vmc-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.vmc-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .vmc-grid {
        grid-template-columns: 1fr;
    }
}

/* Policies Landing Page (policies.html) */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3.5rem 0 6rem 0;
}

.policies-card {
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    text-decoration: none;
}

.policies-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.policies-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.policies-card:hover .policies-icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.policies-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    margin-top: 0;
}

.policies-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.policies-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.policies-btn:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}

/* Policy Pages Layout */
.policy-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 6rem;
}

.policy-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.policy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.policy-nav-item a {
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.policy-nav-item.active a, .policy-nav-item a:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.06));
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.03);
}

.policy-content .policy-card {
    padding: 3rem;
    border-radius: 20px;
}

.policy-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.policy-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.policy-card ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-card li {
    margin-bottom: 0.5rem;
}

/* Glassmorphism Table Styling */
.policy-table-wrapper {
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.policy-table th {
    background: rgba(15, 23, 42, 0.03);
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    border-bottom: 2px solid var(--border-glass);
}

.policy-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-muted);
    line-height: 1.5;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.policy-table tr:hover {
    background: rgba(37, 99, 235, 0.01);
}

@media (max-width: 992px) {
    .policy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .policy-sidebar {
        position: relative;
        top: 0;
    }
    .policy-nav-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .policy-nav-item {
        flex-shrink: 0;
    }
}

/* Category page custom styles */
.news-hero {
    text-align: center;
    padding: 2rem 2rem 4rem 2rem;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
}
.news-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Filter Controls */
.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}
.category-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.category-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    color: var(--text-muted);
    transition: var(--transition);
}
.category-tab:hover {
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.15);
    background: rgba(37, 99, 235, 0.02);
}
.category-tab.active {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-btn);
}

/* Search input */
.search-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}
.search-input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border-radius: 99px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.1);
}
.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.9rem;
}

/* News Grid and Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}
.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 16px;
    position: relative;
    height: 100%;
}
.hidden {
    display: none !important;
}
.news-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(8, 145, 178, 0.05));
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.news-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), transparent);
    transition: var(--transition);
}
.news-card:hover .news-img-placeholder::after {
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.2), transparent);
}
.news-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}
.news-category-badge.agency {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
}
.news-category-badge.fanmen {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.news-category-badge.tech {
    background: rgba(79, 70, 229, 0.08);
    color: var(--accent);
    border: 1px solid rgba(79, 70, 229, 0.15);
}
.news-category-badge.home {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.15);
}
.news-category-badge.beautytech {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.15);
}
.news-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.news-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.45;
    transition: var(--transition);
}
.news-card:hover .news-card-title {
    color: var(--primary);
}
.news-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.news-read-link {
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}
.news-read-link::after {
    content: '→';
    transition: transform 0.2s ease;
}
.news-card:hover .news-read-link::after {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
}
.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.page-btn:hover:not(.disabled) {
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.15);
    background: rgba(37, 99, 235, 0.02);
}
.page-btn.active {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-btn);
}
.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty state styling */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: span 3;
    color: var(--text-muted);
}
.no-results div {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
    .search-wrapper {
        max-width: 100%;
    }
}

/* Post Detail Page Layout */
.article-header {
    margin-top: 5.5rem;
    margin-bottom: 2rem;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 0;
    margin-bottom: 6rem;
}

/* Article Main Content */
.article-card {
    padding: 3rem;
}
.article-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.article-category.agency {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
}
.article-category.fanmen {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.article-category.tech {
    background: rgba(79, 70, 229, 0.08);
    color: var(--accent);
    border: 1px solid rgba(79, 70, 229, 0.15);
}
.article-category.home {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.15);
}
.article-category.beautytech {
    background: rgba(236, 72, 153, 0.08);
    color: #ec4899;
    border: 1px solid rgba(236, 72, 153, 0.15);
}
.article-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #0f172a, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.article-hero-img {
    height: 380px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(8, 145, 178, 0.05));
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.02);
}
.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}
.article-body p {
    margin-bottom: 1.5rem;
}
.article-quote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    background: rgba(37, 99, 235, 0.02);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    margin: 2.5rem 0;
    line-height: 1.6;
}

/* Sidebar styling */
.sidebar-card {
    padding: 2.5rem;
}
.sidebar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-glass);
}

/* Recent posts list */
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.recent-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}
.recent-item-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.recent-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    transition: var(--transition);
}
.recent-item:hover .recent-item-title {
    color: var(--primary);
}

/* Back button styling */
.btn-back-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .article-card {
        padding: 2rem;
    }
    .article-hero-img {
        height: 240px;
        font-size: 4rem;
    }
    .article-title {
        font-size: 1.85rem;
    }
}

/* Member detail custom layout */
.detail-wrapper {
    margin-top: 5.5rem;
    padding-top: 2rem;
    margin-bottom: 6rem;
}
.profile-header-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    margin-bottom: 3rem;
}
.profile-avatar-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    flex-shrink: 0;
}
.profile-header-info {
    flex-grow: 1;
}
.profile-name {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.profile-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 1rem;
}
.profile-badge-detail {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-glow);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
}
.info-title-detail {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--cyan);
    padding-left: 0.75rem;
}
.info-card-detail {
    padding: 2.5rem;
    margin-bottom: 2rem;
}

/* Achievements List */
.achievement-list {
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.achievement-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}
.achievement-list li::before {
    content: '✓';
    color: var(--cyan);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Timeline styling */
.timeline-wrapper {
    margin-top: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(79, 70, 229, 0.15);
}
.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-badge {
    position: absolute;
    left: -23px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--card-bg);
    box-shadow: var(--shadow-sm);
}
.timeline-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.timeline-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.15rem;
}
.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Skills Progress Bar */
.skill-bar-wrapper {
    margin-bottom: 1.25rem;
}
.skill-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}
.progress-track {
    height: 8px;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--cyan));
    border-radius: 4px;
    width: 0%; 
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Meta Contact */
.meta-contact-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.back-btn-wrapper {
    margin-bottom: 2rem;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}
.back-btn:hover {
    color: var(--primary);
    transform: translateX(-3px);
}

@media (max-width: 900px) {
    .profile-header-card {
        flex-direction: column;
        text-align: center;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .meta-contact-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Rich Text Content formatting inside Member Profile */
.rich-text-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.rich-text-content p {
    margin-bottom: 1rem;
}
.rich-text-content p:last-child {
    margin-bottom: 0;
}
.rich-text-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.rich-text-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.rich-text-content li {
    margin-bottom: 0.5rem;
}
.rich-text-content li::marker {
    color: var(--primary);
}

/* Dedicated About Us Page (Về Chúng Tôi) Premium Styling System */
.about-hero-v2 {
    text-align: center;
    padding: 3rem 2rem 4rem 2rem;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 65%);
    border-radius: 24px;
    margin-bottom: 3.5rem;
}
.about-hero-v2 h1 {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.25;
    background: var(--gradient-h1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
}
.about-hero-v2 p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.about-stat-card {
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}
.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.25);
}
.about-stat-val {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.35rem;
    line-height: 1;
}
.about-stat-lbl {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.about-stat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.vmc-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}
.vmc-card-v2 {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-glass);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.vmc-card-v2:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}
.vmc-badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

@media (max-width: 900px) {
    .about-stats-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .vmc-grid-v2 {
        grid-template-columns: 1fr;
    }
    .about-hero-v2 h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 500px) {
    .about-stats-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   About Page Layout (Classic Design Restoration)
   ========================================== */
.about-hero-section {
    margin-bottom: 3.5rem;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.about-hero-text h1.hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.about-hero-text p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

.about-hero-text p a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.about-hero-text p a:hover {
    text-decoration: underline;
}

.about-hero-media {
    width: 100%;
}

.about-hero-media .hero-photo {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-glass);
    display: block;
}

/* About Stats Grid */
.about-stats-section {
    margin-bottom: 3.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border-color: rgba(37, 99, 235, 0.2);
}

.about-stat-card .stat-number {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.about-stat-card .stat-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.about-stat-card .stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Legal Corporate Profile Card */
.legal-profile-card {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.legal-profile-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: center;
}

.legal-profile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.legal-profile-logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.04));
}

.legal-profile-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.legal-profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-glass);
}

.legal-profile-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-profile-row .label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.legal-profile-row .val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
}

.legal-profile-row .val a {
    color: var(--primary);
    text-decoration: none;
}

.legal-profile-row .val a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .legal-profile-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .legal-profile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .legal-profile-row .val {
        text-align: left !important;
    }
}

@media (max-width: 576px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Social Media Brand Icons */
.about-social-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.social-brand-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    position: relative;
}

.social-brand-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-brand-btn:hover {
    transform: translateY(-4px) scale(1.08);
}

.social-brand-btn.brand-fb:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-brand-btn.brand-yt:hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-brand-btn.brand-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}

.social-brand-btn.brand-in:hover {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

.social-brand-btn.brand-x:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
}

.social-brand-btn.brand-pt:hover {
    background: #e60023;
    color: #ffffff;
    border-color: #e60023;
    box-shadow: 0 8px 20px rgba(230, 0, 35, 0.4);
}

.social-brand-btn.brand-tt:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-brand-btn.brand-wa:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-brand-btn.brand-tg:hover {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

@media (max-width: 768px) {
    .agency-editorial-grid {
        grid-template-columns: 1fr !important;
    }
}





/* ==========================================
   Dark Theme Contact Section (Restored Style)
   ========================================== */
.dark-contact-section {
    background: #0b0f19;
    border-radius: 24px;
    padding: 4rem 3rem;
    color: #ffffff;
    margin-bottom: 6rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
}

.dark-contact-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.dark-contact-header h2 span.gradient-orange {
    background: linear-gradient(135deg, #ff7e5f, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-contact-header p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

.dark-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dark-contact-card {
    background: #141c2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dark-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.orange-accent-line {
    width: 32px;
    height: 3px;
    background: #f97316;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.dark-card-subtitle {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Left Card Items */
.dark-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.dark-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.dark-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark-contact-info .item-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.dark-contact-info .item-val {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.dark-contact-info .item-val a {
    color: #cbd5e1;
    text-decoration: underline;
    text-decoration-color: rgba(203, 213, 225, 0.4);
}

.dark-contact-info .item-val a:hover {
    color: #f97316;
}

.dark-contact-tagline {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-style: italic;
    font-weight: 700;
    color: #f97316;
    text-align: center;
}

/* Right Card 2x2 Sub-Cards Grid */
.dark-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.dark-social-card {
    background: #1a243a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.dark-social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #1f2b45;
}

.dark-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dark-social-icon.icon-fb {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
}

.dark-social-icon.icon-yt {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.dark-social-icon.icon-in {
    background: rgba(10, 102, 194, 0.15);
    color: #0a66c2;
}

.dark-social-icon.icon-x {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dark-social-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.dark-social-card p {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .dark-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .dark-social-grid {
        grid-template-columns: 1fr;
    }
    .dark-contact-section {
        padding: 2.5rem 1.5rem;
    }
}


