/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - Premium B2B Royal Blue & White Theme */
    --color-bg-dark: #FFFFFF; /* White base background */
    --color-bg-card: #FFFFFF; /* White card background */
    --color-bg-card-alt: #F8FAFC; /* Slate/Light grey background */
    
    --color-gold: #2563EB; /* Premium B2B Royal Blue */
    --color-gold-hover: #1D4ED8; /* Darker Blue Hover */
    --color-gold-light: rgba(37, 99, 235, 0.05); /* Royal Blue Tint */
    --color-gold-glow: rgba(37, 99, 235, 0.15); /* Royal Blue Glow */
    
    --color-navy: #0F172A; /* Deep Slate Charcoal Navy */
    --color-brand-light: #3B82F6; /* Secondary bright blue */
    
    --color-wechat: #07C160;
    --color-email: #0F172A;
    --color-facebook: #1877F2;
    --color-linkedin: #0A66C2;
    
    --color-text-primary: #1E293B; /* Deep Slate Blue Black for high readability */
    --color-text-secondary: #475569; /* Medium Slate Grey */
    --color-text-muted: #64748B; /* Light Slate Grey */
    
    --color-border: #E2E8F0; /* Premium Silver Border */
    --color-border-glow: #94A3B8; /* Focused Border */
    
    /* Layout & Transitions */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 25px -5px rgba(37, 99, 235, 0.06), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
}

body {
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-card-alt);
    border-radius: 4px;
    border: 1px solid var(--color-border);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 14px var(--color-gold-light);
}
.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-gold-glow);
}


.btn-outline-gold {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background-color: transparent;
    box-shadow: 0 4px 14px rgba(241, 178, 74, 0.05);
}
.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-gold-glow);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 8px;
}

.btn-full {
    width: 100%;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

.text-gold {
    color: var(--color-gold);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.header-scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header-scrolled .header-container {
    height: 70px;
}

/* Logo Design */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    position: relative;
    width: 44px;
    height: 44px;
    background-color: var(--color-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(10, 25, 47, 0.15);
}

.logo-v {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.logo-globe {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: #5A8DFE;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--color-gold);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: var(--color-text-secondary);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-smooth);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: var(--transition-smooth);
}

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

.nav-toggle {
    display: none;
    color: var(--color-text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-color: #070D19;
    display: flex;
    align-items: center;
    overflow: hidden;
    perspective: 1000px;
    padding-top: 100px; /* Offset the fixed navigation header to prevent text overlap */
}

.hero-bg-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('assets/cargo_ship_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transform: scale(1.08) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    transition: transform 0.2s ease-out;
}

.hero-bg-video {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
    transform: scale(1.08) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    transition: transform 0.2s ease-out;
}

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

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

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

.hero-content {
    max-width: 650px;
    padding: 40px 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: #FFFFFF !important; /* Pure White */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E2E8F0 !important; /* Clean light text */
    margin-bottom: 40px;
    font-weight: 400;
    border-left: 3px solid #D4AF37 !important; /* striking Gold left border marker */
    padding-left: 16px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6) !important;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-ctas .btn-gold {
    background-color: #FFFFFF !important;
    color: #0A192F !important;
    border-color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15) !important;
}

.hero-ctas .btn-gold:hover {
    background-color: #F1F5F9 !important;
    color: #0A192F !important;
    border-color: #F1F5F9 !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}


.hero-ctas .btn-outline-gold {
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #FFFFFF !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.hero-ctas .btn-outline-gold:hover {
    border-color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.animate-glow {
    text-shadow: 0 0 15px rgba(241, 178, 74, 0.4);
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 8px;
    color: var(--color-text-primary);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-dark);
}

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

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid .service-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-grid .service-card:last-child {
        grid-column: span 1;
    }
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-gold);
    color: #FFFFFF;
}

.service-icon {
    width: 30px;
    height: 30px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
    line-height: 1.4;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   PRODUCTS GALLERY MODAL & GRID
   ========================================================================== */
.modal-card-large {
    max-width: 900px;
    width: 95%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
    max-height: 65vh;
    overflow-y: auto;
    padding: 10px 10px 10px 0;
}

/* Custom Scrollbar for Grid */
.products-grid::-webkit-scrollbar {
    width: 6px;
}
.products-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}
.products-grid::-webkit-scrollbar-thumb {
    background: var(--color-border-glow);
    border-radius: 3px;
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 60vh;
    }
}

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-height: 55vh;
    }
}

