/* Home Page Specific Styles */

/* Prevent Scroll During Loading - Keep scrollbar visible */
html {
    overflow-y: scroll;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

/* Page Loading Animation */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Logo Container */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 280px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.5);
    animation: logoEntrance 1s ease-out 0.3s forwards;
}

.loader-logo img {
    width: 100%;
    height: auto;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-30px);
    }
    60% {
        transform: scale(1.05) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Company Name with Bouncing Letters */
.loader-company-name {
    display: flex;
    gap: 0.3rem;
    margin-top: 1rem;
    align-items: baseline;
}

.loader-letter {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(50px);
    animation: letterBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes letterBounce {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.5);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    70% {
        transform: translateY(5px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger animation for each letter */
.loader-letter:nth-child(1) { animation-delay: 1.0s; font-size: 3.5rem; color: #d4af37; }
.loader-letter:nth-child(2) { animation-delay: 1.1s; }
.loader-letter:nth-child(3) { animation-delay: 1.2s; }
.loader-letter:nth-child(4) { animation-delay: 1.3s; }
.loader-letter:nth-child(5) { animation-delay: 1.4s; }
.loader-letter:nth-child(6) { animation-delay: 1.5s; }
.loader-letter:nth-child(7) { animation-delay: 1.6s; }
.loader-letter:nth-child(8) { animation-delay: 1.7s; font-size: 3.5rem; color: #d4af37;  }
.loader-letter:nth-child(9) { animation-delay: 1.8s; }
.loader-letter:nth-child(10) { animation-delay: 1.9s; }
.loader-letter:nth-child(11) { animation-delay: 2.0s; }
.loader-letter:nth-child(12) { animation-delay: 2.1s; }
.loader-letter:nth-child(13) { animation-delay: 2.2s; }
.loader-letter:nth-child(14) { animation-delay: 2.3s; }
.loader-letter:nth-child(15) { animation-delay: 2.4s; }
.loader-letter:nth-child(16) { animation-delay: 2.5s; }
.loader-letter:nth-child(17) { animation-delay: 2.6s; }
.loader-letter:nth-child(18) { animation-delay: 2.7s; }

/* Space between words */
.loader-letter.space {
    width: 1rem;
    animation: none;
    opacity: 1;
}

/* Decorative underline */
.loader-underline {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin-top: 1rem;
    animation: underlineExpand 1s ease-out 3.4s forwards;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f0d98f);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Full Screen Hero Section */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bg::before {
    content: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10rem 2rem 2rem;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: translateY(-12px);
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInFromTop 1s ease 5.0s forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInFromTop 1s ease 5.2s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInFromTop 1s ease 5.0s forwards;
}

.hero-services {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    opacity: 0;
    animation: slideInFromTop 1s ease 5.2s forwards;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }
    60% {
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats-cards {
    width: 100%;
    padding: 0 2rem 5rem;
    margin-top: auto;
    flex-shrink: 0;
}

.hero-stats-cards .col-lg-4 {
    opacity: 0;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hero-stats-cards .col-lg-4:nth-child(1) { animation-delay: 5.8s; }
.hero-stats-cards .col-lg-4:nth-child(2) { animation-delay: 6.0s; }
.hero-stats-cards .col-lg-4:nth-child(3) { animation-delay: 6.2s; }

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        transform: scale(1.05) translateY(-20px);
    }
    70% {
        transform: scale(0.95) translateY(10px);
    }
    85% {
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Stats Cards with Glass Effect */
.stats-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stats-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(147, 51, 234, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.stats-glass-card:hover::before {
    opacity: 1;
}

.stats-icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stats-glass-card:hover .stats-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.stats-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stats-glass-card:hover .stats-number {
    transform: scale(1.05);
    color: #3b82f6;
}

.stats-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.6s ease 7.0s forwards;
}

.scroll-icon {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-icon:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: translateY(-5px);
}

.scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Light Rays */
.light-rays {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translateX(-50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(212, 175, 55, 0.1) 10deg,
        transparent 20deg,
        transparent 40deg,
        rgba(212, 175, 55, 0.08) 50deg,
        transparent 60deg
    );
    animation: rotateRays 30s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

@keyframes rotateRays {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Hero Orbs */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulseOrb 8s infinite ease-in-out;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes pulseOrb {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-1 { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 6px; height: 6px; top: 60%; left: 80%; animation-delay: 2s; }
.particle-3 { width: 10px; height: 10px; top: 40%; left: 20%; animation-delay: 4s; }
.particle-4 { width: 7px; height: 7px; top: 80%; left: 60%; animation-delay: 1s; }
.particle-5 { width: 9px; height: 9px; top: 15%; left: 70%; animation-delay: 3s; }
.particle-6 { width: 5px; height: 5px; top: 50%; left: 90%; animation-delay: 5s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-200px) translateX(-50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-100px) translateX(100px) scale(1.1);
        opacity: 0.5;
    }
}

/* Floating Geometric Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-shapes .shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.2);
    animation: rotateFloat 20s infinite ease-in-out;
}

.hero-shapes .shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    border-radius: 20px;
    animation-delay: 0s;
}

.hero-shapes .shape-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 2s;
}

.hero-shapes .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    border-radius: 30px;
    transform: rotate(45deg);
    animation-delay: 4s;
}

@keyframes rotateFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-50px) rotate(90deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-50px) rotate(270deg);
        opacity: 0.4;
    }
}

/* Container Max Width */
.container {
    max-width: 1600px !important;
}

/* Header Styles */
.header-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Navigation Entry Animations */
.nav-animate-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromLeft 1s ease 4.8s forwards;
}

.nav-animate-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInFromRight 1s ease 4.8s forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    70% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    70% {
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#mainNav {
    background: transparent;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

#mainNav.scrolled {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

#mainNav .navbar-brand img {
    transition: all 0.3s ease;
}

#mainNav.scrolled .logo-white {
    display: inline-block !important;
}

#mainNav.scrolled .logo-dark {
    display: none !important;
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 60%;
}

#mainNav .nav-link:hover {
    color: #ffffff;
}

#mainNav .dropdown-menu {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    margin-top: 0.5rem;
}

#mainNav .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

#mainNav .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

/* Mobile Menu */
@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background: rgba(10, 37, 64, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .nav-animate-left,
    .nav-animate-right {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    
    #mainNav .nav-link::after {
        display: none;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, 
        rgba(240, 249, 255, 0.5) 0%, 
        rgba(255, 255, 255, 1) 50%, 
        rgba(240, 249, 255, 0.3) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Neon Lines Background */
.neon-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    background: linear-gradient(to bottom, rgba(240, 249, 255, 0.3), rgba(255, 255, 255, 0));
}

.neon-line {
    position: absolute;
    height: 150px;
    filter: blur(60px);
    border-radius: 50%;
    will-change: transform, opacity;
    mix-blend-mode: normal;
}

.neon-line-1 {
    top: 10%;
    left: -30%;
    width: 50%;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.4), rgba(37, 99, 235, 0.2), transparent);
    animation: neonFlow1 20s ease-in-out infinite;
}

.neon-line-2 {
    top: 30%;
    right: -30%;
    width: 55%;
    height: 180px;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.4), rgba(124, 58, 237, 0.2), transparent);
    animation: neonFlow2 25s ease-in-out infinite 3s;
}

.neon-line-3 {
    top: 50%;
    left: -25%;
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse, rgba(34, 211, 238, 0.3), rgba(6, 182, 212, 0.15), transparent);
    animation: neonFlow1 30s ease-in-out infinite 6s;
}

