/* ==========================================
   SAO VALUATION - COMPLETE CSS
   Navy #0A2463 + Gold #D4AF37 Theme
   Fixed Header + Improved Mobile Menu
   ========================================== */

:root {
    /* Colors */
    --primary: #0A2463;
    --primary-light: #1a3a7a;
    --primary-dark: #061a4a;
    --secondary: #D4AF37;
    --secondary-light: #e5c55a;
    --secondary-dark: #b8962e;
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-light: #6b6b8a;
    --text-white: #ffffff;
    
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    --white: #ffffff;
    --black: #000000;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(10, 36, 99, 0.05);
    --shadow-md: 0 4px 12px rgba(10, 36, 99, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 36, 99, 0.12);
    --shadow-xl: 0 20px 60px rgba(10, 36, 99, 0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */

.language-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    
    /* GPU acceleration for smooth animation */
    transform: translateZ(0);
    will-change: transform, background-color;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.2s ease;
}

.lang-btn:hover {
    background: var(--bg-light);
    transform: translateZ(0) scale(1.12);
}

.lang-btn:active {
    transform: translateZ(0) scale(0.9);
    transition: transform 0.1s ease;
}

/* Active indicator - sliding background */
.lang-btn.active {
    background: var(--primary);
    box-shadow: 0 3px 12px rgba(10, 36, 99, 0.35);
}

.lang-btn.active:hover {
    transform: translateZ(0) scale(1.05);
}

/* Smooth switching animation */
.lang-btn.switching {
    animation: langSwitch 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes langSwitch {
    0% { 
        transform: translateZ(0) scale(1);
        background-color: transparent;
    }
    40% { 
        transform: translateZ(0) scale(0.85);
    }
    100% { 
        transform: translateZ(0) scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .language-switcher {
        top: auto;
        bottom: 90px;
        right: 15px;
        padding: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    /* Hide non-active buttons by default on mobile */
    .language-switcher .lang-btn:not(.active) {
        display: none;
        opacity: 0;
        transform: scale(0.8);
    }
    
    /* Show all buttons when expanded */
    .language-switcher.expanded .lang-btn:not(.active) {
        display: flex;
        opacity: 1;
        transform: scale(1);
        animation: fadeInBtn 0.2s ease forwards;
    }
    
    .language-switcher.expanded {
        padding: 6px;
    }
    
    @keyframes fadeInBtn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .lang-btn {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
    
    /* Add indicator arrow when collapsed */
    .language-switcher::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid var(--primary);
        opacity: 0.5;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    
    .language-switcher.expanded::after {
        opacity: 0;
        transform: translateX(-50%) rotate(180deg);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   HEADER - FIXED: Nền trắng, logo rõ ràng
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

/* Khi cuộn xuống - giữ nguyên */
.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 0.5rem;
}

/* Logo - luôn rõ ràng */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 0.5rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 0.5rem 0;
    z-index: 100;
}

/* Desktop hover - only for larger screens */
@media (min-width: 1025px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-menu li a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.5rem;
}

/* Nav Actions - Desktop */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.phone-numbers {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--secondary);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-dark);
    white-space: nowrap;
}

.phone-item:hover {
    color: var(--primary);
}

.phone-divider {
    color: var(--primary);
    opacity: 0.5;
}

/* Responsive cho desktop nhỏ và laptop */
@media (max-width: 1350px) {
    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .phone-numbers {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }
    
    .nav-actions .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .logo img {
        height: 48px;
    }
}

@media (max-width: 1200px) {
    .nav-link {
        padding: 0.4rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .phone-numbers {
        display: none;
    }
    
    .nav-actions .btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .logo img {
        height: 45px;
    }
}

@media (max-width: 1100px) {
    /* Ẩn một số menu items không quan trọng */
    .nav-menu > li:nth-child(5),
    .nav-menu > li:nth-child(6) {
        display: none;
    }
}

/* Mobile Menu Toggle - Smooth hamburger animation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    margin-bottom: 5px;
}

.nav-toggle span:nth-child(3) {
    margin-top: 5px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Extra Items */
.nav-mobile-extra {
    display: none;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    -webkit-tap-highlight-color: transparent;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .mobile-overlay {
        display: block;
    }
}

/* ==========================================
   MOBILE MENU - Smooth Animation với Transform
   ========================================== */

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height cho mobile */
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        padding-top: 80px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1100;
        
        /* Smooth transform animation - GPU accelerated */
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
        will-change: transform;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Menu items container */
    .nav-menu > li {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: block !important; /* Override hidden items from 1100px breakpoint */
    }
    
    .nav-menu.active > li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Stagger animation for menu items */
    .nav-menu.active > li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active > li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active > li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active > li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active > li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active > li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active > li:nth-child(7) { transition-delay: 0.35s; }
    .nav-menu.active > li:nth-child(8) { transition-delay: 0.4s; }
    
    .nav-link {
        color: var(--text-primary);
        padding: 0.875rem 1.25rem;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-link:active {
        background: var(--bg-light);
    }
    
    .nav-link.active {
        color: var(--primary);
        background: rgba(10, 36, 99, 0.05);
    }
    
    /* Reset desktop ::after for all nav-links in mobile */
    .nav-link::after {
        display: none !important;
        content: none !important;
    }
    
    /* Dropdown arrow for mobile - use a separate element approach */
    .nav-dropdown > .nav-link {
        position: relative;
        padding-right: 3rem;
    }
    
    .nav-dropdown > .nav-link::before {
        content: '';
        position: absolute;
        right: 1.5rem;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--text-secondary);
        border-bottom: 2px solid var(--text-secondary);
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.open > .nav-link::before {
        transform: translateY(-50%) rotate(-135deg);
    }
    
    /* Dropdown menu trong mobile - CRITICAL OVERRIDES */
    .nav-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        background: var(--bg-light);
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
        border-radius: 0;
        min-width: 100%;
        left: 0;
    }
    
    .nav-dropdown.open > .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 1.25rem 0.75rem 2rem;
        color: var(--text-secondary);
        font-size: 0.875rem;
        display: block;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .dropdown-menu li a:active {
        background: rgba(10, 36, 99, 0.08);
        color: var(--primary);
    }
    
    /* Mobile extra items - Phone & CTA */
    .nav-mobile-extra {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
        margin-top: auto;
        border-top: 1px solid var(--border-color);
        background: var(--bg-light);
    }
    
    .mobile-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background: var(--white);
        border-radius: var(--radius-md);
        color: var(--primary);
        font-weight: 600;
        font-size: 0.95rem;
        border: 1px solid var(--border-color);
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-phone:active {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }
    
    .nav-mobile-extra .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    /* Hide desktop elements */
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    /* Logo and header compact on tablet/mobile */
    .logo img {
        height: 42px;
    }
    
    .nav {
        height: 70px;
    }
    
    .nav-menu {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .logo img {
        height: 36px;
    }
    
    .nav {
        height: 60px;
        padding: 0 0.5rem;
    }
    
    .header .container {
        padding: 0 0.75rem;
    }
    
    .nav-menu {
        padding-top: 60px;
    }
    
    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .nav-toggle span {
        width: 20px;
    }
}

/* Medium mobile devices */
@media (max-width: 768px) {
    .nav {
        height: 65px;
    }
    
    .logo img {
        height: 38px;
    }
    
    .nav-menu {
        padding-top: 65px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-mobile-extra {
        padding: 1rem;
        gap: 0.625rem;
    }
    
    .mobile-phone {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .nav-mobile-extra .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #050d1f 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-divider {
    opacity: 0.5;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.title-accent {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-commitment {
    font-size: 1rem;
    color: var(--secondary);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-commitment {
        color: var(--secondary) !important;
    }
}

/* ==========================================
   PROCESS MODAL
   ========================================== */

.process-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.process-modal.active {
    opacity: 1;
    visibility: visible;
}

.process-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 99, 0.9);
    backdrop-filter: blur(10px);
}

.process-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

.process-modal.active .process-modal-content {
    transform: scale(1) translateY(0);
}

.process-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.process-modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.process-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.75rem;
}

/* Process Slider */
.process-slider {
    position: relative;
}

.process-slides {
    position: relative;
    min-height: 320px;
    overflow: visible;
}

.process-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.process-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.process-slide.prev {
    transform: translateX(-100px);
}

.slide-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.slide-step {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--secondary);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.slide-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    width: 100%;
}

/* Progress Indicators */
.process-progress {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.progress-dot {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.progress-dot:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.progress-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.progress-dot.completed {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
}

.progress-bar {
    height: 4px;
    background: var(--bg-light);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Navigation Buttons */
.process-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.process-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.process-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
}

.process-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.process-btn.next {
    background: var(--primary);
    color: var(--white);
}

.process-btn.next:hover:not(:disabled) {
    background: var(--primary-dark);
}

/* CTA */
.process-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .process-modal-content {
        max-width: 95%;
        padding: 2.5rem 2rem;
    }
    
    .process-slides {
        min-height: 350px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .process-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: var(--radius-lg);
        max-height: 85vh;
    }
    
    .process-slides {
        min-height: auto;
    }
    
    .process-slide {
        position: relative;
        display: none;
        padding: 1rem 0.5rem;
    }
    
    .process-slide.active {
        display: flex;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .slide-icon {
        width: 60px;
        height: 60px;
    }
    
    .slide-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .slide-title {
        font-size: 1.25rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .progress-dot {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .process-nav {
        flex-direction: column;
    }
    
    .process-btn {
        justify-content: center;
    }
}

/* ==========================================
   CAREERS MODAL
   ========================================== */

.careers-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.careers-modal.active {
    opacity: 1;
    visibility: visible;
}

.careers-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 36, 99, 0.9);
    backdrop-filter: blur(10px);
}

.careers-modal-content {
    position: relative;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

.careers-modal.active .careers-modal-content {
    transform: scale(1) translateY(0);
}

.careers-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    z-index: 10;
}

.careers-modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.careers-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.careers-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.careers-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.careers-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.careers-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
}

.careers-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible;
}

.careers-section {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    overflow: visible;
}

.careers-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.careers-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Positions Grid */
.positions-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.position-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.position-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.position-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
}

.position-info {
    flex: 1;
}

.position-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.position-type {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.position-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    background: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Job Descriptions */
.job-descriptions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.job-item {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary);
    overflow: visible;
}

.job-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.job-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-primary);
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Organizational Chart Image */
.org-chart-image {
    text-align: center;
    padding: 1rem 0;
    overflow-x: auto;
}

.org-chart-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .org-chart-image {
        padding: 0.5rem 0;
    }
    
    .org-chart-image img {
        min-width: 600px;
    }
}

/* Apply Section */
.careers-apply {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.careers-apply .careers-section-title {
    color: var(--white);
}

.careers-apply .careers-section-title::before {
    background: var(--secondary);
}

.apply-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apply-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.apply-item a {
    color: var(--secondary);
    text-decoration: none;
}

.apply-item a:hover {
    text-decoration: underline;
}

.apply-icon {
    font-size: 1.1rem;
}

/* Careers Modal Responsive */
@media (max-width: 640px) {
    .careers-modal-content {
        padding: 1.5rem;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .careers-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .careers-logo img {
        max-width: 120px;
    }
    
    .careers-title {
        font-size: 1.5rem;
    }
    
    .careers-section {
        padding: 1rem;
    }
    
    .careers-section-title {
        font-size: 0.9rem;
    }
    
    .position-card {
        padding: 0.75rem;
    }
    
    .position-icon {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
    
    .position-info h4 {
        font-size: 0.85rem;
    }
    
    .position-count {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .apply-item {
        font-size: 0.8rem;
    }
    
    .job-item {
        padding: 0.875rem;
    }
    
    .job-item p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .position-info h4 {
        word-wrap: break-word;
    }
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(10, 36, 99, 0.08);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-action {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--secondary-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.service-link:hover {
    color: var(--primary);
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.services-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.services-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.services-tab svg {
    flex-shrink: 0;
}

.services-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.services-tab-content.active {
    display: block;
}

/* Workflow Steps */
.scope-workflow {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.workflow-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

.workflow-content h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.workflow-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.purpose-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.purpose-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.purpose-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.purpose-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Service Modals */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal.active {
    display: flex;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.service-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

.service-modal-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.service-modal-header .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-modal-header .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.service-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.service-modal-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* Service Detail Sections */
.service-detail-section {
    margin-bottom: 2rem;
}

.service-detail-section:last-child {
    margin-bottom: 0;
}

.service-detail-section h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.service-detail-section p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail-section p:last-of-type {
    margin-bottom: 0;
}

/* Service Types Grid */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-type-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.type-icon {
    font-size: 1.5rem;
}

/* Legal Docs List */
.legal-docs-list {
    list-style: none;
    padding: 0;
}

.legal-docs-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.legal-docs-list li:last-child {
    border-bottom: none;
}

.legal-docs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-dark);
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 1rem;
}

.process-step {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* DS Types Container */
.ds-types-container {
    display: grid;
    gap: 1.5rem;
}

.ds-type-group h4,
.ds-doc-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.ds-docs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ds-doc-group {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

/* Mobile Services Tabs */
@media (max-width: 768px) {
    .services-tabs {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .services-tab {
        flex-direction: column;
        padding: 0.75rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.375rem;
        min-width: 70px;
        text-align: center;
    }
    
    .services-tab svg {
        width: 20px;
        height: 20px;
    }
    
    .services-tab .tab-label-full {
        display: none;
    }
    
    .services-tab .tab-label-short {
        display: block;
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .workflow-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .workflow-number {
        margin: 0 auto;
    }
    
    .service-modal-content {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }
    
    .service-modal-header,
    .service-modal-body,
    .service-modal-footer {
        padding: 1.25rem;
    }
    
    .service-types-grid {
        grid-template-columns: 1fr;
    }
    
    .ds-docs-container {
        grid-template-columns: 1fr;
    }
}

/* Fee Schedule Tab */
.fee-schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.fee-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.fee-intro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fee-intro h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.fee-intro p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.fee-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.fee-file-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.fee-file-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.fee-file-icon {
    color: var(--primary);
}

.fee-file-icon svg {
    stroke: var(--primary);
}

.fee-file-info h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.fee-file-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.fee-file-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.fee-file-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.fee-file-actions .btn svg {
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.fee-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
}

.fee-note svg {
    flex-shrink: 0;
    color: var(--secondary-dark);
    margin-top: 0.125rem;
}

.fee-note p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Fee Schedule Mobile */
@media (max-width: 768px) {
    .fee-files-grid {
        grid-template-columns: 1fr;
    }
    
    .fee-file-card {
        padding: 1.25rem;
    }
    
    .fee-file-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .fee-file-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .fee-note {
        flex-direction: column;
        text-align: center;
    }
    
    .fee-note svg {
        margin: 0 auto;
    }
}

/* Projects Gallery */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Services Cards Section (Always Visible) */
.services-cards-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.services-cards-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

/* Doanh nghiep Modal Styles */
.purpose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary);
}

.purpose-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dn-docs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dn-docs-group {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
}

.dn-docs-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.dn-docs-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dn-docs-group ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.dn-docs-group ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.commit-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.commit-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
}

.commit-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.commit-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Vo hinh Modal Styles */
.vh-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.vh-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 200px;
}

.vh-step-num {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.vh-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.vh-method-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border-left: 3px solid var(--secondary);
}

.vh-method-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.vh-method-icon {
    font-size: 1.5rem;
}

.vh-method-header h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.vh-method-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.vh-method-card ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.vh-method-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.vh-method-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.vh-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.vh-principle {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
}

.vh-principle-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vh-principle-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.375rem 0;
}

.vh-principle-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.vh-docs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.vh-doc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.vh-doc-icon {
    font-size: 1.25rem;
}

.vh-why-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vh-why-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.vh-why-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* M&A Modal Styles */
.ma-market-points {
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.ma-market-points h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.ma-point-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.ma-point-icon {
    font-size: 1.25rem;
}

.ma-conclusion {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--primary);
}

.ma-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.ma-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary);
}

.ma-benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ma-warning {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-left: 4px solid #dc3545;
    border-radius: var(--radius-md);
    font-weight: 500;
    color: #721c24;
}

.ma-process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ma-process-step {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border-left: 4px solid var(--secondary);
}

.ma-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ma-step-num {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.ma-step-header h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.ma-process-step ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem 0;
}

.ma-process-step ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.ma-process-step ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.ma-step-goal {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border-color);
}

.ma-values-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ma-value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.ma-value-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ma-cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.ma-cta-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.ma-cta-section p {
    margin: 0;
}

@media (max-width: 768px) {
    .ma-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ma-process-step {
        padding: 1rem;
    }
    
    .ma-step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .vh-process-steps {
        flex-direction: column;
    }
    
    .vh-step {
        min-width: 100%;
    }
    
    .vh-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .vh-principles {
        grid-template-columns: 1fr;
    }
    
    .vh-principle {
        flex-direction: column;
        text-align: center;
    }
    
    .vh-docs-list {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .services-cards-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .services-cards-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .purpose-list {
        grid-template-columns: 1fr;
    }
    
    .dn-docs-container {
        grid-template-columns: 1fr;
    }
    
    .commit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commit-icon {
        margin: 0 auto;
    }
}

.project-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

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

.project-item:hover img {
    transform: scale(1.05);
}

.project-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .project-item {
        aspect-ratio: 1/1;
    }
    
    .project-label {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: var(--spacing-2xl) 0;
}

/* About Tabs */
.about-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.about-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.about-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.about-tab svg {
    flex-shrink: 0;
}

/* Tab labels - desktop shows full, mobile shows short */
.tab-label-full {
    display: inline;
}

.tab-label-short {
    display: none;
}

/* About Tab Content */
.about-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.about-tab-content.active {
    display: block;
}

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

/* About Text Full */
.about-text-full {
    margin-bottom: 2rem;
}

.about-text-full p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.about-slogan {
    text-align: center;
    font-size: 1.5rem !important;
    color: var(--secondary-dark) !important;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin: 1.5rem 0 !important;
}

/* Logo Showcase */
.logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.logo-large {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.logo-colors {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.color-name {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Chairman Message */
.chairman-message {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chairman-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.chairman-header .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.chairman-header .section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.chairman-company {
    font-size: 0.875rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.chairman-content {
    padding: 2.5rem;
}

.chairman-greeting {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.chairman-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.chairman-quote {
    text-align: center;
    font-size: 1.25rem !important;
    color: var(--primary) !important;
    padding: 1rem;
    background: rgba(10, 36, 99, 0.05);
    border-radius: var(--radius-md);
    margin: 1.5rem 0 !important;
}

.chairman-commitment {
    text-align: center;
    font-size: 1.125rem !important;
    color: var(--secondary-dark) !important;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
    margin: 1.5rem 0 !important;
}

.chairman-signature {
    text-align: right;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.chairman-signature p {
    margin-bottom: 0.25rem !important;
}

.signature-title {
    color: var(--primary) !important;
}

.signature-company {
    color: var(--secondary-dark) !important;
    font-size: 1.125rem !important;
}

/* Mobile About Tabs */
@media (max-width: 768px) {
    .about-tabs {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .about-tab {
        flex-direction: column;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        gap: 0.375rem;
        min-width: 85px;
        text-align: center;
    }
    
    .about-tab svg {
        width: 22px;
        height: 22px;
    }
    
    /* Show short labels on mobile */
    .tab-label-full {
        display: none;
    }
    
    .tab-label-short {
        display: block;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .chairman-content {
        padding: 1.5rem;
    }
    
    .chairman-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .logo-showcase {
        padding: 2rem;
    }
    
    .logo-large {
        width: 150px;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .about-tabs {
        gap: 0.375rem;
    }
    
    .about-tab {
        padding: 0.625rem 0.75rem;
        min-width: 75px;
    }
    
    .about-tab svg {
        width: 20px;
        height: 20px;
    }
    
    .tab-label-short {
        font-size: 0.6875rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 36, 99, 0.08);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.visual-image {
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
}

.visual-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .visual-image {
        aspect-ratio: 3/4;
        max-height: 450px;
    }
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--secondary);
    overflow: hidden;
}

.team-avatar.has-image {
    background: none;
    border: 3px solid var(--secondary);
}

.team-avatar.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-position {
    font-size: 0.875rem;
    color: var(--secondary-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */

.projects {
    padding: var(--spacing-2xl) 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 36, 99, 0.95), transparent);
    color: var(--white);
}

.project-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 0.5rem;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.project-client {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ==========================================
   CAREERS SECTION
   ========================================== */

.careers {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

/* ==========================================
   VALUATION FORM SECTION
   ========================================== */

.valuation {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.valuation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.valuation-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.valuation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valuation-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.valuation-features .feature svg {
    color: var(--secondary);
}

.valuation-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

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

@media (max-width: 968px) {
    .valuation-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-message svg {
    flex-shrink: 0;
}

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

/* ==========================================
   PARTNERS SECTION
   ========================================== */

.partners {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
    overflow: hidden;
}

.partners .section-header.compact {
    margin-bottom: 1.5rem;
}

.partners .section-header.compact .section-title {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 2rem;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 90px;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px) scale(1.05);
}

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

@media (max-width: 768px) {
    .partners-slider::before,
    .partners-slider::after {
        width: 50px;
    }
    
    .partner-logo {
        min-width: 130px;
        height: 70px;
        padding: 0.75rem 1rem;
    }
    
    .partner-logo img {
        max-width: 90px;
        max-height: 45px;
    }
    
    .partners-track {
        gap: 1rem;
        animation-duration: 20s;
    }
}

/* ==========================================
   NEWS SECTION
   ========================================== */

.news {
    padding: var(--spacing-2xl) 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.news-category {
    padding: 0.25rem 0.75rem;
    background: rgba(10, 36, 99, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

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

.news-title {
    margin-bottom: 0.5rem;
}

.news-title a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.news-title a:hover {
    color: var(--secondary-dark);
}

.news-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--secondary);
}

.info-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--secondary);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary-dark);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--secondary);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================
   BACK TO TOP
   ========================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==========================================
   NOTIFICATIONS
   ========================================== */

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateX(120%);
    transition: var(--transition);
    z-index: 9999;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-success svg {
    color: #10b981;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.25rem;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}