.modal-product-card {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}

.modal-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.modal-product-card:hover .modal-product-img {
    transform: scale(1.08);
}

.modal-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 13, 25, 0.95) 0%, rgba(7, 13, 25, 0.5) 50%, rgba(7, 13, 25, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 16px;
    text-align: left;
    transition: var(--transition-smooth);
}

.modal-product-card:hover .modal-product-overlay {
    background: linear-gradient(to top, rgba(7, 13, 25, 0.98) 0%, rgba(7, 13, 25, 0.6) 55%, rgba(7, 13, 25, 0.2) 100%);
}

.modal-product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-product-desc {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.modal-product-card:hover .modal-product-desc {
    color: var(--color-text-primary);
    opacity: 1;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-section {
    background-color: var(--color-bg-card-alt);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    padding-top: 20px;
}

.steps-progress-bar {
    position: absolute;
    top: 55px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-border) 0,
        var(--color-border) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}

.step-card {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-badge {
    width: 72px;
    height: 72px;
    background-color: var(--color-bg-card-alt);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 20px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.step-badge i {
    width: 28px;
    height: 28px;
}

.step-card:hover .step-badge {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--color-gold-glow);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    max-width: 220px;
}

/* ==========================================================================
   OUR PRESENCE SECTION
   ========================================================================== */
.presence-section {
    background-color: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

/* Premium Map Overlay Graphic via Grid */
.presence-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(241, 178, 74, 0.04) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.presence-lead {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-top: 16px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    box-shadow: var(--shadow-premium);
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.office-card:hover {
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.flag-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hk-flag {
    background-color: #E60012; /* Fallback flat color */
    background-image: radial-gradient(circle, #fff 2px, transparent 3px),
                      linear-gradient(45deg, #E60012 50%, #E60012 50%);
    position: relative;
}
.hk-flag::after {
    content: '★';
    color: #FFF;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cn-flag {
    background-color: #DE2910;
    position: relative;
}
.cn-flag::after {
    content: '★';
    color: #FFDE00;
    font-size: 11px;
    position: absolute;
    top: 30%;
    left: 30%;
}

.office-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.office-address {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ==========================================================================
   CONNECT WITH US SECTION
   ========================================================================== */
.connect-section {
    background-color: var(--color-bg-card-alt);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.contact-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-premium);
    transform-style: preserve-3d;
    will-change: transform;
}

.hover-card {
    cursor: pointer;
}
.hover-card:hover {
    border-color: var(--color-border-glow);
    box-shadow: var(--shadow-hover);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
}

.contact-card-icon i,
.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.wechat-color {
    background-color: rgba(7, 193, 96, 0.15);
    color: var(--color-wechat);
}
.email-color {
    background-color: rgba(74, 144, 226, 0.15);
    color: var(--color-email);
}
.facebook-color {
    background-color: rgba(24, 119, 242, 0.15);
    color: var(--color-facebook);
}
.linkedin-color {
    background-color: rgba(10, 102, 194, 0.15);
    color: var(--color-linkedin);
}

.contact-card-info {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 2px;
}

.card-arrow {
    position: absolute;
    right: 24px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    width: 20px;
    height: 20px;
}

.contact-card:hover .card-arrow {
    color: var(--color-gold);
    transform: translate(2px, -2px);
}

/* QR code column styling */
.qr-and-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    max-width: 340px;
    width: 100%;
}

.qr-box {
    background-color: #FFFFFF;
    padding: 16px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.qr-image {
    display: block;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.qr-caption {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ==========================================================================
   HIGHLIGHTS BAR
   ========================================================================== */
.highlights-section {
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon-box {
    color: var(--color-gold);
    background-color: var(--color-gold-light);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon-box i {
    width: 24px;
    height: 24px;
}

.highlight-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-image: url('assets/cargo_ship_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.cta-banner-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.cta-banner-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 40px;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0A192F;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 40px 0;
    color: #94A3B8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-about {
    max-width: 320px;
}

.footer-col-about .logo-container {
    margin-bottom: 8px;
}

.footer-col-about .logo-title {
    color: #FFFFFF;
}

.footer-col-about .logo-subtitle {
    color: #94A3B8;
}

.footer-col-about .logo-icon {
    background-color: #FFFFFF;
    box-shadow: none;
}

.footer-col-about .logo-v {
    color: #0A192F;
}

.footer-about-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #94A3B8;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #94A3B8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.footer-contact-item svg,
.footer-contact-item i {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.88rem;
    color: #94A3B8;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
}

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

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    transition: var(--transition-smooth);
}

.footer-social-icon:hover {
    color: #0A192F;
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .footer {
        padding: 60px 0 30px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   INTERACTIVE FORM MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 7, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 20px;
}

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

.modal-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    max-width: 650px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-gold);
    background-color: var(--color-gold-light);
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.modal-header {
    margin-bottom: 28px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-primary);
}

.modal-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-top: 6px;
}

/* Form Styling */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-bg-card-alt);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 12px var(--color-gold-glow);
    background-color: rgba(23, 36, 61, 0.7);
}

.form-group select option {
    background-color: var(--color-bg-card-alt);
    color: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
}

/* Success State Screen */
.form-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
}

.success-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(7, 193, 96, 0.15);
    color: var(--color-wechat);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.success-icon-box i {
    width: 44px;
    height: 44px;
}

.form-success-state h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-text-primary);
}

.form-success-state p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 400px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .steps-progress-bar {
        display: none; /* Hide progress bar connecting line on smaller devices */
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qr-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Header toggle */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-dark);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .btn-header-cta {
        width: 100%;
        margin-top: 10px;
    }
    
    /* Hero Content Adjustment */
    .hero-section {
        padding-top: 120px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Grid Adjustments */
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-title {
        font-size: 2.25rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .modal-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   ADMIN PORTAL LINKS
   ========================================================================== */
.nav-admin-link {
    border: 1px dashed var(--color-border-glow);
    border-radius: 6px;
    padding: 6px 12px !important;
    margin-left: 8px;
    background-color: var(--color-gold-light);
}

.nav-admin-link:hover {
    border-color: var(--color-gold);
    background-color: rgba(241, 178, 74, 0.2);
}

.footer-admin-link {
    color: var(--color-text-muted);
    margin-left: 6px;
    transition: var(--transition-smooth);
    text-decoration: underline;
}

.footer-admin-link:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   PRODUCT IMAGE SLIDER SECTION
   ========================================================================== */
.product-slider-section {
    background-color: #070D19; /* Matches dark background color */
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.slider-wrapper {
    position: relative;
    max-width: 1000px;
    height: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background-color: #0f172a;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(241, 178, 74, 0.08);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0f172a;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-loading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    background-color: var(--color-bg-card);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(15, 26, 48, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--color-gold-glow);
}

@media (max-width: 768px) {
    .slider-wrapper {
        height: 300px;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}

/* ==========================================================================
   INTERACTIVE 3D GLOBE STYLES
   ========================================================================== */
.presence-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.presence-offices .offices-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
}

.presence-offices .office-card {
    margin: 0;
    width: 100%;
}

.presence-globe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}

.globe-canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(241, 178, 74, 0.05) 0%, rgba(15, 26, 48, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(241, 178, 74, 0.05);
}

#presence-3d-globe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    display: block;
    cursor: grab;
    touch-action: none;
}

#presence-3d-globe:active {
    cursor: grabbing;
}

.globe-drag-hint {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 26, 48, 0.6);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid var(--color-border);
    pointer-events: none;
    user-select: none;
    animation: pulseHint 2s infinite ease-in-out;
}

.globe-drag-hint i {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
    color: var(--color-gold);
}

@keyframes pulseHint {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

@media (max-width: 992px) {
    .presence-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .presence-offices .offices-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .presence-globe-container {
        order: -1; /* Place the interactive globe on top on tablets/mobiles */
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .presence-offices .offices-grid {
        grid-template-columns: 1fr;
    }
    .globe-canvas-wrapper {
        max-width: 100%;
    }
}

/* ==========================================================================
   GLOBE LABELS OVERLAY (HTML/CSS Overlay with Collision Avoidance)
   ========================================================================== */
.globe-labels-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.globe-label {
    position: absolute;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.2s ease;
    opacity: 0;
    background: rgba(8, 14, 28, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(10, 25, 47, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
}

.globe-label.hub {
    font-size: 10px;
    color: #FFFFFF;
    border-color: rgba(10, 25, 47, 0.7);
    background: rgba(10, 25, 47, 0.95);
    box-shadow: 0 4px 16px rgba(10, 25, 47, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   LIVE PRODUCT SOURCING SEARCH BAR
   ========================================================================== */
.live-sourcing-container {
    margin-top: 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15); /* White border for contrast */
    border-radius: 16px;
    padding: 24px;
    max-width: 600px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.live-sourcing-container:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.live-sourcing-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37; /* striking Gold color for dark backgrounds */
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.live-sourcing-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #D4AF37; /* striking Gold pulse dot */
    border-radius: 50%;
    box-shadow: 0 0 8px #D4AF37;
    animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 4px #D4AF37;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
        box-shadow: 0 0 10px #D4AF37;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
        box-shadow: 0 0 4px #D4AF37;
    }
}

.live-sourcing-search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.35); /* Dark background box */
    border: 1px solid rgba(255, 255, 255, 0.2); /* White border for contrast */
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-sourcing-search-box:focus-within {
    border-color: #D4AF37; /* Gold focus border */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.45);
}

.live-sourcing-input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: #FFFFFF; /* Pure White text */
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.live-sourcing-input::placeholder {
    color: rgba(255, 255, 255, 0.55); /* High contrast light text placeholder */
}

.search-submit-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65); /* High contrast icon */
    padding: 0 20px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    color: #D4AF37; /* Gold hover icon */
    transform: scale(1.05);
}

.search-submit-btn svg {
    width: 20px;
    height: 20px;
}

.live-sourcing-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-sourcing {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15); /* White border for contrast */
    color: #E2E8F0; /* Clean White text */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    font-family: inherit;
    text-transform: uppercase;
}

/* Specific Pill Buttons Hover Styling */
.btn-sourcing.btn-alibaba:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: #ff6a00;
    color: #ff8e3c;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.25);
    transform: translateY(-2px);
}

.btn-sourcing.btn-1688:hover {
    background: rgba(255, 34, 34, 0.1);
    border-color: #ff2222;
    color: #ff5555;
    box-shadow: 0 0 15px rgba(255, 34, 34, 0.25);
    transform: translateY(-2px);
}

.btn-sourcing.btn-made-in-china:hover {
    background: rgba(24, 144, 255, 0.1);
    border-color: #1890ff;
    color: #40a9ff;
    box-shadow: 0 0 15px rgba(24, 144, 255, 0.25);
    transform: translateY(-2px);
}

.btn-sourcing:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 575px) {
    .live-sourcing-container {
        margin-top: 30px;
        padding: 16px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .live-sourcing-search-box {
        width: 100%;
    }
    .live-sourcing-title {
        justify-content: center;
    }
    .live-sourcing-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .btn-sourcing {
        width: 100%;
    }
}

/* ==========================================================================
   MAERSK-STYLE TRACKING & SOURCE PORTAL TABS
   ========================================================================== */
.portal-tabs {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 20px;
    width: 100%;
}

.portal-tab {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    outline: none;
}

.portal-tab:hover {
    color: var(--color-navy);
}

.portal-tab.active {
    color: var(--color-gold);
}

.portal-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold);
}

