/* ==========================================================================
   YUNXIANG MOB LIMITED - Premium CSS Design System
   Target: B2B SaaS Performance Marketing Agency
   Palette: Deep Space Sapphire, Electric Neon Cyan & Purple, Premium Gold
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-color: #040d21;      /* Deep Space Sapphire */
    --secondary-color: #0b1a3d;    /* Rich Dark Blue */
    --accent-color: #00f2fe;       /* Neon Cyan */
    --accent-purple: #8b5cf6;      /* Electric Purple */
    --highlight-color: #3b82f6;     /* Bright Royal Blue */
    --gold-color: #ffb84d;          /* Warm Gold */
    --gold-hover: #ffa41b;
    
    --light-color: #f8fafc;
    --dark-color: #020714;
    --text-dark: #0f172a;          /* Rich Charcoal */
    --text-light: #e2e8f0;         /* Soft Silver */
    --text-muted: #64748b;         /* Muted Slate */
    
    --bg-light-blue: #f3f6fb;
    --bg-card-dark: rgba(11, 26, 61, 0.45);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #040d21, #0b1a3d);
    --gradient-glow: linear-gradient(135deg, #00f2fe, #8b5cf6);
    --gradient-overlay: linear-gradient(135deg, rgba(4, 13, 33, 0.92), rgba(11, 26, 61, 0.8));
    --gradient-dark: linear-gradient(135deg, #020714, #040d21);
    --gradient-light: linear-gradient(135deg, #f8fafc, #f1f5f9);
    --gradient-text: linear-gradient(to right, #00f2fe, #3b82f6, #8b5cf6);
    
    /* Shadows & Transitions */
    --card-shadow: 0 10px 30px rgba(2, 7, 20, 0.08);
    --hover-shadow: 0 20px 40px rgba(0, 242, 254, 0.12);
    --premium-shadow: 0 25px 60px rgba(2, 7, 20, 0.25);
    --text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-color);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border: 2px solid var(--dark-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-glow);
    border: none;
    color: white !important;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #00f2fe);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white !important;
}

.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.btn-outline-light:hover::before {
    width: 100%;
}

/* Floating Navbar */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(4, 13, 33, 0.94);
    padding: 0.9rem 0;
    position: fixed;
    top: 0;
    box-shadow: 0 10px 40px rgba(2, 7, 20, 0.25);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 800;
    color: white !important;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.navbar-brand span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-left: 8px;
    border: 1px solid var(--accent-color);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Nav Menu trigger button */
.menu-btn {
    display: flex;
    align-items: center;
    padding: 0.65rem 1.4rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1010;
}

.menu-btn:hover {
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
    background-color: rgba(0, 242, 254, 0.05);
}

.menu-btn i {
    margin-left: 8px;
    color: var(--accent-color);
}

/* Fullscreen Menu Overlay */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-dark);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.fullscreen-menu.show {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 242, 254, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2005;
}

.menu-close:hover {
    background: var(--gradient-glow);
    border-color: transparent;
    transform: rotate(90deg);
}

.menu-content {
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-nav-item {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullscreen-menu.show .menu-nav-item {
    opacity: 1;
    transform: translateY(0);
}

.menu-nav-link {
    font-size: 3.2rem;
    color: white;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding: 0.3rem 1.5rem;
    display: inline-block;
    letter-spacing: -0.01em;
    transition: all var(--transition-normal);
}

.menu-nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

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

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

.menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 30px 0;
    background: linear-gradient(to top, var(--dark-color), transparent);
    z-index: 2001;
}

.menu-social {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.menu-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.menu-social-link:hover {
    background: var(--gradient-glow);
    border-color: transparent;
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

/* Hero Section with Video Background */
.hero-video-container {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--primary-color), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: white;
    width: 100%;
    padding-top: 80px;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInDown 1s var(--transition-slow);
}

.hero-tagline i {
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--accent-color);
    border-radius: 50%;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 1s 0.2s var(--transition-slow) both;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto 3rem;
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s 0.4s var(--transition-slow) both;
}

.hero-buttons {
    animation: fadeInUp 1s 0.6s var(--transition-slow) both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    margin-top: 8px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.stat-item {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(11, 26, 61, 0.35);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all var(--transition-normal);
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.06);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    display: inline-block;
    transition: all var(--transition-normal);
}

.stat-item:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--accent-purple);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
}

/* Sections General */
.section {
    padding: 130px 0;
    position: relative;
}

.section-dark {
    background-color: var(--primary-color);
    color: white;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-dark .section-subtitle {
    color: var(--accent-color);
}

.section-header {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-dark .section-header {
    color: white;
}

.block-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-glow);
    border: none;
    border-radius: 2px;
    margin: 1.5rem 0 2rem;
}

.text-center .block-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
}

.section-dark .section-intro {
    color: var(--text-light);
}

