/**
 * Home Page Styles - Modern Aivent-inspired Design
 * Hudson Capital Holding Ltd Website
 */

/* ==========================================================================
   Hero Section - Cinematic Full Screen
   ========================================================================== */

.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg-video .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.85) 0%, rgba(0, 40, 60, 0.7) 50%, rgba(0, 30, 50, 0.8) 100%);
}

/* Header Transparent */
.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease;
}

.header-transparent.scrolled {
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(10px);
}

.header-transparent .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.header-transparent .nav-link:hover,
.header-transparent .nav-link.active {
    color: #2dd4bf;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content-cinematic {
    max-width: 900px;
}

/* Hero Tagline */
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.tagline-dot {
    width: 8px;
    height: 8px;
    background: #2dd4bf;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-tagline span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: #2dd4bf;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hero Mega Title */
.hero-mega-title {
    margin-bottom: 32px;
}

.hero-mega-title .title-line {
    display: block;
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 900;
    line-height: 0.95;
    color: #ffffff;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-mega-title .title-line.accent {
    color: transparent;
    -webkit-text-stroke: 2px #2dd4bf;
    text-stroke: 2px #2dd4bf;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-hero-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #2dd4bf;
    color: #0a1628;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-main:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(45, 212, 191, 0.3);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: relative;
    z-index: 10;
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-bar-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-bar-item {
    text-align: justify;
}

.stat-bar-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-plus {
    color: #2dd4bf;
}

.stat-bar-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-bar-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #2dd4bf, transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Section Styling - Modern
   ========================================================================== */

.section-tag-modern {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-tag-modern.light {
    color: #2dd4bf;
}

.section-title-modern {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-modern.light {
    color: #ffffff;
}

.section-subtitle-modern {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.section-header-modern {
    margin-bottom: 60px;
}

.section-header-modern.text-center {
    text-align: center;
}

.section-header-modern:not(.text-center) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.section-header-modern .header-right {
    text-align: justify;
    max-width: 400px;
}

.section-header-modern .header-right p {
    color: #64748b;
    margin-bottom: 16px;
}

/* ==========================================================================
   About Section - Modern
   ========================================================================== */

.about-modern {
    padding: 120px 0;
    background: #f8fafc;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

.about-visual-modern {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff;
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
}

.exp-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.9;
}

.about-content-modern {
    padding-right: 20px;
}

.about-text-modern {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon-modern {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.feature-icon-modern svg {
    width: 24px;
    height: 24px;
    color: #0d9488;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: #64748b;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.25);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.35);
}

/* ==========================================================================
   Products Section - Catalog Style
   ========================================================================== */

.products-modern {
    padding: 120px 0;
    background: #ffffff;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .products-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-catalog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-catalog-card:hover {
    transform: translateY(-5px);
}

.product-catalog-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-catalog-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-catalog-card:hover .product-catalog-image img {
    transform: scale(1.05);
}

.product-catalog-info {
    text-align: center;
}

.product-catalog-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-catalog-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-text-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0d9488;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-text-modern:hover {
    gap: 12px;
    color: #0f766e;
}

/* ==========================================================================
   Projects Section - Modern
   ========================================================================== */

.projects-modern {
    padding: 120px 0;
    background: #f8fafc;
}

.projects-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .projects-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .project-showcase-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .project-showcase-card.featured .project-showcase-content h3 {
        font-size: 24px;
    }
}

.project-showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.project-showcase-image {
    position: absolute;
    inset: 0;
}

.project-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-showcase-card:hover .project-showcase-image img {
    transform: scale(1.1);
}

.project-showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: #ffffff;
    transition: padding 0.3s ease;
}

.project-showcase-card:hover .project-showcase-content {
    padding-bottom: 40px;
}

.project-location-badge {
    display: inline-block;
    font-size: 14px;
    color: #2dd4bf;
    margin-bottom: 12px;
}

.project-showcase-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.project-showcase-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.project-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags-modern span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.section-cta-modern {
    margin-top: 60px;
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #0d9488;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #0d9488;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: #0d9488;
    color: #ffffff;
}

/* ==========================================================================
   Markets Section - Modern
   ========================================================================== */

.markets-modern {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    overflow: hidden;
}

.markets-modern-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.markets-modern-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(30, 58, 95, 0.85) 100%);
    z-index: 1;
}

.markets-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.markets-modern-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .markets-modern-grid {
        grid-template-columns: 1fr 1.5fr;
    }
}

.markets-content-modern {
    color: #ffffff;
}

.markets-text-modern {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-modern-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #ffffff;
    color: #0a1628;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern-light:hover {
    background: #2dd4bf;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
}

.markets-flags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 480px) {
    .markets-flags-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .markets-flags-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.country-flag-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.country-flag-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.country-flag {
    font-size: 42px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.country-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.markets-flags-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .markets-flags-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flag-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.flag-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.flag-emoji {
    font-size: 32px;
}

.flag-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================================================
   Partners Section - Modern
   ========================================================================== */

.partners-modern {
    padding: 100px 0;
    background: #ffffff;
}

.partners-header-modern {
    text-align: center;
    margin-bottom: 48px;
}

.partners-header-modern h3 {
    font-size: 20px;
    color: #475569;
    font-weight: 500;
    margin-top: 8px;
}

.partners-slider-modern {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track-modern {
    display: flex;
    gap: 32px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-modern {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-logo-modern:hover {
    background: #f1f5f9;
    color: #64748b;
}

/* ==========================================================================
   CTA Section - Modern
   ========================================================================== */

.cta-modern {
    padding: 80px 0 120px;
    background: #f8fafc;
}

.cta-modern-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-modern-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media (min-width: 1024px) {
    .cta-modern-card {
        flex-direction: row;
        justify-content: space-between;
        text-align: justify;
        padding: 80px 100px;
    }
}

.cta-modern-content {
    position: relative;
    z-index: 1;
}

.cta-modern-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-modern-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.cta-modern-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .cta-modern-actions {
        flex-shrink: 0;
    }
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: #ffffff;
    color: #0d9488;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Fullscreen Showcase Section
   ========================================================================== */

.fullscreen-showcase {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fullscreen-bg {
    position: absolute;
    inset: 0;
}

.fullscreen-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fullscreen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(13, 148, 136, 0.7) 100%);
}

.fullscreen-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

.showcase-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #2dd4bf;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.showcase-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.showcase-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 550px;
}

.showcase-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .showcase-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .showcase-stats {
        grid-template-columns: 1fr;
    }
}

.showcase-stat {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .showcase-stat {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 24px;
    }
}

.showcase-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 56px;
    }
}

.stat-name {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .stat-name {
        margin-top: 0;
    }
}

/* ==========================================================================
   CTA Fullscreen Section
   ========================================================================== */

.cta-fullscreen {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-fullscreen-bg {
    position: absolute;
    inset: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-fullscreen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(30, 58, 95, 0.9) 100%);
}

.cta-fullscreen-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 0;
}