.portal-panel {
    display: none;
    width: 100%;
    animation: fadeIn 0.3s ease;
}

.portal-panel.active {
    display: block;
}

.search-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 10px;
    text-align: left;
    width: 100%;
}

/* Timeline Custom Styles */
.timeline-step.completed .timeline-icon {
    background-color: var(--color-gold) !important;
    color: #FFFFFF !important;
    box-shadow: 0 0 10px var(--color-gold-glow) !important;
}

.timeline-step.active .timeline-icon {
    background-color: var(--color-gold) !important;
    color: #FFFFFF !important;
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 4px var(--color-gold-glow);
    }
    100% {
        box-shadow: 0 0 12px var(--color-gold-glow);
    }
}

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

/* ==========================================================================
   PREMIUM B2B GLOBAL SOURCE CODE STYLINGS (inspired by Alibaba & IndiaMART)
   ========================================================================== */
.b2b-header-search {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    border: 2px solid var(--color-gold);
    border-radius: 6px;
    overflow: hidden;
    background-color: #FFFFFF;
}
.b2b-search-select {
    padding: 8px 12px;
    background-color: #F8FAFC;
    border-right: 1px solid var(--color-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
}
.b2b-search-input {
    flex: 1;
    padding: 8px 16px;
    font-size: 0.88rem;
    color: var(--color-text-primary);
    background: transparent;
}
.b2b-search-btn {
    background-color: var(--color-gold);
    color: #FFFFFF;
    padding: 0 16px;
    cursor: pointer;
    font-weight: 700;
}
.b2b-search-btn:hover {
    background-color: var(--color-gold-hover);
}

/* Hero Section override for dark premium theme */
.hero-dark {
    position: relative;
    background-color: #050E1F;
    color: #FFFFFF;
    padding: 60px 0 50px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.hero-dark-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        160deg,
        rgba(5, 14, 31, 0.70) 0%,
        rgba(10, 25, 60, 0.55) 50%,
        rgba(5, 14, 31, 0.65) 100%
    );
    z-index: 1;
}
.hero-dark-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
/* Mobile: reduce height */
@media (max-width: 768px) {
    .hero-dark {
        min-height: 40vh;
        padding: 40px 0 30px;
    }
}

