/* Modern Trade & Global Business Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Global Trade Theme */
    --primary-blue: #1e3a8a;
    --primary-navy: #0f172a;
    --secondary-blue: #3b82f6;
    --accent-gold: #f59e0b;
    --accent-orange: #ea580c;
    --success-green: #10b981;
    --text-white: #ffffff;
    --text-light: #f1f5f9;
    --text-gray: #64748b;
    --text-dark: #1e293b;
    --background-dark: #0f172a;
    --background-light: #f8fafc;
    --surface-dark: #1e293b;
    --surface-light: #ffffff;
    --border-light: #e2e8f0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.25);
    --shadow-heavy: rgba(0, 0, 0, 0.4);
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.8) 50%, rgba(59, 130, 246, 0.7) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-white);
    background: var(--background-dark);
    overflow-x: hidden;
}

/* Language Selector - Enhanced */
.language-selector {
    position: fixed;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    z-index: 1000;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--text-white);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.875rem;
    font-weight: 500;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + var(--spacing-xs));
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px var(--shadow-heavy);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1001;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: var(--spacing-xs) var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.875rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    z-index: -1;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; }
.floating-icon:nth-child(4) { top: 70%; right: 10%; }
.floating-icon:nth-child(5) { top: 30%; left: 50%; }
.floating-icon:nth-child(6) { bottom: 10%; right: 30%; }

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) rotate(-5deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) rotate(3deg);
        opacity: 0.7;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1000px;
    padding: var(--spacing-lg);
    animation: fadeInUp 1s ease-out;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-section {
    margin-bottom: var(--spacing-xl);
}

.main-logo {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-gold) 50%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.hero-text {
    margin-bottom: var(--spacing-xl);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-lg);
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    display: inline-block;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.8);
        transform: scale(1.05);
    }
}