.neon-line-4 {
    bottom: 20%;
    right: -35%;
    width: 48%;
    height: 170px;
    background: radial-gradient(ellipse, rgba(244, 114, 182, 0.35), rgba(236, 72, 153, 0.18), transparent);
    animation: neonFlow2 22s ease-in-out infinite 2s;
}

.neon-line-5 {
    bottom: 10%;
    left: -20%;
    width: 45%;
    height: 160px;
    background: radial-gradient(ellipse, rgba(52, 211, 153, 0.3), rgba(16, 185, 129, 0.15), transparent);
    animation: neonFlow1 28s ease-in-out infinite 8s;
}

.neon-line-6 {
    top: 20%;
    right: -25%;
    width: 40%;
    height: 190px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.25), rgba(245, 158, 11, 0.12), transparent);
    animation: neonFlow2 24s ease-in-out infinite 5s;
}

@keyframes neonFlow1 {
    0% { transform: translate(-50%, -20%) scale(1); opacity: 0.7; }
    25% { transform: translate(20%, 10%) scale(1.1); opacity: 0.9; }
    50% { transform: translate(80%, -15%) scale(1.05); opacity: 0.8; }
    75% { transform: translate(40%, 20%) scale(1.15); opacity: 0.85; }
    100% { transform: translate(-50%, -20%) scale(1); opacity: 0.7; }
}

