﻿/* LUNARAX - CLEAN FOUNDATION */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000821;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === TRUST & METRICS BAR === */
.trust-metrics-bar {
    padding: 10px 0 30px;
    background: transparent;
    position: relative;
}

.trust-metrics-bar .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Metrics Grid */
.metrics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
}

.metric-column {
    flex: 1;
    text-align: center;
    padding: 0 3rem;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: #2DD4BF;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-size: 1.045rem;
    font-weight: 400;
    color: #A0AEC0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .trust-metrics-bar {
        padding: 10px 0 20px;
    }
    
    .metric-column {
        padding: 0 2rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
    
    .metric-label {
        font-size: 0.99rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .trust-metrics-bar {
        padding: 10px 0 20px;
    }
    
    .metrics-grid {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
}

/* === SERVICE FOCUS BAR === */
.service-focus-bar {
    padding: 30px 0 50px;
    background: transparent;
    position: relative;
}

.focus-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.focus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.focus-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 191, 0.05);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #2DD4BF;
    transition: all 0.3s ease;
}

.focus-item:hover .focus-icon {
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(45, 212, 191, 0.15);
}

.focus-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-align: center;
}

@media (max-width: 768px) {
    .service-focus-bar {
        padding: 25px 0 40px;
    }
    
    .focus-grid {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .focus-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .focus-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .focus-label {
        font-size: 0.85rem;
        font-weight: 700;
    }
}

/* === EFFICIENCY HUB (EXECUTIVE) === */
/* === DIJITAL ÇÖZÜM PAKETLERI === */
.dijital-paketler {
    padding: 120px 0;
    background: linear-gradient(180deg, #000821 0%, #0a1230 100%);
    position: relative;
}

.dijital-paketler .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dijital-paketler .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.dijital-paketler .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.dijital-paketler .section-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

/* Paket Grid */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Paket Card */
.paket-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2DD4BF, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.paket-card:hover {
    border-color: rgba(45, 212, 191, 0.5);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

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

.paket-card:hover .paket-icon {
    filter: drop-shadow(0 0 20px rgba(45, 212, 191, 0.6));
    transform: translateY(-3px) scale(1.05);
}

.paket-header {
    margin-bottom: 1.5rem;
}

.paket-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.3));
    transition: all 0.4s ease;
}

.paket-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.paket-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 48px;
}

.paket-btn {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid rgba(45, 212, 191, 0.4);
    border-radius: 4px;
    color: #2DD4BF;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.paket-btn:hover {
    background: rgba(45, 212, 191, 0.1);
    border-color: #2DD4BF;
    color: #FFFFFF;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 8, 33, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0a1230;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(45, 212, 191, 0.3);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 212, 191, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #2DD4BF;
}