/* Services / Positioning Section */
.services-section {
    background-color: var(--bg-light-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.service-card {
    background-color: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(4, 13, 33, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.service-icon-box {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(0, 242, 254, 0.08));
    color: var(--highlight-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
    background: var(--gradient-glow);
    color: white;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    transition: all var(--transition-normal);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-specs {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.spec-item i {
    color: var(--highlight-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

/* Capabilities Infrastructure (Interactive tab slider) */
.capabilities-section {
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.capabilities-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 50px;
    margin-top: 60px;
    align-items: center;
}

/* Left Vertical Selector */
.capabilities-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cap-nav-item {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-glass);
    border-left: 4px solid transparent;
    border-radius: 12px;
    padding: 24px 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cap-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 242, 254, 0.04), transparent);
    transition: all 0.4s ease;
    transform: translateX(-100%);
    z-index: 0;
}

.cap-nav-item:hover::before,
.cap-nav-item.active::before {
    transform: translateX(0);
}

.cap-nav-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 242, 254, 0.3);
}

.cap-nav-item.active {
    border-left-color: var(--accent-color);
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(11, 26, 61, 0.7);
    transform: translateX(8px);
}

.cap-nav-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cap-nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    transition: all var(--transition-normal);
}

.cap-nav-item.active .cap-nav-icon {
    background: var(--gradient-glow);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.cap-nav-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
}

.cap-nav-item.active .cap-nav-title {
    color: white;
}

/* Right Detail Cards */
.cap-slider-container {
    position: relative;
}

.cap-card {
    background: rgba(11, 26, 61, 0.45);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: all var(--transition-normal);
}

.cap-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
}

.cap-card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.cap-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.cap-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(4, 13, 33, 0.95), transparent);
}

.cap-card-body {
    padding: 40px;
}

.cap-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
}

.cap-card-text {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cap-tag {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Elite Partners & Compliance Verification Badge */
.partners-section {
    background-color: white;
    padding: 100px 0 110px;
    overflow: hidden;
}

.partners-carousel {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 50px;
}

.logo-marquee-track {
    display: flex;
    width: calc(240px * 16);
    animation: marquee 30s linear infinite;
}

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

.partner-logo-item {
    width: 240px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}

.partner-logo {
    max-width: 100%;
    max-height: 55px;
    filter: grayscale(100%) opacity(0.4);
    transition: all var(--transition-normal);
}

.partner-logo-item:hover .partner-logo {
    filter: grayscale(0%) opacity(0.95);
    transform: scale(1.08);
}

/* Compliance Certificate Seal banner */
.compliance-seal-box {
    margin-top: 70px;
    background: var(--bg-light-blue);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compliance-seal-text {
    text-align: left;
    max-width: 70%;
}

.compliance-seal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compliance-seal-title i {
    color: #10b981; /* Emerald green */
}

.compliance-seal-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.compliance-badge-group {
    display: flex;
    gap: 15px;
}

.verified-tag {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.verified-tag i {
    color: var(--highlight-color);
}

/* Global Corporate Footprint */
.footprint-section {
    background-color: var(--bg-light-blue);
}

.footprint-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.footprint-map-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.footprint-map {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.map-pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(0, 242, 254, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.pin-hk {
    top: 58%;
    left: 78%;
}

.pin-na {
    top: 36%;
    left: 24%;
}

.footprint-info {
    text-align: left;
}

.footprint-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
    border-left: 5px solid var(--highlight-color);
    transition: all var(--transition-normal);
}

.footprint-card:hover {
    transform: translateX(6px);
}

.footprint-card.gold-card {
    border-left-color: var(--gold-color);
}

.footprint-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.footprint-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Call To Action */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: white;
    border-bottom: 1px solid var(--border-glass);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: white;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3.2rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Footer structure */
.site-footer {
    background-color: var(--dark-color);
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-main {
    padding: 100px 0 70px;
    border-top: 1px solid var(--border-glass);
    background: linear-gradient(to bottom, #020714, #01040d);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-company {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.footer-company span {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 8px;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-glow);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--gradient-glow);
    color: var(--dark-color);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

.footer-contact-text h5 {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact-text p, 
.footer-contact-text a {
    margin: 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 300;
}

.footer-contact-text a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background-color: rgba(2, 7, 20, 0.6);
    border-top: 1px solid var(--border-glass);
    padding: 35px 0;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin: 0;
}

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

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all var(--transition-normal);
}

.footer-legal-links a:hover {
    color: white;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-glow);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 242, 254, 0.4);
}

/* Animations */
@keyframes ripple {
    0% {
        width: 14px;
        height: 14px;
        opacity: 1;
    }
    100% {
        width: 45px;
        height: 45px;
        opacity: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-240px * 8));
    }
}

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

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

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

/* Responsive breakdowns */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .section-header {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .capabilities-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 90px 0;
    }
    
    .footprint-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .footer-legal-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .compliance-seal-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .compliance-seal-text {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-header {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-nav-link {
        font-size: 2.2rem;
    }
    
    .verified-tag {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}