@keyframes neonFlow2 {
    0% { transform: translate(50%, 20%) scale(1); opacity: 0.6; }
    25% { transform: translate(-30%, -15%) scale(1.12); opacity: 0.85; }
    50% { transform: translate(-90%, 25%) scale(1.08); opacity: 0.75; }
    75% { transform: translate(-20%, -10%) scale(1.18); opacity: 0.9; }
    100% { transform: translate(50%, 20%) scale(1); opacity: 0.6; }
}

/* About Header Styles */
.about-header {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

/* Simple Badge Design */
.about-badge-simple {
    display: block;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}

.about-badge-simple::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 2px;
}

.about-badge-simple .badge-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-badge-simple .badge-text-cn {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0a2540;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0a2540;
    line-height: 1.2;
    position: relative;
    display: block;
    margin-bottom: 25px;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.about-intro-text {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin-top: 30px;
}

.container.position-relative {
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 25px 35px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 24px;
    color: #ffffff;
}

.badge-content {
    color: #ffffff;
}

.badge-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
}

.about-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
}

.feature-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #eff6ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #2563eb;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section - 关于我们内的统计数据 */
.about-section .stats-section {
    background: transparent;
    border: none;
}

.stat-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.stat-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.stat-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-icon i {
    font-size: 32px;
    color: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Practice Areas / 业务领域 Styles */
.practices-section {
    background: #c8cfd6 !important;
    overflow: hidden;
}

.practices-image-side {
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.practices-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.practices-content-side {
    padding: 60px 60px 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.practices-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a2540;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.practices-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 10px;
    line-height: 1.3;
}

.practices-subtitle {
    font-size: 1.05rem;
    color: #0a2540;
    margin-bottom: 35px;
    line-height: 1.6;
}

.practices-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.practices-list-col {
    display: flex;
    flex-direction: column;
}

.practices-list-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #0a2540;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.practices-list-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.4s ease;
}

.practices-list-item:hover::after {
    width: 100%;
}

.practices-list-item:hover {
    color: #0a2540;
    padding-left: 5px;
}

.practices-list-item:hover .practices-list-num {
    color: #0a2540;
}

.practices-list-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a2540;
    min-width: 32px;
    transition: color 0.3s ease;
}

.practices-list-name {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
}

.practices-list-item i {
    font-size: 0.75rem;
    color: #0a2540;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.practices-list-item:hover i {
    color: #0a2540;
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .practices-image-side {
        min-height: 350px;
    }
    .practices-content-side {
        padding: 40px 25px;
    }
    .practices-main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .practices-list-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .practices-content-side {
        padding: 30px 20px;
    }
}

/* Legacy practice-link kept for compatibility */
.practice-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.practice-link:hover {
    color: #1e40af;
    gap: 8px;
}

.practice-link i {
    transition: transform 0.3s ease;
}

.practice-link:hover i {
    transform: translateX(5px);
}