/* Directory Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.category-card {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--shadow-premium);
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}
.category-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold-light);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}
.category-card:hover .category-card-icon {
    background-color: var(--color-gold);
    color: #FFFFFF;
}

/* Featured Suppliers */
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.supplier-card {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}
.supplier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* Latest RFQ Board */
.rfq-board {
    background-color: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 24px;
}
.rfq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rfq-item {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Float WhatsApp & Live support chat drawer widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--color-wechat);
    color: #FFFFFF;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
    z-index: 999;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}

.chat-bubble-floating {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background-color: var(--color-gold);
    color: #FFFFFF;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(5, 125, 201, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.chat-bubble-floating:hover {
    transform: scale(1.1);
}

.chat-drawer-widget {
    position: fixed;
    bottom: 160px;
    right: 24px;
    width: 320px;
    height: 400px;
    background-color: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.chat-drawer-header {
    background-color: var(--color-gold);
    color: #FFFFFF;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Premium Zoom and specs grid */
.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}
.zoom-image {
    transition: transform 0.2s ease-out;
}
.zoom-container:hover .zoom-image {
    transform: scale(1.6);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.spec-table th, .spec-table td {
    padding: 12px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.88rem;
}
.spec-table th {
    font-weight: 700;
    color: var(--color-navy);
    background-color: #F8FAFC;
    width: 30%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    text-align: center;
    margin-top: 40px;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-gold);
    font-family: var(--font-heading);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION WIDGET
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 4999;
    display: none;
    animation: fadeIn 0.25s ease-out;
}
.mobile-drawer-overlay.active {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
}
.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-drawer-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-navy);
    padding: 10px 14px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}
