/*
Theme Name: 10Media Pro
Description: Professional ORM WordPress theme for 10Media.co - Ultra Premium Edition
Version: 2.1
Author: 10Media
*/

/* Reset and Advanced Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0A0A0A;
    --secondary-bg: #151515;
    --tertiary-bg: #202020;
    --card-bg: #171717;
    --accent-gold: #B8975A;
    --accent-gold-light: #C4A266;
    --accent-gold-dark: #A08649;
    --accent-blue: #3A82F6;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #808080;
    --border-dark: #2A2A2A;
    --glass-bg: rgba(184, 151, 90, 0.08);
    --glass-border: rgba(184, 151, 90, 0.15);
    --gradient-primary: linear-gradient(135deg, #0A0A0A 0%, #151515 50%, #202020 100%);
    --gradient-gold: linear-gradient(135deg, #B8975A 0%, #C4A266 50%, #A08649 100%);
    --gradient-blue: linear-gradient(135deg, #3A82F6 0%, #2563EB 50%, #1D4ED8 100%);
    --shadow-small: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.25);
    --shadow-large: 0 15px 35px rgba(0, 0, 0, 0.35);
    --shadow-gold: 0 0 30px rgba(184, 151, 90, 0.2);
    --blur-strong: blur(20px);
    --blur-medium: blur(10px);
    --blur-light: blur(5px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: normal;
    transition: transform 0.15s ease;
    opacity: 0.8;
}

.custom-cursor.hover {
    transform: scale(1.8);
    background: var(--accent-gold-light);
    opacity: 1;
}

/* Floating Background Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.06;
    animation: float-random 25s linear infinite;
}

.floating-elements::before {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -125px;
    animation-delay: -8s;
}

.floating-elements::after {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -90px;
    animation-delay: -15s;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8975A 70%, #C4A266 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.hero-cta-wrapper {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--primary-bg);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    transform: translateX(3px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 151, 90, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-gold);
    padding: 0.9rem 2.2rem;
}

.cta-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

/* Premium Stats Section */
.stats-section {
    padding: 8rem 0;
    position: relative;
    background: var(--secondary-bg);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(184, 151, 90, 0.05) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(184, 151, 90, 0.05) 50%, transparent 51%);
    background-size: 100px 100px;
    opacity: 0.2;
    animation: patternMove 20s linear infinite;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(184, 151, 90, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover::after {
    width: 200px;
    height: 200px;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.4s ease;
    opacity: 1;
    letter-spacing: -1px;
    line-height: 1.2;
    min-height: 1.4em;
    white-space: nowrap;
    overflow: visible;
    text-align: center;
    width: 100%;
    color: var(--accent-gold);
    padding: 0 0.5rem;
    box-sizing: border-box;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .stat-number {
        color: var(--accent-gold);
        -webkit-text-fill-color: unset;
    }
}

/* Stats Counter Animation */
.stat-number.counting {
    opacity: 1;
    animation: countUp 1.5s ease-out forwards;
}

.stat-number.animated {
    opacity: 1;
    animation: statsFadeIn 2s ease-out forwards;
}

@keyframes countUp {
    0% {
        opacity: 0.7;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes statsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stats section scroll trigger */
.stats-section {
    padding: 8rem 0;
    position: relative;
    background: var(--secondary-bg);
    overflow: hidden;
}

.stats-section .stat-item {
    animation-delay: 0.2s;
}

.stats-section .stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stats-section .stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stats-section .stat-item:nth-child(4) {
    animation-delay: 0.8s;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(184, 151, 90, 0.3));
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.4;
}

.stat-item:hover .stat-label {
    color: var(--text-primary);
}

/* Premium Services Section */
.services-section {
    padding: 10rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23B8975A" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 6rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-strong);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    group: hover;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: conic-gradient(from 0deg, transparent, rgba(184, 151, 90, 0.05), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 400px;
    height: 400px;
    animation: rotate 3s linear infinite;
}

.service-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
    background: rgba(184, 151, 90, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-bg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 10px 30px rgba(184, 151, 90, 0.4);
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    transition: color 0.4s ease;
}

.service-card:hover .service-title {
    color: var(--accent-gold);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
    transition: color 0.4s ease;
}

.service-card:hover .service-description {
    color: var(--text-primary);
}

/* Enhanced Service Highlights Section */
.service-highlights-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.service-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="highlights-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23B8975A" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23highlights-pattern)"/></svg>');
    opacity: 0.6;
}

