/* CSS Variables */
:root {
    /* Colors */
    --primary-gold: #4FC3F7;
    --primary-gold-light: #29B6F6;
    --primary-gold-dark: #0277BD;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-dark: #1a1a1a;
    --background-dark: #0a0e1a;
    --background-card: rgba(255, 255, 255, 0.05);
    --background-card-hover: rgba(255, 255, 255, 0.08);
    --border-primary: rgba(79, 195, 247, 0.3);
    --border-hover: rgba(79, 195, 247, 0.6);
    --shadow-black: rgba(0, 0, 0, 0.4);
    --shadow-gold: rgba(79, 195, 247, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.7);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4FC3F7, #29B6F6, #0277BD);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    --gradient-overlay: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(41, 182, 246, 0.1));
    --gradient-text: linear-gradient(135deg, #4FC3F7, #29B6F6, #ffffff);
    --gradient-badge: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(41, 182, 246, 0.2));
    
    /* Typography */
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 4.5rem;
    
    /* Spacing */
    --spacing-xs: 0.75rem;
    --spacing-sm: 1.25rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    --spacing-3xl: 8rem;
    --spacing-4xl: 10rem;
    
    /* Border Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-xl: 2.5rem;
    --radius-2xl: 3.5rem;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Container */
    --container-max-width: 1400px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 25%, #2d3748 50%, #1a2332 75%, #0a0e1a 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0.3;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 70%;
    right: 5%;
    animation-delay: -7s;
}

.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: fadeInOut 8s infinite ease-in-out;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; left: 80%; animation-delay: -2s; }
.particle:nth-child(3) { top: 50%; left: 10%; animation-delay: -4s; }
.particle:nth-child(4) { top: 70%; left: 90%; animation-delay: -6s; }
.particle:nth-child(5) { top: 90%; left: 30%; animation-delay: -1s; }
.particle:nth-child(6) { top: 20%; left: 70%; animation-delay: -3s; }
.particle:nth-child(7) { top: 40%; left: 50%; animation-delay: -5s; }
.particle:nth-child(8) { top: 60%; left: 20%; animation-delay: -7s; }
.particle:nth-child(9) { top: 80%; left: 60%; animation-delay: -2s; }
.particle:nth-child(10) { top: 15%; left: 40%; animation-delay: -4s; }

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.crown-container {
    position: relative;
    width: 80px;
    height: 60px;
}

.crown {
    position: relative;
    width: 100%;
    height: 100%;
}

.crown-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 0 0 30px 30px;
}

.crown-peak {
    position: absolute;
    bottom: 15px;
    width: 12px;
    height: 25px;
    background: var(--gradient-primary);
    border-radius: 6px 6px 0 0;
}

.crown-peak-1 { left: 10px; }
.crown-peak-2 { left: 25px; }
.crown-peak-3 { left: 40px; }
.crown-peak-4 { left: 55px; }
.crown-peak-5 { left: 70px; }

.crown-jewel {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    top: 5px;
}

.crown-jewel-1 { left: 15px; }
.crown-jewel-2 { left: 35px; }
.crown-jewel-3 { left: 55px; }

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.2em;
}

.logo-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: loading 3s ease-in-out infinite;
}

.loader-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.loading-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nav-brand:hover {
    transform: scale(1.05);
}

.brand-logo {
    display: flex;
    align-items: center;
}

.company-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
    transition: all var(--transition-fast);
}

.nav-brand:hover .company-logo {
    filter: brightness(1.4);
}

.nav-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-divider {
    width: 1px;
    height: 30px;
    background: var(--border-primary);
}

.nav-contact-info,
.nav-contact-info:hover {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.nav-contact-info:hover {
    color: var(--primary-gold);
}

.nav-contact-info i,
.nav-contact-info span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 195, 247, 0.08) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-container {
    max-width: var(--container-max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gradient-badge);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px);
    width: fit-content;
}