/* Team Cards Styles */
.team-section {
    background: #ffffff;
}

.team-scroll-wrap {
    overflow: hidden;
    position: relative;
}

.team-scroll-track {
    flex-wrap: nowrap !important;
    will-change: transform;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-card-image {
    position: relative;
    width: 160px;
    aspect-ratio: 4 / 5;
    margin: 10px auto 0;
    overflow: hidden;
    background: #e5e7eb;
    padding: 3px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-body {
    padding: 14px 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 8px;
}

.team-position {
    display: inline-block;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* 按需求隐藏其余信息，仅保留头像+姓名+头衔 */
.team-education,
.team-specialties,
.team-link {
    display: none !important;
}

@media (max-width: 768px) {
    .team-card-image {
        width: 88px;
    }

    .team-name {
        font-size: 1rem;
    }
}

/* News Section Styles */
.news-section {
    background: #f3f4f6;
}

.news-header {
    position: relative;
}

.news-tabs {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.news-tab-btn {
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 2.45rem;
    line-height: 1.1;
    font-weight: 500;
    padding: 0 0 8px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}

.news-tab-btn.active {
    color: #2563eb;
    font-weight: 700;
}

.news-tab-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #2563eb;
}

.news-tab-separator {
    color: #6b7280;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 10px;
}

.news-tab-panel {
    display: none;
}

.news-tab-panel.active {
    display: block;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.news-title-line {
    width: 86px;
    height: 3px;
    background: #6366f1;
}

.news-more-link {
    color: #475569;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-more-link:hover {
    color: #1e293b;
}

.news-layout {
    align-items: stretch;
}

.news-featured-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 440px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}

.news-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.news-featured-content {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 34px;
    z-index: 2;
}

.news-featured-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease;
}

.news-featured-title {
    color: #ffffff;
    font-size: 2.05rem;
    font-weight: 700;
    line-height: 1.45;
    max-width: 80%;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
    transition: transform 0.35s ease, letter-spacing 0.35s ease;
}

.news-featured-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05) saturate(1.08);
}

.news-featured-card:hover .news-featured-title {
    transform: translateX(8px);
    letter-spacing: 0.02em;
}

.news-featured-card:hover .news-featured-date {
    transform: translateX(4px);
}

.news-side-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 6px;
}

.news-side-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    padding: 8px 0 18px;
    min-height: 0;
    transition: transform 0.25s ease;
}

.news-side-item:last-child {
    padding-bottom: 8px;
}

.news-side-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 42px;
    height: 1px;
    background: rgba(99, 102, 241, 0.72);
}

.news-side-title {
    color: #334155;
    font-size: 1.2rem;
    line-height: 1.58;
    font-weight: 600;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.news-side-date {
    color: #64748b;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-side-item:hover {
    transform: translateX(5px);
}

.news-side-item:hover .news-side-title {
    color: #0f172a;
}

.news-side-item:hover .news-side-date {
    color: #475569;
}

@media (max-width: 991px) {
    .news-tabs {
        gap: 10px;
    }

    .news-tab-btn {
        font-size: 1.75rem;
        padding-bottom: 6px;
    }

    .news-tab-btn.active::after {
        height: 3px;
    }

    .news-tab-separator {
        font-size: 1.6rem;
        padding-bottom: 8px;
    }

    .news-featured-card {
        min-height: 340px;
    }

    .news-featured-title {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .news-side-list {
        margin-top: 10px;
        justify-content: flex-start;
        gap: 10px;
        padding: 0;
    }

    .news-side-item {
        flex: none;
        padding: 4px 0 14px;
    }

    .news-side-item:last-child {
        padding-bottom: 4px;
    }
}

/* Success Cases Styles */
.cases-section {
    background: #ffffff !important;
}

.case-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.case-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-card:hover .case-card-image img {
    transform: scale(1.08);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10, 37, 64, 0.3),
        rgba(10, 37, 64, 0.6));
}

.case-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.case-amount {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.case-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 15px;
    line-height: 1.4;
}