.modal-body {
    padding: 3rem 2.5rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-title-icon {
    font-size: 2.5rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-feature {
    border-left: 2px solid rgba(45, 212, 191, 0.3);
    padding-left: 1.5rem;
}

.modal-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2DD4BF;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.modal-feature-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .paket-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .dijital-paketler {
        padding: 80px 0;
        position: relative;
    }
    
    .dijital-paketler .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .dijital-paketler .container {
        padding: 0;
    }
    
    /* Mobile Horizontal Scroll */
    .paket-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding: 1rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .paket-grid::-webkit-scrollbar {
        display: none;
    }
    
    .paket-grid {
        scrollbar-width: none;
    }
    
    .paket-card {
        flex: 0 0 85%;
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: center;
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    /* Scroll indicator hint */
    .dijital-paketler::after {
        content: '← Kaydırın →';
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.85rem;
        color: rgba(45, 212, 191, 0.5);
        pointer-events: none;
        font-family: 'Inter', sans-serif;
    }
    
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-title-icon {
        font-size: 2rem;
    }
    
    .modal-features {
        gap: 1.5rem;
    }
    
    .modal-feature {
        padding-left: 1rem;
    }
    
    .modal-feature-title {
        font-size: 1rem;
    }
    
    .modal-feature-description {
        font-size: 0.9rem;
    }
}

/* === HEADER / NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 8, 33, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo span {
    display: inline-block;
    transform: scaleX(-1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2DD4BF;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2DD4BF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* === HERO SECTION === */
.hero {
    padding: 180px 0 30px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.hero-button .button-icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.hero-button-primary {
    background: #2DD4BF;
    color: #000821;
    border: 2px solid #2DD4BF;
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
}

.hero-button-primary:hover {
    background: #25bba9;
    border-color: #25bba9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 40px rgba(45, 212, 191, 0.5),
        0 0 60px rgba(45, 212, 191, 0.3),
        0 0 100px rgba(45, 212, 191, 0.15);
}

.hero-button-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(160, 174, 192, 0.5);
}

.hero-button-secondary:hover {
    background: rgba(45, 212, 191, 0.08);
    border-color: rgba(45, 212, 191, 0.7);
    color: #2DD4BF;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(45, 212, 191, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 140px 0 30px;
        min-height: auto;
    }
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* === ORBITAL SERVICE MAP === */
/* === SÜREÇ ENTEGRASYON KÖPRÜSÜ === */
.integration-bridge {
    padding: 100px 0;
    background: linear-gradient(180deg, #000821 0%, #0a1230 50%, #000821 100%);
    position: relative;
    overflow: hidden;
}

.integration-bridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.05), transparent 70%);
    pointer-events: none;
}

.integration-bridge .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.integration-bridge .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.integration-bridge .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.integration-bridge .section-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

/* Bridge Flow Container */
.bridge-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

/* Flow Node */
.flow-node {
    flex: 1;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
}

.flow-node:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-8px);
}

/* Flow Icon Wrapper with Neon Ring */
.flow-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.flow-icon {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    z-index: 2;
}

.flow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #2DD4BF;
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(45, 212, 191, 0.6),
        0 0 40px rgba(45, 212, 191, 0.4),
        inset 0 0 20px rgba(45, 212, 191, 0.2);
    animation: ringPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 
            0 0 20px rgba(45, 212, 191, 0.6),
            0 0 40px rgba(45, 212, 191, 0.4),
            inset 0 0 20px rgba(45, 212, 191, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
        box-shadow: 
            0 0 30px rgba(45, 212, 191, 0.8),
            0 0 60px rgba(45, 212, 191, 0.6),
            inset 0 0 30px rgba(45, 212, 191, 0.3);
    }
}

.flow-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.flow-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 75px;
}

.flow-detail {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-badge {
    padding: 0.5rem 1rem;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #2DD4BF;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Flow Connector */
.flow-connector {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connector-arrow {
    font-size: 3rem;
    color: #2DD4BF;
    opacity: 0.6;
    animation: arrowPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.5));
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
        filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.5));
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
        filter: drop-shadow(0 0 16px rgba(45, 212, 191, 0.8));
    }
}

/* Economic Advantage Panel */
.economic-advantage {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08) 0%, rgba(45, 212, 191, 0.02) 100%);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.economic-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #2DD4BF, transparent);
    box-shadow: 0 0 10px rgba(45, 212, 191, 0.6);
}

.advantage-icon {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.6));
    display: flex;
    align-items: center;
}

.advantage-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.advantage-text strong {
    color: #2DD4BF;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Integration Metrics */
.integration-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(45, 212, 191, 0.15);
    border-radius: 12px;
}