.service-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-strong);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--accent-gold);
    background: rgba(184, 151, 90, 0.12);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-bg);
    transition: all 0.6s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(184, 151, 90, 0.5);
}

.highlight-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.highlight-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlight-card:hover .highlight-description {
    color: var(--text-primary);
}

/* Enhanced Why Choose Us Section */
.why-choose-section {
    padding: 8rem 0;
    background: var(--secondary-bg);
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.why-choose-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(184, 151, 90, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.why-choose-item:hover::after {
    width: 250px;
    height: 250px;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-bg);
    transition: transform 0.5s ease;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.why-choose-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.why-choose-item:hover p {
    color: var(--text-primary);
}

/* Premium Animations */
@keyframes float-random {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(45deg); }
    50% { transform: translateY(-8px) rotate(90deg); }
    75% { transform: translateY(-20px) rotate(135deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes expandLine {
    to { transform: scaleX(1); }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* Enhanced Animations */
@keyframes nodeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}

@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Premium Footer with Platform Section */
.site-footer {
    background: var(--primary-bg);
    padding: 8rem 0 2rem;
    border-top: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.platforms-section {
    margin-bottom: 4rem;
}

.platforms-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
}

.social-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.platform-logo:hover {
    color: var(--accent-gold);
    background: rgba(184, 151, 90, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.platform-logo i {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.platform-logo:hover i {
    transform: scale(1.2) rotate(5deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-size: 1rem;
}

/* Enhanced Responsive Design for Vertical Timeline */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
    }
    
    .network-container {
        width: 300px;
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .service-highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Fixes */
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-text .logo-number {
        font-size: 1.5rem;
    }
    
    .logo-text .logo-suffix {
        font-size: 1.2rem;
    }
    
    /* Hero Section Mobile - COMPLETELY FIXED */
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
        text-align: center;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
        display: block;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
    
    /* Completely hide network visual on mobile */
    .hero-visual,
    .network-container,
    .network-center,
    .network-node,
    .network-connection {
        display: none !important;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        text-align: center;
    }
    
    /* Services Grid Mobile */
    .services-section {
        padding: 6rem 0;
    }
    
    .services-container,
    .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .service-highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        padding: 2rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Stats Section Mobile */
    .stats-section {
        padding: 6rem 0;
    }
    
    .stats-container {
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 6vw, 2.5rem);
        min-height: 1.2em;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Timeline Mobile Fixes - Numbers Always Above Boxes */
    .how-it-works {
        padding: 6rem 0;
    }
    
    .timeline-container {
        padding: 0 1rem;
    }
    
    .timeline-steps {
        gap: 4rem;
        margin-top: 4rem;
    }
    
    .timeline-step {
        display: block;
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
    }
    
    /* Number always on top */
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 2rem auto;
        position: relative;
        z-index: 100;
        display: block;
    }
    
    /* Content box below number */
    .step-content {
        padding: 2rem;
        margin: 0 auto;
        max-width: 90%;
        text-align: center;
        position: relative;
        z-index: 50;
    }
    
    .step-content::before {
        display: none;
    }
    
    /* Hide timeline line on mobile */
    .timeline-line {
        display: none;
    }
    
    .step-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .step-description {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Reset any order changes */
    .timeline-step:nth-child(even) .step-content:first-child {
        order: unset;
        text-align: center;
    }
    
    .timeline-step:nth-child(even) .step-empty:last-child {
        order: unset;
    }
    
    .step-empty {
        display: none;
    }
    
    /* Why Choose Section Mobile */
    .why-choose-section {
        padding: 6rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-item {
        padding: 2rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 6rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 6rem 0;
    }
    
    .faq-wrapper {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Contact Section Mobile - FIXED */
    .contact-section {
        padding: 6rem 0;
        display: block;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-wrapper {
        display: block;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
        margin-bottom: 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form {
        display: block;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        box-sizing: border-box;
    }
    
    .form-submit {
        width: 100%;
        padding: 1.2rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .contact-info {
        gap: 1.5rem;
        width: 100%;
    }
    
    .contact-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 3rem;
    }
    
    /* Network Visual Mobile */
    .hero-visual {
        height: 250px;
    }
    
    .network-container {
        width: 250px;
        height: 250px;
    }
    
    .network-node {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile fixes */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-text .logo-number {
        font-size: 1.3rem;
    }
    
    .logo-text .logo-suffix {
        font-size: 1rem;
    }
    
    .service-card,
    .highlight-card,
    .why-choose-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-gold);
}

.bg-dark {
    background-color: var(--secondary-bg);
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Loading States */
.loading {
    animation: pulse 2s infinite;
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .floating-elements,
    .hero-particles,
    .hero-geometric {
        display: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-dark);
}

/* Selection */
::selection {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--primary-bg);
}

/* Focus States */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Premium Contact Form Section */
.contact-section {
    padding: 10rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(184, 151, 90, 0.05) 0%, transparent 50%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.contact-info-section {
    position: relative;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-strong);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-gold);
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: var(--blur-light);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(184, 151, 90, 0.2);
}

.form-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.4s ease;
    pointer-events: none;
    background: var(--primary-bg);
    padding: 0 0.5rem;
    border-radius: 5px;
}

.form-input:focus + .form-label,
.form-textarea:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--accent-gold);
    background: var(--primary-bg);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--gradient-gold);
    color: var(--primary-bg);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 151, 90, 0.4);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-bg);
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.contact-details a:hover {
    color: var(--accent-gold);
}

.contact-details span {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 10rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="testimonial-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23B8975A" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23testimonial-pattern)"/></svg>');
    opacity: 0.3;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-strong);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.testimonial-card:hover::before {
    opacity: 0.08;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0 0 2rem 0;
    position: relative;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-size: 1.2rem;
}

.author-info h5 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Section - Pure CSS */
.faq-section {
    padding: 10rem 0;
    background: var(--secondary-bg);
    position: relative;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

/* Hide the checkbox */
.faq-toggle {
    display: none;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    margin: 0;
}

.faq-question:hover {
    background: rgba(184, 151, 90, 0.05);
}

.faq-question h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: var(--accent-gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* When checked, rotate the icon */
.faq-toggle:checked + .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 2rem;
}

/* When checked, show the answer */
.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Glass Morphism Effects */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-medium);
}

.glass-strong {
    background: rgba(184, 151, 90, 0.12);
    backdrop-filter: var(--blur-strong);
    border: 1px solid rgba(184, 151, 90, 0.2);
    box-shadow: var(--shadow-large);
}

/* Premium Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: var(--blur-medium);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(184, 151, 90, 0.1);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.75rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--accent-gold);
}

.site-header.scrolled::before {
    opacity: 0.9;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Professional Logo Design - Exact Copy of User's Image with Gold Colors */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 0;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Perfect Sphere with 3D Earth Globe Design */
.logo-icon {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, 
            #C4A266 0%, 
            #B8975A 25%, 
            #A08649 50%, 
            #8B7540 75%, 
            #6B5A31 100%
        );
    box-shadow: 
        0 8px 20px rgba(184, 151, 90, 0.4),
        inset -5px -5px 15px rgba(0, 0, 0, 0.3),
        inset 5px 5px 15px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Earth continents pattern */
.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        /* Africa-like continent */
        radial-gradient(ellipse 15px 20px at 45% 40%, rgba(0, 0, 0, 0.25) 0%, transparent 60%),
        /* Europe-Asia continent */
        radial-gradient(ellipse 20px 12px at 60% 25%, rgba(0, 0, 0, 0.20) 0%, transparent 65%),
        /* America-like continent */
        radial-gradient(ellipse 12px 25px at 25% 45%, rgba(0, 0, 0, 0.22) 0%, transparent 55%),
        /* Australia-like continent */
        radial-gradient(ellipse 8px 6px at 70% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 70%),
        /* Small islands */
        radial-gradient(circle 3px at 35% 65%, rgba(0, 0, 0, 0.12) 0%, transparent 80%),
        radial-gradient(circle 2px at 55% 75%, rgba(0, 0, 0, 0.10) 0%, transparent 90%),
        /* Network lines for digital concept */
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.06) 49%, rgba(255, 255, 255, 0.06) 51%, transparent 52%);
    border-radius: 50%;
    opacity: 0.9;
    animation: earthRotate 15s linear infinite;
}