.cta-section {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

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

/* Space Trade Visual */
.space-trade-visual {
    width: 100%;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-scene {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 40% 70%, white, transparent),
        radial-gradient(1px 1px at 90% 40%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(2px 2px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 10% 20%, white, transparent),
        radial-gradient(1px 1px at 70% 80%, white, transparent),
        radial-gradient(2px 2px at 30% 90%, white, transparent);
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.planet {
    position: absolute;
    font-size: 4rem;
    animation: rotate-planet 30s linear infinite;
}

.planet.earth {
    top: 20%;
    left: 15%;
    animation-duration: 25s;
}

.planet.mars {
    bottom: 25%;
    right: 20%;
    font-size: 2.5rem;
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes rotate-planet {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.space-station {
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: 3rem;
    animation: float-station 8s ease-in-out infinite;
}

@keyframes float-station {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.cargo-ship {
    position: absolute;
    font-size: 2.5rem;
    animation: fly-ship 15s linear infinite;
}

.cargo-ship.ship-1 {
    top: 40%;
    left: -5%;
    animation-delay: 0s;
}

.cargo-ship.ship-2 {
    bottom: 30%;
    right: -5%;
    animation-delay: 7s;
    animation-direction: reverse;
}

@keyframes fly-ship {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(200px) rotate(-10deg); }
    50% { transform: translateX(400px) rotate(5deg); }
    75% { transform: translateX(600px) rotate(-5deg); }
    100% { transform: translateX(800px) rotate(0deg); }
}

.trade-route {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
    animation: pulse-route 3s ease-in-out infinite;
}

.trade-route.route-1 {
    top: 42%;
    left: 10%;
    width: 300px;
    transform: rotate(-15deg);
}

.trade-route.route-2 {
    bottom: 32%;
    right: 10%;
    width: 250px;
    transform: rotate(20deg);
    animation-delay: 1.5s;
}

@keyframes pulse-route {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.cargo-container {
    position: absolute;
    font-size: 1.5rem;
    animation: drift-cargo 12s ease-in-out infinite;
}

.cargo-container.container-1 {
    top: 60%;
    left: 25%;
    animation-delay: 0s;
}

.cargo-container.container-2 {
    top: 35%;
    right: 35%;
    animation-delay: 4s;
}

.cargo-container.container-3 {
    bottom: 45%;
    left: 60%;
    animation-delay: 8s;
}

@keyframes drift-cargo {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.asteroid {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: tumble-asteroid 20s linear infinite;
}

.asteroid.asteroid-1 {
    top: 15%;
    left: 50%;
    animation-delay: 0s;
}

.asteroid.asteroid-2 {
    bottom: 15%;
    left: 30%;
    animation-delay: 10s;
    animation-direction: reverse;
}

@keyframes tumble-asteroid {
    0% { transform: rotate(0deg) translateX(0); }
    25% { transform: rotate(90deg) translateX(30px); }
    50% { transform: rotate(180deg) translateX(0); }
    75% { transform: rotate(270deg) translateX(-30px); }
    100% { transform: rotate(360deg) translateX(0); }
}

.nebula {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.4;
    animation: nebula-glow 6s ease-in-out infinite alternate;
}

@keyframes nebula-glow {
    0% { 
        opacity: 0.2; 
        transform: translate(-50%, -50%) scale(1);
        filter: blur(1px);
    }
    100% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(2px);
    }
}

/* About Section */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--background-light) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 300;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.about-card {
    background: var(--surface-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.about-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-dark);
    color: var(--text-white);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-gold);
}

.contact-method .material-icons {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.method-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.method-value {
    display: block;
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

/* Globe Animation */
.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    animation: rotate 20s linear infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: rotate 10s linear infinite;
}

.orbit-2 {
    width: 250px;
    height: 250px;
    animation: rotate 15s linear infinite reverse;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    animation: rotate 25s linear infinite;
}

.satellite {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

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

/* Footer */
.footer {
    background: var(--background-dark);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.footer-text .copyright {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.6);
}

.fab-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--text-dark);
    color: var(--text-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    margin-bottom: var(--spacing-xs);
}

.fab-container:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
    
    .hero-content {
        padding: var(--spacing-md);
        text-align: left;
    }
    
    .logo-section {
        text-align: center;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-highlight {
        text-align: left;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: left;
    }
    
    .contact-info h3 {
        text-align: left;
    }
    
    .contact-method {
        justify-content: flex-start;
    }
    
    .contact-visual {
        justify-content: center;
    }
    
    .globe-container {
        width: 250px;
        height: 250px;
    }
    
    .orbit-1 { width: 150px; height: 150px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 250px; height: 250px; }
    
    .footer-content {
        text-align: left;
    }
    
    /* Space Trade Visual - Mobile */
    .space-trade-visual {
        height: 60vh;
        padding: var(--spacing-md);
    }
    
    .space-scene {
        max-width: 100%;
        max-height: 400px;
    }
    
    .planet {
        font-size: 3rem;
    }
    
    .planet.mars {
        font-size: 2rem;
    }
    
    .space-station {
        font-size: 2.5rem;
    }
    
    .cargo-ship {
        font-size: 2rem;
    }
    
    .nebula {
        font-size: 4rem;
    }
    
    .cargo-container {
        font-size: 1.2rem;
    }
    
    .asteroid {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 1.25rem;
        padding: var(--spacing-xs);
    }
    
    .about-card {
        padding: var(--spacing-lg);
    }
    
    .globe-container {
        width: 200px;
        height: 200px;
    }
    
    .globe {
        font-size: 3rem;
    }
    
    .orbit-1 { width: 120px; height: 120px; }
    .orbit-2 { width: 150px; height: 150px; }
    .orbit-3 { width: 200px; height: 200px; }
    
    .satellite {
        font-size: 1.2rem;
    }
    
    /* Space Trade Visual - Small Mobile */
    .space-trade-visual {
        height: 50vh;
        padding: var(--spacing-sm);
    }
    
    .space-scene {
        max-height: 300px;
    }
    
    .planet {
        font-size: 2.5rem;
    }
    
    .planet.mars {
        font-size: 1.8rem;
    }
    
    .space-station {
        font-size: 2rem;
    }
    
    .cargo-ship {
        font-size: 1.8rem;
    }
    
    .nebula {
        font-size: 3rem;
    }
    
    .cargo-container {
        font-size: 1rem;
    }
    
    .asteroid {
        font-size: 1.2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
a:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .language-selector,
    .fab-container,
    .floating-elements,
    .scroll-indicator {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}