.metric-item {
    flex: 1;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 200;
    color: #2DD4BF;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.metric-label {
    font-size: 0.99rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

.metric-divider {
    width: 1px;
    height: 60px;
    background: rgba(45, 212, 191, 0.2);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .bridge-flow {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-connector {
        transform: rotate(90deg);
    }
    
    .economic-advantage {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .integration-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .metric-divider {
        width: 60px;
        height: 1px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .integration-bridge {
        padding: 80px 0;
    }
    
    .bridge-flow {
        padding: 0 1rem;
    }
    
    .flow-node {
        padding: 2rem 1.5rem;
    }
    
    .flow-icon-wrapper,
    .flow-icon,
    .flow-ring {
        width: 80px;
        height: 80px;
    }
    
    .flow-icon {
        font-size: 2.5rem;
    }
    
    .flow-title {
        font-size: 1.1rem;
    }
    
    .economic-advantage {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
    
    .advantage-text {
        font-size: 0.95rem;
    }
    
    .advantage-text strong {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* === 5-STEP OPERATIONAL TRANSFORMATION TIMELINE === */
.process-timeline {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, #000821 0%, #001230 100%);
}

.process-timeline .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-timeline .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.process-timeline .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Timeline Container */
.timeline-container {
    position: relative;
    padding: 4rem 0;
}

/* Horizontal Glowing Line */
.timeline-line {
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #2DD4BF 50%,
        transparent 100%);
    box-shadow: 
        0 0 10px rgba(45, 212, 191, 0.8),
        0 0 20px rgba(45, 212, 191, 0.6),
        0 0 30px rgba(45, 212, 191, 0.4);
    animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(45, 212, 191, 0.8),
            0 0 20px rgba(45, 212, 191, 0.6),
            0 0 30px rgba(45, 212, 191, 0.4);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(45, 212, 191, 1),
            0 0 30px rgba(45, 212, 191, 0.8),
            0 0 45px rgba(45, 212, 191, 0.6);
    }
}

/* Timeline Steps Container */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

/* Individual Step */
.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.timeline-step > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Wrapper with Glow Ring */
.step-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.step-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #2DD4BF;
    box-shadow: 
        0 0 20px rgba(45, 212, 191, 0.6),
        0 0 40px rgba(45, 212, 191, 0.4),
        inset 0 0 20px rgba(45, 212, 191, 0.2);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(45, 212, 191, 0.6),
            0 0 40px rgba(45, 212, 191, 0.4),
            inset 0 0 20px rgba(45, 212, 191, 0.2);
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(45, 212, 191, 0.8);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(45, 212, 191, 0.9),
            0 0 60px rgba(45, 212, 191, 0.7),
            inset 0 0 30px rgba(45, 212, 191, 0.4);
        transform: translate(-50%, -50%) scale(1.08);
        border-color: rgba(45, 212, 191, 1);
    }
}

/* Icon Circle */
.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(45, 212, 191, 0.2) 0%, 
        rgba(0, 8, 33, 0.9) 50%, 
        rgba(45, 212, 191, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 212, 191, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 15px rgba(45, 212, 191, 0.4));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(45, 212, 191, 0.6));
}

/* Step Title */
.step-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(45, 212, 191, 0.4);
}

/* Step Description */
.step-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 180px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .timeline-steps {
        gap: 1rem;
    }
    
    .timeline-step {
        max-width: 160px;
    }
    
    .timeline-step > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-icon-wrapper::before {
        width: 90px;
        height: 90px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 0.9rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}

/* Responsive - Mobile (Vertical Timeline) */
@media (max-width: 768px) {
    .process-timeline {
        padding: 80px 0;
    }
    
    .process-timeline .section-header {
        margin-bottom: 4rem;
    }
    
    .timeline-container {
        padding: 2rem 0;
    }
    
    /* Vertical Line for Mobile - Left Side */
    .timeline-line {
        top: 0;
        left: 45px;
        right: auto;
        bottom: 0;
        width: 2px;
        height: 100%;
        transform: none;
        background: linear-gradient(180deg, 
            transparent 0%,
            #2DD4BF 30%,
            #2DD4BF 70%,
            transparent 100%);
    }
    
    /* Vertical Stack - Left Icon, Right Content */
    .timeline-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 3rem;
    }
    
    .timeline-step {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
    
    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-icon-wrapper::before {
        width: 90px;
        height: 90px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    /* Content Area */
    .timeline-step > div:last-child {
        flex: 1;
        padding-top: 0.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        text-align: left;
    }
}
        font-size: 2.2rem;
    }
    
    .step-description {
        max-width: 100%;
    }
}