/* Bright highlight for 3D effect */
.logo-icon::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 18px;
    height: 12px;
    background: 
        radial-gradient(ellipse at center, 
            rgba(255, 255, 255, 0.5) 0%, 
            rgba(255, 255, 255, 0.25) 40%, 
            transparent 70%
        );
    border-radius: 50%;
    animation: lightShine 4s ease-in-out infinite;
}

/* Hover effects - Enhanced 3D feel */
.logo:hover .logo-icon {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 
        0 12px 30px rgba(184, 151, 90, 0.5),
        inset -8px -8px 20px rgba(0, 0, 0, 0.4),
        inset 8px 8px 20px rgba(255, 255, 255, 0.15);
    background: 
        radial-gradient(circle at 25% 25%, 
            #D4B276 0%, 
            #C4A266 25%, 
            #B8975A 50%, 
            #A08649 75%, 
            #8B7540 100%
        );
}

.logo:hover .logo-icon::before {
    animation-duration: 10s;
    opacity: 1;
}

.logo:hover .logo-icon::after {
    animation-duration: 2s;
    background: 
        radial-gradient(ellipse at center, 
            rgba(255, 255, 255, 0.7) 0%, 
            rgba(255, 255, 255, 0.35) 40%, 
            transparent 70%
        );
}