.mobile-drawer-link:hover, .mobile-drawer-link.active {
    background-color: var(--color-gold-light);
    color: var(--color-gold);
}

/* Skeleton Loading Effects */
.skeleton {
    background: linear-gradient(90deg, #F1F5F9 25%, #E2E8F0 50%, #F1F5F9 75%);
    background-size: 200% 100%;
    animation: loadingSkeleton 1.5s infinite;
    border-radius: 4px;
}
@keyframes loadingSkeleton {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

/* ==========================================================================
   INDIAMART B2B MARKETPLACE STYLING OVERRIDES
   ========================================================================== */
.sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    border-top: 1px solid var(--color-border);
    display: none;
    justify-content: space-around;
    padding: 10px 16px;
    z-index: 4000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
    .sticky-mobile-bar {
        display: flex;
    }
    body {
        padding-bottom: 74px; /* Offset for mobile sticky footer bar */
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .category-card {
        padding: 16px 8px !important;
    }
    .category-card-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
}


/* Industries Dropdown */
.industry-dropdown-container {
    position: relative;
}
.industry-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 250px;
    z-index: 1050;
    margin-top: 10px;
}
.industry-dropdown-container:hover .industry-dropdown-menu {
    display: block;
}
.industry-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333333;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    text-align: left;
}
.industry-dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--color-navy);
}
/* Triangle pointer for dropdown */
.industry-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}
/* ==========================================================================
   Chat Widget Styles
   ========================================================================== */