/* === ECOSYSTEM SOLUTION MATRIX === */
.solution-matrix {
    padding: 140px 0 220px 0;
    position: relative;
    background: linear-gradient(180deg, #001230 0%, #000821 100%);
    overflow: hidden;
}

/* Background Grid Pattern */
.solution-matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, 
            rgba(45, 212, 191, 0.03) 0px,
            transparent 1px,
            transparent 80px,
            rgba(45, 212, 191, 0.03) 81px);
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

.solution-matrix .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.solution-matrix .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.solution-matrix .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.solution-matrix .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Matrix Grid - 3x2 Layout */
.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

/* Matrix Card - Vertical Glassmorphism */
.matrix-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.matrix-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(45, 212, 191, 0.5) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.matrix-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(45, 212, 191, 0.4);
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(45, 212, 191, 0.3),
        inset 0 0 30px rgba(45, 212, 191, 0.05);
}

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

/* Card Icon */
.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 6px 20px rgba(45, 212, 191, 0.6));
    transition: all 0.4s ease;
}

.matrix-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 30px rgba(45, 212, 191, 0.9));
}

/* Card Title */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Card Description */
.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-description strong {
    color: #2DD4BF;
    font-weight: 700;
}

/* Card Button */
.card-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 50px;
    color: rgba(45, 212, 191, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.card-button:hover {
    background: rgba(45, 212, 191, 0.1);
    border-color: rgba(45, 212, 191, 0.8);
    color: #2DD4BF;
    box-shadow: 
        0 0 25px rgba(45, 212, 191, 0.4),
        0 0 50px rgba(45, 212, 191, 0.2);
    transform: translateY(-2px);
}

/* Detail Panel (Dropdown) */
.detail-panel {
    display: none;
}

/* === SERVICE OVERLAY MODAL === */
.service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 8, 33, 0.95);
    backdrop-filter: blur(10px);
}

.overlay-card {
    position: relative;
    background: linear-gradient(135deg, #0a1230 0%, #000821 100%);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 24px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    box-shadow: 
        0 0 60px rgba(45, 212, 191, 0.15),
        0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-overlay.active .overlay-card {
    transform: scale(1);
}

.overlay-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: 50%;
    color: #2DD4BF;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.overlay-close:hover {
    background: rgba(45, 212, 191, 0.2);
    border-color: rgba(45, 212, 191, 0.6);
    transform: rotate(90deg);
}

.overlay-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.overlay-title {
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.overlay-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2DD4BF;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.overlay-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.overlay-list li:last-child {
    border-bottom: none;
}

.overlay-list strong {
    color: #2DD4BF;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

/* Overlay Responsive */
@media (max-width: 768px) {
    .overlay-card {
        width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }
    
    .overlay-icon {
        font-size: 3rem;
    }
    
    .overlay-title {
        font-size: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-list li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .matrix-card {
        padding: 2.5rem 1.75rem;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .solution-matrix {
        padding: 100px 0 160px 0;
    }
    
    .solution-matrix .section-header {
        margin-bottom: 3rem;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .matrix-card {
        padding: 2rem 1.5rem;
        width: 95%;
        margin: 0 auto;
    }
    
    .card-icon {
        font-size: 2.75rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .card-button {
        padding: 0.65rem 1.75rem;
        font-size: 0.85rem;
    }
}

/* === EKİBİMİZ SECTION === */
.ekibimiz-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000821 0%, #001440 100%);
    position: relative;
}

.ekibimiz-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ekibimiz-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ekibimiz-section .section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
}

.ekibimiz-section .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Team Grid - Perfect Pyramid Layout with CSS Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    grid-template-rows: auto auto;
    justify-content: center;
    column-gap: 2rem;
    row-gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* CEO Card - Row 1, Center Column */
.team-card:nth-child(1) {
    grid-column: 2 / 3;
    grid-row: 1;
}

/* Financial Director - Row 2, Left Column */
.team-card:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2;
}

/* Legal Advisor - Row 2, Center Column */
.team-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2;
}

/* Strategic Partner - Row 2, Right Column */
.team-card:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2;
}

/* Team Card */
.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 320px;
    min-height: 340px;
    gap: 0;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 212, 191, 0.3);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(45, 212, 191, 0.2);
}

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