/* Professional Logo Text - 10MEDIA */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    position: relative;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.logo:hover .logo-text::after {
    width: 100%;
}

.logo-text .logo-number {
    font-size: 1.9rem;
    font-weight: 900;
    margin-right: 2px;
    color: var(--accent-gold);
}

.logo-text .logo-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Network pulse animation for media concept */
@keyframes networkPulse {
    0%, 100% { 
        opacity: 0.1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.3; 
        transform: scale(1.2);
    }
}

/* Digital pulse animation for connectivity */
@keyframes digitalPulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1);
        box-shadow: 0 0 8px rgba(184, 151, 90, 0.4);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.4);
        box-shadow: 0 0 16px rgba(184, 151, 90, 0.6);
    }
}

/* Premium Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.2rem;
    border-radius: 20px;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.main-nav a:hover::before {
    opacity: 0.08;
}

.main-nav a:hover::after {
    width: 70%;
}

.main-nav a:hover {
    color: var(--accent-gold-light);
    transform: translateY(-1px);
}

.get-in-touch {
    background: var(--gradient-gold) !important;
    color: var(--primary-bg) !important;
    padding: 0.75rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.get-in-touch::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.get-in-touch::after {
    display: none;
}

.get-in-touch:hover::before {
    left: 100%;
}

.get-in-touch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 151, 90, 0.4);
    color: var(--primary-bg) !important;
}

/* Enhanced Hero Section with Visual Elements */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(184, 151, 90, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(58, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(184, 151, 90, 0.03) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(184, 151, 90, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8975A 50%, #C4A266 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    letter-spacing: -0.02em;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: expandLine 2s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

/* Hero Visual Network */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-bg);
    box-shadow: var(--shadow-gold);
    z-index: 10;
    animation: centerPulse 3s ease-in-out infinite;
}

.network-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
    transition: all 0.4s ease;
    animation: nodeFloat 6s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.network-node:nth-child(2) { top: 30px; left: 50%; transform: translateX(-50%); animation-delay: -0.5s; }
.network-node:nth-child(3) { top: 50%; right: 30px; transform: translateY(-50%); animation-delay: -1s; }
.network-node:nth-child(4) { bottom: 30px; left: 50%; transform: translateX(-50%); animation-delay: -1.5s; }
.network-node:nth-child(5) { top: 50%; left: 30px; transform: translateY(-50%); animation-delay: -2s; }
.network-node:nth-child(6) { top: 25%; right: 25%; animation-delay: -2.5s; }
.network-node:nth-child(7) { bottom: 25%; left: 25%; animation-delay: -3s; }

.network-connection {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-gold), transparent);
    height: 3px;
    transform-origin: left center;
    opacity: 0.4;
    animation: connectionPulse 4s ease-in-out infinite;
    border-radius: 2px;
}