.chat-widget-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--color-gold); /* Orange/gold branding */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.3s ease;
}
.chat-widget-btn:hover {
    transform: scale(1.05);
}

.chat-widget-window {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.chat-widget-window.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chat-widget-header {
    background-color: var(--color-gold);
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
}
.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-header-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-widget-minimize {
    cursor: pointer;
}

.chat-widget-body {
    flex: 1;
    padding: 16px;
    background-color: #f8f9fa;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
}
.chat-message.bot {
    background-color: #fff;
    color: var(--color-navy);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.chat-message.user {
    background-color: var(--color-gold);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.chat-action-pill {
    background-color: #fff;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.chat-action-pill:hover {
    background-color: var(--color-gold);
    color: #fff;
}

.chat-widget-input-area {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}
.chat-widget-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 24px;
    outline: none;
    font-size: 0.9rem;
}
.chat-widget-input-area input:focus {
    border-color: var(--color-gold);
}
.chat-widget-send-btn {
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .chat-widget-window {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}

/* 3D Globe Labels Overlay */
.globe-labels-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.globe-label {
    position: absolute;
    transform: translate(-50%, -50%);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.globe-label.hub {
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(241, 178, 74, 0.6);
    color: #F1B24A;
    box-shadow: 0 4px 14px rgba(241, 178, 74, 0.25);
}

.globe-label.hotspot {
    background: rgba(37, 99, 235, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

/* ============================================================
   ENTERPRISE HEADER REDESIGN STYLES (RJSELLER INSPIRED)
   ============================================================ */
.header {
    background-color: rgba(10, 25, 47, 0.90) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img-wrap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #FFFFFF;
    display: block;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    color: #F1B24A;
    letter-spacing: 1px;
    display: block;
    text-transform: uppercase;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #94A3B8;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F1B24A;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(241, 178, 74, 0.5);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-google-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #FFFFFF;
    color: #0A192F;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-google-auth:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
    background: #F8FAFC;
}

.btn-header-quote {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #F1B24A 0%, #E09F36 100%);
    color: #0A192F;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(241, 178, 74, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-header-quote:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(241, 178, 74, 0.5);
}

/* ============================================================
   AVATAR PROFILE SYSTEM STYLES
   ============================================================ */
.avatar-option:hover {
    transform: scale(1.1);
    border-color: rgba(241, 178, 74, 0.5) !important;
}

.avatar-option.selected {
    border-color: var(--color-gold) !important;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(241, 178, 74, 0.4);
    position: relative;
}

.avatar-option.selected::after {
    content: '✓';
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--color-gold);
    color: #0A192F;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-surface-crm);
}

.avatar-picker-grid::-webkit-scrollbar {
    width: 6px;
}
.avatar-picker-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 3px;
}
.avatar-picker-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

#headerDropdownMenu button:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}


/* ==========================================================================
   FUTURISTIC DARK THEME OVERRIDES (Below Hero)
   ========================================================================== */
#futuristic-dark-bg {
    position: relative;
    background-color: #06080E; /* Deep space black/blue */
    color: #FFFFFF;
    overflow: hidden;
    padding-bottom: 20px;
}

#futuristic-dark-bg section,
#futuristic-dark-bg .bg-white,
#futuristic-dark-bg [style*="background-color: #FFFFFF"],
#futuristic-dark-bg [style*="background-color: #F8FAFC"] {
    background-color: transparent !important;
}

#futuristic-dark-bg section {
    position: relative;
    z-index: 5;
}

/* Typography Overrides */
#futuristic-dark-bg h2, 
#futuristic-dark-bg h3, 
#futuristic-dark-bg h4, 
#futuristic-dark-bg .section-title {
    color: #FFFFFF !important;
}