.case-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.case-tag:hover {
    background: #e0f2fe;
    color: #2563eb;
    transform: translateY(-2px);
}

.case-result {
    font-size: 0.95rem;
    color: #10b981;
    font-weight: 600;
    padding: 12px 16px;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.case-link {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #1e40af;
    gap: 8px;
}

.case-link i {
    transition: transform 0.3s ease;
}

.case-link:hover i {
    transform: translateX(5px);
}

/* Cases Statistics */
.cases-stats {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 50px 0;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================
   Social Responsibility / 社会责任
   ============================ */
.responsibility-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.responsibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
}

/* 卡片样式 */
.resp-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.resp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

.resp-card:hover::before {
    opacity: 1;
}

.resp-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.resp-card-icon i {
    font-size: 1.5rem;
    color: #2563eb;
    transition: all 0.4s ease;
}

.resp-card:hover .resp-card-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.resp-card:hover .resp-card-icon i {
    color: #ffffff;
}

.resp-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 0.75rem;
}

.resp-card-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.resp-card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.resp-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.resp-stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

/* 高亮横幅 */
.resp-highlight {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.resp-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2563eb, #60a5fa);
    border-radius: 4px 0 0 4px;
}

.resp-highlight-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 1rem;
}

.resp-highlight-title i {
    color: #22c55e;
}

.resp-highlight-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

.resp-highlight-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resp-highlight-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.resp-hl-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.resp-hl-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

/* 社会责任响应式 */
@media (max-width: 768px) {
    .resp-card {
        padding: 2rem 1.5rem;
    }

    .resp-highlight {
        padding: 2rem 1.5rem;
    }

    .resp-highlight-stats {
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .resp-hl-number {
        font-size: 1.5rem;
    }
}

/* Enhanced Footer Styles */
.footer-enhanced {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    margin-top: 0;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-logo img {
    max-width: 100%;
    max-height: 100%;
}

.footer-logo i {
    font-size: 32px;
    color: #ffffff;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    position: relative;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.social-link:hover {
    background: #6366f1;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    border-color: #6366f1;
    z-index: 40;
}

.social-hover-card {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 20;
}

.social-link:hover .social-hover-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.social-hover-qr {
    padding: 8px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-qr-image {
    width: 140px;
    height: 140px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.social-hover-email {
    white-space: nowrap;
    font-size: 0.85rem;
    color: #1e293b;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-column {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #94a3b8;
}

.footer-links li {
    margin-bottom: 3px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.25;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6366f1;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.35;
}

.footer-contact i {
    color: #6366f1;
    font-size: 1.125rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #6366f1;
}

/* Smooth Scroll Anchor */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-fullscreen {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        padding: 6rem 1rem 1rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-services {
        font-size: 0.9rem;
    }
    
    .hero-stats-cards {
        padding: 0 1rem 4rem;
    }
    
    .stats-glass-card {
        padding: 1rem 0.75rem;
    }
    
    .stats-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
    
    .stats-label {
        font-size: 0.75rem;
    }
    
    .scroll-down-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
    
    .loader-letter {
        font-size: 2rem;
    }
    
    .loader-letter:nth-child(1),
    .loader-letter:nth-child(11) {
        font-size: 2.25rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-intro-text {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .news-title {
        font-size: 2.25rem;
    }
    
    .news-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 30px 20px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number-large {
        font-size: 2.5rem;
    }
    
    .stat-label-large {
        font-size: 1rem;
    }
    
    .cases-stats {
        padding: 0;
        margin-top: 40px;
    }
    
    /* Hide decorative elements on mobile */
    .light-rays {
        display: none;
    }
    
    .particle-4,
    .particle-5,
    .particle-6 {
        display: none;
    }
    
    .hero-shapes .shape-3 {
        display: none;
    }
    
    .orb-3 {
        display: none;
    }
    
    .orb-1,
    .orb-2 {
        width: 120px;
        height: 120px;
        filter: blur(15px);
    }
}