/* Team Avatar */
.team-avatar {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    position: relative;
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    border: 3px solid rgba(45, 212, 191, 0.3);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(45, 212, 191, 0.4),
        0 0 40px rgba(45, 212, 191, 0.2),
        inset 0 0 15px rgba(45, 212, 191, 0.15);
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
    border-color: rgba(45, 212, 191, 0.8);
    box-shadow: 
        0 0 30px rgba(45, 212, 191, 0.6),
        0 0 60px rgba(45, 212, 191, 0.3),
        inset 0 0 20px rgba(45, 212, 191, 0.2);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.2) 0%, rgba(45, 212, 191, 0.05) 100%);
    border: 3px solid rgba(45, 212, 191, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2DD4BF;
    text-shadow: 0 2px 10px rgba(45, 212, 191, 0.5);
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(45, 212, 191, 0.4),
        0 0 40px rgba(45, 212, 191, 0.2),
        inset 0 0 15px rgba(45, 212, 191, 0.15);
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.05);
    border-color: rgba(45, 212, 191, 0.6);
    box-shadow: 
        0 0 30px rgba(45, 212, 191, 0.6),
        0 0 60px rgba(45, 212, 191, 0.3),
        inset 0 0 20px rgba(45, 212, 191, 0.2);
}

/* Team Name */
.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

/* Team Title */
.team-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

/* LinkedIn Icon */
.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    margin-top: auto;
    flex-shrink: 0;
}

.team-linkedin:hover {
    background: rgba(45, 212, 191, 0.2);
    border-color: rgba(45, 212, 191, 0.8);
    color: #2DD4BF;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
}

.team-linkedin svg {
    transition: transform 0.3s ease;
}

.team-linkedin:hover svg {
    transform: scale(1.1);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .ekibimiz-section {
        padding: 80px 0;
    }
    
    .team-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    /* Reset all grid positioning on tablet */
    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }
    
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .avatar-placeholder {
        font-size: 1.75rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .ekibimiz-section {
        padding: 60px 0 80px 0;
    }
    
    .ekibimiz-section .section-header {
        margin-bottom: 3rem;
    }
    
    .team-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Reset all grid positioning on mobile */
    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .team-card {
        width: 92%;
        max-width: 380px;
        padding: 2rem 1.5rem;
        min-height: 310px;
    }
    
    .team-avatar {
        width: 90px;
        height: 90px;
    }
    
    .avatar-placeholder {
        font-size: 1.5rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-title {
        font-size: 0.95rem;
    }
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #001a42 0%, #000510 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(45, 212, 191, 0.2);
    position: relative;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #2DD4BF;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(45, 212, 191, 0.2);
    border-color: rgba(45, 212, 191, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.4);
}

/* Footer Links Columns */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: #2DD4BF;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright strong {
    color: #2DD4BF;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive Footer - Tablet */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Responsive Footer - Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 1.75rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-list li a:hover {
        transform: translateX(0);
        transform: scale(1.05);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .footer-copyright,
    .footer-tagline {
        font-size: 0.85rem;
    }
}

/* === FOOTER === */
.footer {
    background: linear-gradient(180deg, #001a42 0%, #000510 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(45, 212, 191, 0.2);
    position: relative;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #2DD4BF;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(45, 212, 191, 0.2);
    border-color: rgba(45, 212, 191, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.4);
}

/* Footer Links Columns */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: #2DD4BF;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright strong {
    color: #2DD4BF;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive Footer - Tablet */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

/* Responsive Footer - Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 1.75rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-list li a:hover {
        transform: translateX(0);
        transform: scale(1.05);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .footer-copyright,
    .footer-tagline {
        font-size: 0.85rem;
    }
}