#futuristic-dark-bg p, 
#futuristic-dark-bg .section-subtitle, 
#futuristic-dark-bg .step-desc, 
#futuristic-dark-bg .service-card-desc,
#futuristic-dark-bg li {
    color: #94A3B8 !important;
}

#futuristic-dark-bg strong {
    color: #E2E8F0 !important;
}

/* Glassmorphism Cards */
#futuristic-dark-bg .service-card,
#futuristic-dark-bg .category-card,
#futuristic-dark-bg .step-card,
#futuristic-dark-bg .office-card,
#futuristic-dark-bg .contact-card,
#futuristic-dark-bg .supplier-card,
#futuristic-dark-bg .trending-card,
#futuristic-dark-bg .testimonial-card,
#futuristic-dark-bg .blog-card,
#futuristic-dark-bg .stat-box {
    background: rgba(20, 25, 40, 0.4) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s ease;
}

#futuristic-dark-bg .service-card:hover,
#futuristic-dark-bg .category-card:hover,
#futuristic-dark-bg .step-card:hover,
#futuristic-dark-bg .office-card:hover,
#futuristic-dark-bg .contact-card:hover,
#futuristic-dark-bg .supplier-card:hover {
    background: rgba(30, 40, 60, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2) !important;
    transform: translateY(-5px);
}

/* Glow Orbs */
#futuristic-dark-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.glow-orb-1 { width: 600px; height: 600px; background: rgba(59, 130, 246, 0.18); top: 5%; left: -10%; }
.glow-orb-2 { width: 500px; height: 500px; background: rgba(147, 51, 234, 0.15); top: 25%; right: -5%; }
.glow-orb-3 { width: 700px; height: 700px; background: rgba(16, 185, 129, 0.12); top: 50%; left: 15%; }
.glow-orb-4 { width: 550px; height: 550px; background: rgba(236, 72, 153, 0.12); top: 75%; right: 10%; }
.glow-orb-5 { width: 800px; height: 800px; background: rgba(59, 130, 246, 0.15); bottom: -5%; left: 30%; }

/* Star Field & Animation */
#star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bg-star {
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: asyncBlink linear infinite;
    opacity: 0;
}

@keyframes asyncBlink {
    0% { opacity: 0.1; transform: scale(0.8); }
    50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 6px rgba(255,255,255,0.8); }
    100% { opacity: 0.1; transform: scale(0.8); }
}

/* Accent Lines / Specific Text fixes */
#futuristic-dark-bg .accent-line {
    background-color: var(--color-gold) !important;
}

/* Ensure images/icons are visible */
#futuristic-dark-bg .contact-card-icon i,
#futuristic-dark-bg .category-card-icon i,
#futuristic-dark-bg .service-icon-wrapper i {
    color: var(--color-gold) !important;
}

#futuristic-dark-bg .card-arrow {
    color: #94A3B8 !important;
}
#futuristic-dark-bg .contact-card:hover .card-arrow {
    color: var(--color-gold) !important;
}