.connection-1 { top: 50%; left: 50%; width: 150px; transform: rotate(-45deg); animation-delay: 0s; }
.connection-2 { top: 50%; left: 50%; width: 150px; transform: rotate(45deg); animation-delay: -1s; }
.connection-3 { top: 50%; left: 50%; width: 150px; transform: rotate(135deg); animation-delay: -2s; }
.connection-4 { top: 50%; left: 50%; width: 150px; transform: rotate(-135deg); animation-delay: -3s; }

/* Enhanced Timeline Section */
.how-it-works {
    background: var(--primary-bg);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(184, 151, 90, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(184, 151, 90, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 21rem;
    bottom: 5rem;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(184, 151, 90, 0.3);
    z-index: -10;
    pointer-events: none;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--primary-bg), 0 0 20px rgba(184, 151, 90, 0.4);
    z-index: -9;
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--primary-bg), 0 0 20px rgba(184, 151, 90, 0.4);
    z-index: -9;
}

.timeline-steps {
    position: relative;
    z-index: 50;
    margin-top: 14rem;
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
    z-index: 50;
}

.timeline-step:nth-child(even) .step-content:first-child {
    order: 3;
    text-align: left;
}

.timeline-step:nth-child(even) .step-empty:last-child {
    order: 1;
}

.step-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(23, 23, 23, 0.95) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(184, 151, 90, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 100;
    margin: 0 2rem;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
    z-index: 101;
}

/* Arrow pointing right for left content */
.timeline-step:nth-child(odd) .step-content::before {
    right: -32px;
    border-left-color: var(--card-bg);
}

/* Arrow pointing left for right content */
.timeline-step:nth-child(even) .step-content::before {
    left: -32px;
    border-right-color: var(--card-bg);
}

.step-content:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(184, 151, 90, 0.2);
    z-index: 200;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 102;
    position: relative;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    z-index: 102;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-bg);
    position: relative;
    z-index: 150;
    box-shadow: 0 0 0 6px var(--primary-bg), 0 15px 35px rgba(184, 151, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 0 6px var(--primary-bg), 0 20px 50px rgba(184, 151, 90, 0.4);
    z-index: 250;
}

.step-number:hover::before {
    opacity: 1;
}

.step-empty {
    /* Empty space for grid alignment */
}

/* Flow animations */
@keyframes flow-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.timeline-line {
    animation: flow-pulse 3s ease-in-out infinite;
}

/* Floating particles for timeline */
.timeline-step::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 4s ease-in-out infinite;
}

.timeline-step:nth-child(1)::after {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.timeline-step:nth-child(2)::after {
    top: 30%;
    left: 15%;
    animation-delay: 1s;
}

.timeline-step:nth-child(3)::after {
    top: 25%;
    right: 20%;
    animation-delay: 2s;
}

.timeline-step:nth-child(4)::after {
    top: 35%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-step {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .timeline-step:nth-child(even) .step-content:first-child {
        order: 2;
        text-align: center;
    }
    
    .timeline-step:nth-child(even) .step-empty:last-child {
        order: 3;
    }
    
    .step-content::before {
        display: none;
    }
    
    .timeline-line {
        left: 2rem;
        width: 2px;
    }
    
    .timeline-line::before,
    .timeline-line::after {
        width: 12px;
        height: 12px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
}

@keyframes backgroundShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -15px) scale(1.05); }
    50% { transform: translate(-8px, 15px) scale(0.95); }
    75% { transform: translate(-15px, -8px) scale(1.02); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sphereRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes centralGlow {
    0% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.3);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes centralDot {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes earthRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes lightShine {
    0% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
    100% { 
        opacity: 0.5;
        transform: scale(1);
    }
} 

/* Enhanced Responsive Design for All Devices */

/* Tablet Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .timeline-step {
        grid-template-columns: 1fr 60px 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 250px;
    }
    
    .network-container {
        width: 250px;
        height: 250px;
    }
}