.badge-text {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-line {
    width: 20px;
    height: 1px;
    background: var(--primary-gold);
    border-radius: 0.5px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.title-main {
    font-family: var(--font-secondary);
    font-size: var(--font-size-5xl);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.2em;
    line-height: 1.1;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.title-subtitle {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--shadow-gold);
}

.hero-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px var(--shadow-gold);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 400;
    max-width: 500px;
}

.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.metric-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--background-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.metric-card:hover {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateX(10px);
    box-shadow: 0 15px 30px var(--shadow-heavy);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    box-shadow: 0 8px 16px var(--shadow-gold);
    transition: all var(--transition-normal);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px var(--shadow-gold);
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-number {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
    line-height: 1;
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.action-button {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    overflow: hidden;
    position: relative;
}

.action-button.primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.action-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--shadow-gold);
}

.action-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-primary);
    backdrop-filter: blur(20px);
}

.action-button.secondary:hover {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.action-button i {
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.action-button:hover i {
    transform: translateX(3px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-elements {
    position: relative;
    width: 400px;
    height: 400px;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.element-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

.element-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}



/* Companies Section */
.companies-section {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: var(--background-dark);
    position: relative;
}

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 20px var(--shadow-gold);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
    opacity: 0.9;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: 0 auto;
    width: fit-content;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--shadow-gold);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.company-card {
    background: var(--background-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.company-card:hover {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-heavy), 0 0 30px var(--shadow-gold);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    box-shadow: 0 8px 20px var(--shadow-gold);
    transition: all var(--transition-normal);
}

.company-card:hover .company-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px var(--shadow-gold);
}

.company-name {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.card-body {
    margin-bottom: var(--spacing-lg);
}

.company-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.company-stats {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--background-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.stat-item i {
    color: var(--primary-gold);
    font-size: var(--font-size-sm);
}

.stat-item span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.company-card:hover .stat-item {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.card-footer {
    display: flex;
    justify-content: center;
}

.card-action {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: transparent;
    border: 2px solid var(--border-primary);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
}

.card-action:hover {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-gold);
}

.card-action i {
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.card-action:hover i {
    transform: translateX(3px);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 195, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  border-radius: 16px;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(79, 195, 247, 0.3);
  z-index: 100;
}

.company-card:hover .card-overlay {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(79, 195, 247, 0.9);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
  transform: translateY(8px) scale(0.95);
  transition: all 0.4s ease;
  z-index: 101;
  position: relative;
}

.company-card:hover .overlay-content {
  transform: translateY(0) scale(1);
}

.overlay-content i {
  font-size: 0.9rem;
  transition: transform 0.4s ease;
}

.company-card:hover .overlay-content i {
  transform: translateX(2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
    padding: var(--spacing-3xl) var(--spacing-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.about-intro {
    margin-bottom: var(--spacing-xl);
}

.about-intro h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 20px var(--shadow-gold);
}

.about-intro p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.feature-item {
    padding: var(--spacing-lg);
    background: var(--background-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px var(--shadow-heavy);
}

.feature-item:hover {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateX(10px);
    box-shadow: 0 15px 40px var(--shadow-heavy), 0 0 20px var(--shadow-gold);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-header h4 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.feature-line {
    flex: 1;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    opacity: 0.9;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.visual-element {
    position: relative;
    width: 100%;
    height: 100%;
}

.element-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--border-primary);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.element-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--shadow-gold);
    animation: pulse 2s ease-in-out infinite;
}

.dot:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(26, 35, 50, 0.98) 100%);
    padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-lg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-primary);
    position: relative;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all var(--transition-fast);
    object-fit: contain;
    max-width: 200px;
}

.footer-brand:hover .footer-logo {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.08);
}

.footer-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 400;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    padding: var(--spacing-xs) 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
    text-shadow: 0 0 5px var(--shadow-gold);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: var(--font-size-base);
    width: 20px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--background-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 15px var(--shadow-heavy);
}

.social-link:hover {
    background: var(--background-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-gold);
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-primary);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 400;
}

.legal-links {
    display: flex;
    gap: var(--spacing-lg);
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.legal-links a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 5px var(--shadow-gold);
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 50%, #0a0e1a 100%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem var(--spacing-sm);
    }
    
    .nav-brand {
        transform: scale(0.9);
    }
    
    .company-logo {
        height: 35px;
    }
    
    .nav-info {
        gap: var(--spacing-sm);
    }
    
    .nav-contact-info,
    .nav-contact-info span {
        font-size: 0.75rem;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .title-main {
        font-size: var(--font-size-4xl);
        letter-spacing: 0.1em;
    }
    
    .title-subtitle {
        font-size: var(--font-size-lg);
        letter-spacing: 0.2em;
    }
    
    .hero-tagline {
        font-size: var(--font-size-xl);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        max-width: 100%;
    }
    
    .hero-metrics {
        gap: var(--spacing-sm);
    }
    
    .metric-card {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .metric-number {
        font-size: var(--font-size-lg);
    }
    
    .metric-label {
        font-size: var(--font-size-xs);
    }
    
    .hero-actions {
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .action-button {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .hero-visual {
        display: none;
    }
    
    /* Companies Section */
    .companies-section {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .company-card {
        padding: var(--spacing-lg);
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .company-name {
        font-size: var(--font-size-lg);
    }
    
    .company-description {
        font-size: var(--font-size-sm);
    }
    
    .stat-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .stat-item span {
        font-size: var(--font-size-xs);
    }
    
    /* About Section */
    .about-section {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-intro h3 {
        font-size: var(--font-size-2xl);
    }
    
    .about-intro p {
        font-size: var(--font-size-base);
    }
    
    .feature-item {
        padding: var(--spacing-md);
    }
    
    .feature-header h4 {
        font-size: var(--font-size-lg);
    }
    
    .feature-item p {
        font-size: var(--font-size-sm);
    }
    
    .about-visual {
        display: none;
    }
    
    /* Footer */
    .main-footer {
        padding: var(--spacing-2xl) var(--spacing-sm) var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-section h4 {
        font-size: var(--font-size-base);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .social-links {
        gap: var(--spacing-sm);
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem var(--spacing-xs);
    }
    
    .nav-brand {
        transform: scale(0.8);
    }
    
    .company-logo {
        height: 30px;
    }
    
    .nav-info {
        display: none;
    }
    
    /* Hero Section */
    .hero-section {
        padding: var(--spacing-lg) var(--spacing-xs);
        min-height: 80vh;
    }
    
    .title-main {
        font-size: var(--font-size-3xl);
        letter-spacing: 0.05em;
    }
    
    .title-subtitle {
        font-size: var(--font-size-base);
        letter-spacing: 0.1em;
    }
    
    .hero-tagline {
        font-size: var(--font-size-lg);
    }
    
    .hero-description {
        font-size: var(--font-size-sm);
    }
    
    .metric-card {
        padding: var(--spacing-xs);
        gap: var(--spacing-xs);
    }
    
    .metric-icon {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-sm);
    }
    
    .metric-number {
        font-size: var(--font-size-base);
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .action-button {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-sm);
        font-size: var(--font-size-sm);
    }
    
    /* Companies Section */
    .companies-section {
        padding: var(--spacing-xl) var(--spacing-xs);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .company-card {
        padding: var(--spacing-md);
    }
    
    .company-logo {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-base);
    }
    
    .company-name {
        font-size: var(--font-size-base);
    }
    
    .company-description {
        font-size: 0.875rem;
    }
    
    .company-stats {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .stat-item {
        padding: var(--spacing-xs);
        font-size: 0.75rem;
    }
    
    /* About Section */
    .about-section {
        padding: var(--spacing-xl) var(--spacing-xs);
    }
    
    .about-intro h3 {
        font-size: var(--font-size-xl);
    }
    
    .about-intro p {
        font-size: var(--font-size-sm);
    }
    
    .feature-item {
        padding: var(--spacing-sm);
    }
    
    .feature-header h4 {
        font-size: var(--font-size-base);
    }
    
    .feature-item p {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .main-footer {
        padding: var(--spacing-xl) var(--spacing-xs) var(--spacing-sm);
    }
    
    .footer-logo {
        height: 60px;
        max-width: 150px;
    }
    
    .footer-description {
        font-size: var(--font-size-sm);
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
    
    .legal-links a {
        font-size: 0.75rem;
    }
}

/* Modern Bootstrap Carousel Styles */
.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-caption {
    bottom: 20%;
    z-index: 10;
}

.carousel-caption h1 {
    font-family: var(--font-secondary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(79, 195, 247, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(79, 195, 247, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

/* Modern Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(79, 195, 247, 0.4);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

/* Modern Buttons */
.btn-modern {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-modern::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.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-modern-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Modern Section Headers */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header-modern h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.section-header-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    border-radius: 2px;
}

/* Modern Stats */
.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(79, 195, 247, 0.05));
    border: 2px solid rgba(79, 195, 247, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(var(--primary-blue), var(--primary-gold), var(--primary-blue));
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::before {
    opacity: 0.3;
}

.stat-circle:hover {
    transform: scale(1.1);
    border-color: var(--primary-blue);
}

/* Featurette Modern */
.featurette-modern {
    padding: 5rem 0;
    position: relative;
}

.featurette-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.03), rgba(79, 195, 247, 0.01));
    border-radius: 30px;
    border: 1px solid rgba(79, 195, 247, 0.1);
}

.featurette-image-modern {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(79, 195, 247, 0.05));
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featurette-image-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1), transparent);
    animation: pulse 2s ease-in-out infinite;
}

.featurette-image-modern:hover {
    transform: scale(1.02);
    border-color: rgba(79, 195, 247, 0.4);
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes ripple {
    to {
        transform: scale(5);
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0%, 100% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

/* Legal Pages Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    padding: 3.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 195, 247, 0.15);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4FC3F7, #29B6F6, #0288D1);
    border-radius: 24px 24px 0 0;
}

.legal-content::after {
    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="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(79,195,247,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    opacity: 0.5;
}

.legal-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.last-updated {
    text-align: center;
    color: #4FC3F7;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    font-weight: 600;
    background: rgba(79, 195, 247, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.legal-content section {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(79, 195, 247, 0.08);
    transition: all 0.3s ease;
}

.legal-content section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(79, 195, 247, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #4FC3F7;
    margin-bottom: 1.8rem;
    text-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
    position: relative;
    padding-left: 1rem;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, #4FC3F7, #29B6F6);
    border-radius: 2px;
}

.legal-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2.5rem 0 1.2rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    position: relative;
}

.legal-content p {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: justify;
}

.legal-content ul {
    margin: 1.8rem 0;
    padding-left: 2.5rem;
    list-style: none;
}

.legal-content li {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.legal-content li::before {
    content: '•';
    color: #4FC3F7;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.legal-content strong {
    color: #4FC3F7;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(79, 195, 247, 0.3);
}

.legal-content a {
    color: #4FC3F7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.legal-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4FC3F7, #29B6F6);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.legal-content a:hover {
    color: #29B6F6;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.legal-content a:hover::after {
    width: 100%;
}

/* Footer Logo Fix */
.footer-company-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.footer-company-logo:hover {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.05);
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2.5rem;
        margin: 1.5rem 0;
        border-radius: 20px;
    }
    
    .legal-content h1 {
        font-size: 2.8rem;
    }
    
    .legal-content h2 {
        font-size: 1.7rem;
    }
    
    .legal-content h3 {
        font-size: 1.4rem;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 1rem;
    }
    
    .legal-content section {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-company-logo {
        height: 50px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .legal-content {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .legal-content h1 {
        font-size: 2.4rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
    
    .legal-content section {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .footer-company-logo {
        height: 45px;
        max-width: 130px;
    }
}

/* Additional Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Yeni Modern Tasarım CSS */

/* Minimalist Loading */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.minimal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(79, 195, 247, 0.3);
    border-top: 3px solid #4FC3F7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4FC3F7;
    letter-spacing: 0.5em;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Geometric Background */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 50%, #0a0e1a 100%);
    overflow: hidden;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-triangle {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(79, 195, 247, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-circle {
    position: absolute;
    top: 60%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-square {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: rgba(79, 195, 247, 0.1);
    transform: rotate(45deg);
    animation: float 7s ease-in-out infinite;
}

.shape-hexagon {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 70px;
    height: 40px;
    background: rgba(79, 195, 247, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 9s ease-in-out infinite reverse;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 195, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 195, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 50px;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4FC3F7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4FC3F7;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #4FC3F7;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #29B6F6;
    transform: scale(1.1);
}

/* Main Wrapper */
.main-wrapper {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

/* Hero Split Section */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    align-items: center;
    padding: 0 5%;
    gap: 4rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    width: fit-content;
}

.hero-badge span {
    color: #4FC3F7;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.2em;
    line-height: 1;
}

.title-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #4FC3F7;
    letter-spacing: 0.3em;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4FC3F7;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(79, 195, 247, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4FC3F7;
    color: #ffffff;
}

.btn-primary:hover {
    background: #29B6F6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 195, 247, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(79, 195, 247, 0.3);
}

.btn-secondary:hover {
    border-color: #4FC3F7;
    background: rgba(79, 195, 247, 0.1);
}

/* Hero Right Visual */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #4FC3F7;
}

.floating-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: -4s;
}

.floating-card:hover {
    transform: scale(1.1);
    background: rgba(79, 195, 247, 0.2);
}

/* About Cards Section */
.about-cards {
    padding: 8rem 5%;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #4FC3F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Companies Modern Section */
.companies-modern {
    padding: 8rem 5%;
}

.companies-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.company-modern-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.company-modern-card:hover {
    transform: translateY(-15px);
    border-color: #4FC3F7;
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-modern-card:hover .card-bg {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.company-icon {
    width: 60px;
    height: 60px;
    background: #4FC3F7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.company-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.company-info p {
    color: #4FC3F7;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-body {
    position: relative;
    z-index: 1;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4FC3F7;
}

.stat-label {
    font-size: 0.8rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.company-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-footer {
    position: relative;
    z-index: 1;
}

.company-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4FC3F7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #29B6F6;
    transform: translateX(5px);
}

/* Contact Minimal Section */
.contact-minimal {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #4FC3F7;
    font-size: 1.2rem;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    color: #4FC3F7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #4FC3F7;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Minimal Footer */
.minimal-footer {
    background: rgba(10, 14, 26, 0.95);
    padding: 3rem 5%;
    border-top: 1px solid rgba(79, 195, 247, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4FC3F7;
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        top: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .nav-content {
        gap: 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .visual-container {
        width: 300px;
        height: 300px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .companies-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .minimal-footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .footer-logo-img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        top: 0.5rem;
        padding: 0.6rem 1rem;
    }
    
    .nav-logo .logo-img {
        height: 30px;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .visual-container {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
}

/* Kurumsal ve Profesyonel CSS */

/* Professional Loading */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.professional-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo .loader-img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #4FC3F7;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Professional Background */
.professional-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 50%, #0a0e1a 100%);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(79, 195, 247, 0.02);
}

.subtle-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 195, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 195, 247, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.5;
}

/* Professional Navigation */
.professional-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .nav-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #4FC3F7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4FC3F7;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4FC3F7;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-contact .contact-link:hover {
    color: #29B6F6;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    width: fit-content;
}

.hero-badge span {
    color: #4FC3F7;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.title-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #4FC3F7;
    letter-spacing: 0.2em;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #4FC3F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #cccccc;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4FC3F7;
    color: #ffffff;
    border: 2px solid #4FC3F7;
}

.btn-primary:hover {
    background: #29B6F6;
    border-color: #29B6F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 195, 247, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(79, 195, 247, 0.3);
}

.btn-secondary:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 300px;
}

.company-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.company-pill:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: scale(1.05);
}

.company-pill i {
    font-size: 1.5rem;
    color: #4FC3F7;
}

.company-pill span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.pill-1 {
    top: 0;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}

.pill-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float2 6s ease-in-out infinite;
    animation-delay: 2s;
}

.pill-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #4FC3F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.about-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* Companies Section */
.companies-section {
    padding: 6rem 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.company-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.company-card:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: #4FC3F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.company-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-tagline {
    color: #4FC3F7;
    font-size: 0.9rem;
    font-weight: 500;
}

.company-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.company-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4FC3F7;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #cccccc;
    font-weight: 500;
    margin-top: 0.25rem;
}

.company-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4FC3F7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #29B6F6;
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #4FC3F7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #cccccc;
    font-size: 0.95rem;
}

.contact-social h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4FC3F7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #4FC3F7;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Professional Footer */
.professional-footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    color: #4FC3F7;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4FC3F7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #888888;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #4FC3F7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .visual-container {
        width: 300px;
        height: 250px;
    }
    
    .company-pill {
        padding: 1rem 1.5rem;
    }
    
    .company-pill i {
        font-size: 1.2rem;
    }
    
    .company-pill span {
        font-size: 0.9rem;
    }
    
    .about-grid,
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem;
    }
    
    .nav-brand .nav-logo {
        height: 35px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .visual-container {
        width: 250px;
        height: 200px;
    }
    
    .company-pill {
        padding: 0.8rem 1.2rem;
    }
    
    .company-pill i {
        font-size: 1rem;
    }
    
    .company-pill span {
        font-size: 0.8rem;
    }
    
    .company-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Fresh ve Kurumsal CSS */

/* Professional Loading */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.professional-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo .loader-img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #4FC3F7;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Clean Background */
.clean-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 50%, #0a1929 100%);
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.05) 0%, rgba(79, 195, 247, 0.02) 100%);
}

.subtle-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 195, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 195, 247, 0.03) 1px, transparent 1px);
    background-size: 200px 200px;
    opacity: 0.2;
}

/* Professional Navigation */
.professional-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 195, 247, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .nav-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #4FC3F7;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4FC3F7;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-contact .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4FC3F7;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-contact .contact-link:hover {
    color: #29B6F6;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(79, 195, 247, 0.1);
    border: 1px solid rgba(79, 195, 247, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    width: fit-content;
}

.hero-badge span {
    color: #4FC3F7;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.title-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #4FC3F7;
    letter-spacing: 0.2em;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #4FC3F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #cccccc;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4FC3F7;
    color: #ffffff;
    border: 2px solid #4FC3F7;
}

.btn-primary:hover {
    background: #29B6F6;
    border-color: #29B6F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 195, 247, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(79, 195, 247, 0.3);
}

.btn-secondary:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 400px;
    height: 300px;
}

.company-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.company-pill:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: scale(1.05);
}

.company-pill i {
    font-size: 1.5rem;
    color: #4FC3F7;
}

.company-pill span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.pill-1 {
    top: 0;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}

.pill-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float2 6s ease-in-out infinite;
    animation-delay: 2s;
}

.pill-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 6s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(-10px); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #4FC3F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin: 0 auto 1.5rem;
}

.about-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

/* Companies Section */
.companies-section {
    padding: 6rem 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.company-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.company-card:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: #4FC3F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.company-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-tagline {
    color: #4FC3F7;
    font-size: 0.9rem;
    font-weight: 500;
}

.company-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.company-metrics {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4FC3F7;
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #cccccc;
    font-weight: 500;
    margin-top: 0.25rem;
}

.company-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4FC3F7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #29B6F6;
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(79, 195, 247, 0.1);
    border-color: #4FC3F7;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #4FC3F7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.contact-details h4 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #cccccc;
    font-size: 0.95rem;
}

.contact-social h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4FC3F7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #4FC3F7;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Professional Footer */
.professional-footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(1.2);
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    color: #4FC3F7;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4FC3F7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 195, 247, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #888888;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #4FC3F7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .visual-container {
        width: 300px;
        height: 250px;
    }
    
    .company-pill {
        padding: 1rem 1.5rem;
    }
    
    .company-pill i {
        font-size: 1.2rem;
    }
    
    .company-pill span {
        font-size: 0.9rem;
    }
    
    .about-grid,
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem;
    }
    
    .nav-brand .nav-logo {
        height: 35px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .visual-container {
        width: 250px;
        height: 200px;
    }
    
    .company-pill {
        padding: 0.8rem 1.2rem;
    }
    
    .company-pill i {
        font-size: 1rem;
    }
    
    .company-pill span {
        font-size: 0.8rem;
    }
    
    .company-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