.cta-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-tagline {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #2dd4bf;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.cta-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-subtext {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #2dd4bf;
    color: #0a1628;
    font-size: 16px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(45, 212, 191, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    .hero-mega-title .title-line {
        font-size: 48px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .stats-bar-grid {
        gap: 20px;
    }
    
    .stat-bar-divider {
        display: none;
    }
    
    .stat-bar-number {
        font-size: 36px;
    }
    
    .about-img-secondary,
    .about-experience-badge {
        display: none;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Target Markets - World Map Section
   ========================================================================== */

.markets-map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section header alignment */
.markets-header {
    text-align: left;
    margin-bottom: 40px;
}

.markets-header .section-tag-modern {
    margin-left: 0;
}

.markets-map-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.world-map-container {
    position: relative;
    width: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Standardized typography for country labels */
.world-map-svg .map-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 7px;
    font-weight: 500;
    fill: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.world-map-svg .map-label.hub {
    font-size: 9px;
    font-weight: 700;
    fill: #ffffff;
    letter-spacing: 0.5px;
}

/* Hub marker styling with pulse animation */
.world-map-svg .hub-marker .hub-glow {
    animation: hubPulseAnim 2s ease-in-out infinite;
}

@keyframes hubPulseAnim {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.world-map-svg .connection-lines path {
    stroke-linecap: round;
}

/* Pin marker styling */
.world-map-svg .pin-marker {
    transition: all 0.3s ease;
    cursor: pointer;
}

.world-map-svg .pin-marker:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(249, 115, 22, 0.6));
}

.world-map-svg circle {
    transition: all 0.3s ease;
}

.world-map-svg circle:hover {
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.6));
}

/* Explore button */
.map-explore-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #f97316;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.map-explore-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5);
}

@media (max-width: 768px) {
    .markets-map-section {
        padding: 50px 0;
    }
    
    .markets-header {
        text-align: center;
    }
    
    .world-map-svg .map-label {
        font-size: 5px;
    }
    
    .world-map-svg .map-label.hub {
        font-size: 7px;
    }
    
    .map-explore-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}