/* Custom Overrides for elements that were manually colored */
#futuristic-dark-bg .presence-section .office-card h3 {
    color: #FFF !important;
}
#futuristic-dark-bg .how-section .step-badge {
    background: rgba(241, 178, 74, 0.2) !important;
    border: 1px solid var(--color-gold);
    color: var(--color-gold) !important;
}

/* Absolute forced transparency for all sections, footers, and containers inside dark theme */
#futuristic-dark-bg section,
#futuristic-dark-bg footer,
#futuristic-dark-bg .footer,
#futuristic-dark-bg .container > div,
#futuristic-dark-bg .presence-globe-container,
#futuristic-dark-bg .quickview-img-wrapper {
    background-color: transparent !important;
    background: transparent !important;
}

#futuristic-dark-bg .footer {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

#futuristic-dark-bg .footer h4,
#futuristic-dark-bg .footer p,
#futuristic-dark-bg .footer a,
#futuristic-dark-bg .footer .footer-social a,
#futuristic-dark-bg .footer-bottom p {
    color: #94A3B8 !important;
}
#futuristic-dark-bg .footer h4 {
    color: #FFFFFF !important;
}

/* ==========================================================================
   GLOBAL PREMIUM TYPOGRAPHY (RESPONSIVE)
   ========================================================================== */
/* Body / Base Text */
body, p, .body-text, .text-regular {
    font-weight: 500;
}

/* H1, H2 (Main Headings) */
h1, h2, .hero-title, .page-title, .section-title, .modal-title {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* H3, Section & Card Titles */
h3, .card-title, .service-title, .news-title, .office-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* H4, H5, Subtitles */
h4, h5, .subtitle, .section-subtitle, .card-subtitle, .hero-subtitle {
    font-weight: 600;
}

/* Buttons */
button, .btn, .btn-primary, .btn-outline, .btn-gold, .btn-outline-gold {
    font-weight: 700 !important;
}

/* Links */
a, .link, .nav-link, .footer-link {
    font-weight: 600;
}

/* --- EXCLUSIONS --- */
/* Avoid breaking SVGs, icons, logos, badges, small utility text */
svg, i, [data-lucide], .lucide, .material-icons, .fa, .fas, .fab, 
.badge, .chip, .counter, .rfq-counter, .tag, .status, .logo-title, .logo-subtitle,
input::placeholder, textarea::placeholder {
    font-weight: inherit;
    letter-spacing: inherit;
}

[data-lucide], .lucide {
    font-weight: normal !important;
}

/* --- RESPONSIVE TYPOGRAPHY --- */
/* Desktop Default */
h1, .hero-title { font-size: 3.5rem; line-height: 1.1; }
h2, .section-title { font-size: 2.5rem; line-height: 1.2; }
h3, .card-title { font-size: 1.5rem; line-height: 1.3; }

/* Tablet */
@media (max-width: 992px) {
    h1, .hero-title { font-size: 2.8rem; }
    h2, .section-title { font-size: 2.2rem; }
    h3, .card-title { font-size: 1.35rem; }
}

/* Mobile */
@media (max-width: 768px) {
    body, p { font-size: 15px; line-height: 1.5; }
    
    h1, .hero-title { 
        font-size: 2.2rem; 
        line-height: 1.2; 
    }
    
    h2, .section-title { 
        font-size: 1.8rem; 
        line-height: 1.25; 
    }
    
    h3, .card-title { 
        font-size: 1.25rem; 
        line-height: 1.3; 
    }
    
    .subtitle, .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* ==========================================================================
   CONTACT SECTION DARK THEME FIXES
   ========================================================================== */
#futuristic-dark-bg .qr-container {
    background: rgba(20, 25, 40, 0.6) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

#futuristic-dark-bg .qr-caption {
    color: #FFFFFF !important;
}

#futuristic-dark-bg .contact-card-value {
    color: #FFFFFF !important;
}

#futuristic-dark-bg .contact-card-label {
    color: rgba(255, 255, 255, 0.7) !important;
}
