/* Scarlet - Space Technology Website Styles */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden; /* Yatay kaydırma çubuğunu engelle */
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 0; /* Padding tamamen kaldırıldı */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 60px; /* Yükseklik azaltıldı */
}

.nav-brand {
    position: fixed;
    left: 20px;
    z-index: 1000;
    top: 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

/* Logo text removed */

.nav-menu {
    display: flex !important;
    list-style: none;
    align-items: center;
    gap: 2rem;
    padding: 0;
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000;
    width: auto;
    margin: 0 auto;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #4ecdc4;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(78, 205, 196, 0.1);
    border-left-color: #4ecdc4;
    color: #4ecdc4;
}

/* Language Switch */
.language-switch {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1002;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: #4ecdc4;
    border-color: #4ecdc4;
    color: #000;
}

/* Mobil menü kaldırıldı */

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: 30px; /* 30 piksel aşağı */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #60a5fa;
    color: #fff;
}

.btn-primary:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #4ecdc4;
}

.btn-outline:hover {
    background: #4ecdc4;
    color: #000;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #fff;
    color: #333;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 2px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 2px; /* Minimal radius as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Technology Cards Section */
.technology-cards {
    padding: 1rem 0;
    background: #0a0a0a;
}

/* Main 4 Cards */
.cards-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px; /* Minimum spacing */
    margin-bottom: 4px; /* Minimum spacing */
}

.tech-card-main {
    background: #072c42;
    border-radius: 8px;
    padding: 0.5rem 0.8rem 0.25rem 0.8rem; /* Minimal padding */
    text-align: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 80px; /* Daha düşük */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Ortala */
    gap: 0.3rem; /* Çok minimal gap */
}

.tech-card-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.15); /* Material UI elevation level 8 */
}

.card-icon {
    display: none !important; /* İkonlar tamamen gizlendi */
}

.card-icon:hover {
    background: #3b82f6; /* Hover için koyu mavi */
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

.card-icon .material-icons {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    line-height: 1; /* Perfect alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.1rem;
    margin: 0 0 0.1rem 0; /* Minimal margin */
    color: #ff6b35 !important; /* Turuncu renk */
    font-weight: 600; /* Daha az kalın */
    text-shadow: none !important; /* Glow efekti kaldırıldı */
    letter-spacing: 0.5px;
    filter: none !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-subtitle {
    color: #4ecdc4;
    font-size: 0.75rem; /* Smaller subtitle */
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem; /* Daha az margin */
}

.card-content p {
    color: #ffffff !important;
    font-size: 0.85rem; /* Biraz küçült */
    line-height: 1.1; /* Daha sıkışık */
    margin: 0 !important; /* Kesinlikle margin yok */
    font-weight: normal; /* Bold kaldırıldı */
    text-shadow: none !important;
    filter: none !important;
    opacity: 1 !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mission Sections */
.mission-sections {
    padding: 1rem 0; /* Reduced padding */
    background: #0a0a0a;
}

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Minimum spacing */
}

.mission-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #072c42;
    border-radius: 2px; /* Minimal radius as requested */
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Material UI elevation */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(78, 205, 196, 0.15); /* Material UI elevation level 12 */
}

.mission-image {
    flex: 1;
    overflow: hidden;
    padding: 8px; /* Add padding to prevent images from touching card borders */
}

.mission-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-image img {
    transform: scale(1.05);
}

.mission-content {
    flex: 1;
    padding: 3rem;
    color: #fff;
}

.mission-label {
    color: #4ecdc4;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.mission-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.mission-content .btn {
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Old styles for backwards compatibility */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.tech-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.card-link:hover {
    border-bottom-color: #4ecdc4;
}

/* Hero Video Section */
/* Hero Slider - Tam ekran yayılacak */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0; /* Boşluk tamamen kaldırıldı */
    padding: 0;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero content sliderin üzerine */
.hero-slider .container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slider .hero-content {
    color: white;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Tam yükseklik */
}

.hero-slider .hero-title {
    font-size: 3.2rem; /* %20 küçültüldü (4rem'den 3.2rem'e) */
    margin-bottom: 2rem;
}

.hero-slider .btn {
    background: rgba(0, 0, 0, 0.5) !important; /* Daha transparent */
    color: white !important;
    font-size: 0.9rem !important; /* Daha küçük yazı */
    padding: 0.8rem 1.5rem !important;
    font-weight: normal !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.slider-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
    color: #fff;
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 15;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 2px; /* Minimal radius as requested */
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    background: #4ecdc4;
    width: 24px; /* Material UI active indicator */
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.4);
}



/* About Page Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: #0a0a0a;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* İki sütun - kartlar yan yana */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mission-vision-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.mv-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mv-icon {
    width: 56px;
    height: 56px;
    background: #60a5fa;
    border-radius: 8px; /* Updated to 8px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.mv-icon .material-icons {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.mv-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: center;
}

.mv-card-content {
    text-align: center;
}

.mv-card-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

/* Core Values Section */
.core-values-section {
    padding: 4rem 0;
    background: #072c42;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütunlu düzen */
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px; /* Updated to 8px */
    padding: 2rem;
    text-align: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(96, 165, 250, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: #60a5fa;
    border-radius: 8px; /* Updated to 8px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #3b82f6;
    transform: scale(1.1);
}

.value-icon .material-icons {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b35; /* Turuncu renk */
}

/* Mobilde kart başlıklarını küçült */
@media (max-width: 768px) {
    .value-card h4 {
        font-size: 0.9rem; /* Footer metin boyutuna yakın */
    }
    
    .legal-item h4 {
        font-size: 0.85rem; /* Footer alt metin boyutuna yakın */
    }
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobilde metinleri footer boyutuna getir */
@media (max-width: 768px) {
    .value-card p,
    .legal-item p,
    .mission-vision-card p,
    .company-description p {
        font-size: 0.8rem; /* Footer metin boyutuna yakın */
        line-height: 1.4;
    }
    
    .company-description {
        padding: 1.5rem;
    }
    
    /* Legal cards text size to match footer */
    .legal-item p {
        font-size: 0.75rem; /* Footer alt metin boyutuna eşit */
        line-height: 1.3;
    }
    
    .legal-item h4 {
        font-size: 0.85rem; /* Footer alt metin boyutuna yakın */
        color: #ff6b35; /* Turuncu renk */
    }
}

/* Company Info Section */
.company-info-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: #072c42;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #60a5fa;
    border-radius: 8px; /* Updated to 8px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.stat-icon .material-icons {
    font-size: 24px;
    color: #fff;
}

.stat-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.company-description {
    background: #072c42;
    border-radius: 2px; /* Minimal radius as requested */
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-description p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Company Legal Section */
.company-legal-section {
    padding: 4rem 0;
    background: #072c42;
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Center the third card when it's alone in the second row - ONLY for about page legal info */
.about-legal-section .legal-info-grid .legal-item:nth-child(3) {
    grid-column: 1 / 3;
    justify-self: center;
    width: calc(50% - 0.75rem);
}

/* News page media contact - 2 columns */
.news-media-section .legal-info-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Course registration - 2 columns */
.course-registration-section .legal-info-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Career application process - 2 columns */
.career-application-section .legal-info-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Partners opportunities - 3 columns (6 cards) */
.partners-opportunities-section .legal-info-grid {
    grid-template-columns: repeat(3, 1fr);
}

.legal-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px; /* Updated to 8px */
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.legal-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35; /* Turuncu renk */
    margin-bottom: 0.5rem;
}

.legal-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr !important; /* Mobilde alt alta */
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 1.5rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr !important; /* Mobilde tek sütun */
        gap: 1rem;
    }
    
    .management-grid {
        grid-template-columns: 1fr !important; /* Mobilde alt alta */
        gap: 1.5rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 1.2rem; /* Footer başlık boyutuna yakın */
        color: #ff6b35; /* Turuncu renk */
    }
    
    .section-header h2 {
        font-size: 1rem; /* Footer metin boyutuna yakın */
        color: #ff6b35; /* Turuncu renk */
    }
}

@media (max-width: 400px) {
    .mission-vision-grid {
        grid-template-columns: 1fr !important; /* Çok küçük mobilde tek sütun */
        gap: 1rem;
    }
    
    .company-stats {
        grid-template-columns: 1fr !important; /* Çok küçük mobilde tek sütun */
        gap: 1rem;
    }
    
    .page-header h1 {
        font-size: 1rem; /* Footer metin boyutuna eşit */
        color: #ff6b35; /* Turuncu renk */
    }
    
    .section-header h2 {
        font-size: 0.9rem; /* Footer alt metin boyutuna yakın */
        color: #ff6b35; /* Turuncu renk */
    }
    
    .mission-vision-card,
    .value-card,
    .stat-item {
        padding: 1.5rem;
    }
    
    .mv-card-header,
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .mv-icon,
    .stat-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left; /* Tüm içerikler sola yaslı */
}

.footer-section {
    text-align: left !important; /* Tüm footer bölümleri kesinlikle sola yaslı */
}

.footer-section h4 {
    text-align: left !important; /* Footer başlıkları kesinlikle sola yaslı */
}

.footer-section ul {
    text-align: left !important; /* Footer listeleri kesinlikle sola yaslı */
}

.footer-section p {
    text-align: left !important; /* Footer paragrafları kesinlikle sola yaslı */
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #4ecdc4;
    font-size: 0.95rem; /* Footer başlıkları küçültüldü */
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.85rem; /* Footer metinleri küçültüldü */
}

.footer-section ul {
    list-style: none;
    text-align: left !important; /* Liste sola yaslı */
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    text-align: left !important; /* Liste öğeleri sola yaslı */
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem; /* Footer linkleri küçültüldü */
    text-align: left !important; /* Linkler sola yaslı */
    display: block; /* Block yaparak tam sola yaslanmayı sağla */
}

.footer-section ul li a:hover {
    color: #4ecdc4;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Twitter/X */
.social-twitter {
    background: #000000 !important;
}

/* LinkedIn */
.social-linkedin {
    background: #0077b5 !important;
}

/* Instagram */
.social-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
}

/* Email */
.social-email {
    background: #ff6b35 !important; /* Turuncu renk */
}

.social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #4ecdc4;
    width: 16px;
}

.whatsapp-link {
    color: #25d366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #128c7e;
    text-decoration: underline;
}

.contact-form-link {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-form-link:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

.footer-bottom p {
    font-size: 0.75rem; /* Telif hakkı daha küçük */
}

/* Page Content Styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.5"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.4"/></svg>') repeat;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 4rem 0;
    background: #fff;
    min-height: 60vh;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.content-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

/* News Page Styles */
.featured-news {
    margin-bottom: 3rem;
}

.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff6b6b;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .news-image {
    height: 200px;
}

.news-card .news-content {
    padding: 1.5rem;
}

.news-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.read-more {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #4ecdc4;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 2px;
    text-align: center;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Partners Page Styles */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.strategic-partners {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.partner-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card.featured {
    border-top: 4px solid #4ecdc4;
}

.partner-logo {
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
}

.partner-type {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 2px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.partnership-cta {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 2px;
    text-align: center;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partnership-type {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Career Page Styles */
.why-scarlet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 2px;
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.reason-icon i {
    font-size: 2rem;
    color: #fff;
}

.job-listings {
    display: grid;
    gap: 2rem;
}

.job-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 2px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #4ecdc4;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.1);
}

.job-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-header h3 {
    flex: 1;
    font-size: 1.3rem;
    color: #333;
}

.job-badges {
    display: flex;
    gap: 0.5rem;
}

.job-type, .job-level {
    padding: 0.3rem 0.8rem;
    background: #4ecdc4;
    color: #fff;
    border-radius: 1px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-level {
    background: #ff6b6b;
}

.job-location {
    color: #666;
    margin-bottom: 1rem;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.job-apply {
    margin-top: 1rem;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.internship-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-card ul {
    list-style: none;
    padding-left: 0;
}

.program-card li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.program-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.benefits-grid .benefit-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-card .benefit-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.hr-contact {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 2px;
    text-align: center;
}

.hr-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hr-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.hr-item i {
    color: #4ecdc4;
}

/* Course Page Styles */
.course-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    font-size: 2rem;
    color: #fff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card.featured {
    border-top: 4px solid #4ecdc4;
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-badge.new {
    background: #4ecdc4;
}

.course-content {
    padding: 2rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.course-features ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.course-features li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.course-price {
    margin: 1.5rem 0;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.course-enroll {
    width: 100%;
    text-align: center;
}

.course-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
    border-radius: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4ecdc4;
    border-color: #4ecdc4;
    color: #fff;
}

.all-courses-grid {
    display: grid;
    gap: 1.5rem;
}

.course-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.course-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.course-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.course-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.corporate-training {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.corporate-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature i {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.training-image img {
    width: 100%;
    border-radius: 2px;
}

.faq-section {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.course-contact {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 2px;
}

.course-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 1px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4ecdc4;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.method-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 1px;
    position: relative;
    flex-shrink: 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.department-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dept-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.dept-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.map-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.map-container {
    border-radius: 2px;
    overflow: hidden;
}

.transport-options {
    display: grid;
    gap: 1rem;
}

.transport-option {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 1px;
}

.transport-option i {
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.office-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Mobilde tek sütun yap ve font boyutlarını küçült */
@media (max-width: 768px) {
    .office-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hours-card,
    .visit-card {
        padding: 1rem;
    }
    
    .hours-card h4,
    .visit-card h4 {
        font-size: 0.9rem; /* Footer metin boyutuna yakın */
        color: #ff6b35; /* Turuncu renk */
    }
    
    .hours-card p,
    .visit-card p {
        font-size: 0.8rem; /* Footer metin boyutuna eşit */
        line-height: 1.4;
    }
    
    .hours-item {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
}

.hours-card,
.visit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.visit-features {
    margin: 1.5rem 0;
}

.visit-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.visit-feature i {
    color: #4ecdc4;
}

.emergency-contact {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 2rem;
    border-radius: 2px;
    text-align: center;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.emergency-item i {
    font-size: 2rem;
    color: #e17055;
}

/* Technology Pages Additional Styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-item .feature-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.research-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.research-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.facilities {
    display: grid;
    gap: 2rem;
}

.facility {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.facility h3 {
    color: #333;
    margin-bottom: 1rem;
}

.current-projects {
    display: grid;
    gap: 2rem;
}

.project {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4ecdc4;
}

.project h3 {
    color: #333;
    margin-bottom: 1rem;
}

.training-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.module-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
}

.module-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.module-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.module-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.mission-types {
    display: grid;
    gap: 2rem;
}

.mission-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #ff6b6b;
}

.mission-type h3 {
    color: #333;
    margin-bottom: 1rem;
}

.components-list {
    display: grid;
    gap: 2rem;
}

.component-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.component-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.test-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.phase {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #4ecdc4;
}

.phase h3 {
    color: #333;
    margin-bottom: 1rem;
}

.vehicle-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vehicle-icon i {
    color: #fff;
    font-size: 2rem;
}

.vehicle-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.spec-category h3 {
    color: #333;
    margin-bottom: 1rem;
}

.spec-category ul {
    list-style: none;
    padding-left: 0;
}

.spec-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.spec-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.ai-features {
    display: grid;
    gap: 2rem;
}

.ai-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff6b6b;
}

.ai-feature h3 {
    color: #333;
    margin-bottom: 1rem;
}

.missions {
    display: grid;
    gap: 2rem;
}

.mission {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.mission h3 {
    color: #333;
    margin-bottom: 1rem;
}

.nano-applications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.application-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
}

.app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.app-icon i {
    color: #fff;
    font-size: 1.8rem;
}

.application-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.nano-systems {
    display: grid;
    gap: 2rem;
}

.system {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.system h3 {
    color: #333;
    margin-bottom: 1rem;
}

.manufacturing-tech {
    display: grid;
    gap: 2rem;
}

.tech-item {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4ecdc4;
}

.tech-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.rd-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b6b;
}

.project-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.research-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.target-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.target-category h3 {
    color: #333;
    margin-bottom: 1rem;
}

.target-category ul {
    list-style: none;
    padding-left: 0;
}

.target-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.target-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.signal-processing {
    display: grid;
    gap: 2rem;
}

.processing-method {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4ecdc4;
}

.processing-method h3 {
    color: #333;
    margin-bottom: 1rem;
}

.achievements {
    display: grid;
    gap: 2rem;
}

.achievement {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #ff6b6b;
}

.achievement h3 {
    color: #333;
    margin-bottom: 1rem;
}

.comm-technologies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    color: #fff;
    font-size: 2rem;
}

.tech-category h3 {
    margin-bottom: 1rem;
    color: #333;
}

.satellite-platforms {
    display: grid;
    gap: 3rem;
}

.platform {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.platform h3 {
    color: #333;
    margin-bottom: 1rem;
}

.platform ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.platform li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.platform li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.innovations {
    display: grid;
    gap: 2rem;
}

.innovation {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ff6b6b;
}

.innovation h3 {
    color: #333;
    margin-bottom: 1rem;
}

.applications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.app-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #4ecdc4;
}

.app-category h3 {
    color: #333;
    margin-bottom: 1rem;
}

.app-category ul {
    list-style: none;
    padding-left: 0;
}

.app-category li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.app-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.research-item {
    background: #fff;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4ecdc4;
    margin-bottom: 2rem;
}

.research-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.innovation-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 2px;
    border-left: 4px solid #ff6b6b;
    margin-bottom: 2rem;
}

.innovation-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .news-featured {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section {
        grid-template-columns: 1fr;
    }

    .corporate-training {
        grid-template-columns: 1fr;
    }

    .office-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hours-card,
    .visit-card {
        padding: 1rem;
    }
    
    .hours-card h4,
    .visit-card h4 {
        font-size: 0.85rem; /* Footer alt metin boyutuna yakın */
        color: #ff6b35; /* Turuncu renk */
    }
    
    .hours-card p,
    .visit-card p {
        font-size: 0.75rem; /* Footer alt metin boyutuna eşit */
        line-height: 1.3;
    }
    
    .hours-item {
        font-size: 0.75rem;
        padding: 0.2rem 0;
    }
    
    .company-description {
        padding: 1rem;
    }
    
    .company-description p {
        font-size: 0.75rem; /* Footer alt metin boyutuna eşit */
        line-height: 1.3;
    }

    .hr-info {
        flex-direction: column;
        gap: 1rem;
    }

    .application-steps {
        grid-template-columns: 1fr;
    }

    .cards-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mission-card {
        flex-direction: column;
        gap: 0;
    }

    .mission-image {
        height: 200px;
    }

    .mission-content {
        padding: 2rem;
    }

    .tech-card-main {
        padding: 1.5rem 1rem;
    }

    .card-content h3 {
        font-size: 0.9rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cards-grid-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mission-card {
        flex-direction: column;
        gap: 0;
    }

    .mission-image {
        height: 180px;
    }

    .mission-content {
        padding: 1.5rem;
    }

    .mission-content h2 {
        font-size: 1.5rem;
    }

    .hero-slider-nav {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .cards-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mission-card {
        flex-direction: column;
        gap: 0;
    }

    .mission-image {
        height: 200px;
    }

    .mission-content {
        padding: 2rem;
    }
}

/* Responsive Design - Comprehensive Mobile & Tablet Support */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .cards-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mission-card {
        flex-direction: column;
        gap: 0;
    }
    
    .mission-image {
        height: 250px;
    }
    
    .mission-content {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-stats {
        grid-template-columns: 1fr !important; /* Mobilde tek sütun */
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Tablet boyutunda da yan yana */
        gap: 1.5rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px); /* Dynamic viewport height for mobile */
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(78, 205, 196, 0.1);
        border: none;
        border-radius: 8px;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.open .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-left: none;
        text-align: center;
    }
    
    
    .language-switch {
        margin-left: 1rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
    
    /* Technology Cards */
    .cards-grid-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-card-main {
        min-height: 200px;
        padding: 1.5rem 1rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    /* Mission Cards */
    .mission-card {
        flex-direction: column;
        gap: 0;
    }
    
    .mission-image {
        height: 200px;
    }
    
    .mission-content {
        padding: 1.5rem;
    }
    
    .mission-content h2 {
        font-size: 1.5rem;
    }
    
    .mission-content p {
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left !important; /* Footer sütunları kesinlikle sola yaslı */
    }
    
    .footer-section {
        text-align: left !important; /* Footer bölümleri kesinlikle sola yaslı */
    }
    
    .footer-section h4 {
        text-align: left !important; /* Footer başlıkları kesinlikle sola yaslı */
    }
    
    .social-links {
        justify-content: flex-start; /* Sosyal medya linkleri sola yaslı */
    }
    
    /* Video Controls */
    .hero-slider-nav {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    /* Logo text removed */
    
    .logo-img {
        height: 32px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Technology Cards */
    .tech-card-main {
        min-height: 180px;
        padding: 1.2rem 0.8rem;
        text-align: center !important; /* Mobilde kartlar ortalı */
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon .material-icons {
        font-size: 20px;
    }
    
    .card-content {
        text-align: center !important; /* Kart içeriği ortalı */
    }
    
    .card-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        text-align: center !important; /* Başlıklar ortalı */
    }
    
    .card-content p {
        font-size: 0.75rem;
        line-height: 1.3;
        text-align: center !important; /* Metinler ortalı */
    }
    
    /* Mission Cards */
    .mission-image {
        height: 160px;
    }
    
    .mission-content {
        padding: 1.2rem;
    }
    
    .mission-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .mission-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .mission-content .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* About Section */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    /* Video Controls */
    .hero-slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .indicator.active {
        width: 20px;
    }
}

/* 8px Border Radius Standard - Updated for better visual appeal */
.mission-vision-card, .mv-icon, .value-card, .value-icon, .stat-item, .stat-icon, .legal-item {
    border-radius: 8px !important;
}

/* Management Grid */
.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .tech-card-main {
        padding: 1rem 0.6rem;
    }
    
    .mission-content {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding: 2rem 0;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px); /* Dynamic viewport height for mobile */
        padding-top: 1rem;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover {
        color: #fff;
    }
    
    /* Dropdown hover disabled on mobile only */
    
    .tech-card-main:hover {
        transform: none;
    }
    
    .mission-card:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .slider-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Touch active states */
    .tech-card-main.touch-active {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(78, 205, 196, 0.15);
    }
    
    .mission-card.touch-active {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(78, 205, 196, 0.15);
    }
    
    .feature-card.touch-active {
        transform: translateY(-5px);
    }
}

/* Touch Device Specific Classes */
.touch-device .nav-link {
    min-height: 44px;
}

.touch-device .btn {
    min-height: 44px;
}

.touch-device .slider-btn {
    min-height: 44px;
    min-width: 44px;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px); /* Dynamic viewport height for mobile */
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.3s ease forwards;
    }
    
    .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-item:nth-child(2) { animation-delay: 0.2s; }
    .nav-item:nth-child(3) { animation-delay: 0.3s; }
    .nav-item:nth-child(4) { animation-delay: 0.4s; }
    .nav-item:nth-child(5) { animation-delay: 0.5s; }
    .nav-item:nth-child(6) { animation-delay: 0.6s; }
    .nav-item:nth-child(7) { animation-delay: 0.7s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
        border-radius: 2px; /* Minimal radius as requested */
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(78, 205, 196, 0.1);
        color: #4ecdc4;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(78, 205, 196, 0.1);
        border: none;
        border-radius: 8px;
        margin: 0.5rem 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 0;
    }
    
    .dropdown.open .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        margin-top: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-left: none;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: rgba(78, 205, 196, 0.2);
        color: #4ecdc4;
    }
    
    
    .language-switch {
        margin-left: 1rem;
    }
    
    /* Mobile menu backdrop */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-slider-nav,
    .slider-indicators {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .tech-card-main,
    .mission-card,
    .feature-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        box-shadow: none;
        margin-bottom: 1rem;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-title {
        color: black !important;
        font-size: 24pt;
    }
    
    .hero-subtitle {
        color: #333 !important;
        font-size: 14pt;
    }
}

/* Tablet Specific Optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cards-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tech-card-main {
        min-height: 220px;
        padding: 1.8rem 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .mission-card {
        flex-direction: column;
        gap: 0;
    }
    
    .mission-image {
        height: 220px;
    }
    
    .mission-content {
        padding: 2rem;
    }
    
    .mission-content h2 {
        font-size: 1.6rem;
    }
    
    .mission-content p {
        font-size: 0.95rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Video Controls for Tablet */
    .hero-slider-nav {
        padding: 0 1.5rem;
    }
    
    .slider-btn {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    
    .slider-indicators {
        bottom: 2rem;
    }
}

/* Large Mobile to Small Tablet */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cards-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tech-card-main {
        min-height: 190px;
        padding: 1.5rem 1rem;
    }
    
    .card-content h3 {
        font-size: 0.95rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    .mission-card {
        flex-direction: column;
        gap: 0;
    }
    
    .mission-image {
        height: 180px;
    }
    
    .mission-content {
        padding: 1.8rem;
    }
    
    .mission-content h2 {
        font-size: 1.4rem;
    }
    
    .mission-content p {
        font-size: 0.9rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left !important; /* Footer sütunları kesinlikle sola yaslı */
    }
    
    .footer-section {
        text-align: left !important; /* Footer bölümleri kesinlikle sola yaslı */
    }
    
    .footer-section h4 {
        text-align: left !important; /* Footer başlıkları kesinlikle sola yaslı */
    }
}

/* Enhanced Mobile Experience */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    /* Improved spacing for mobile */
    .hero {
        padding-top: 2rem;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 2px; /* Minimal radius as requested */
    }
    
    /* Technology Cards Mobile */
    .technology-cards {
        padding: 1.5rem 0;
    }
    
    .cards-grid-main {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .tech-card-main {
        min-height: 170px;
        padding: 1.2rem 0.8rem;
        border-radius: 2px; /* Minimal radius as requested */
    }
    
    .card-icon {
        width: 42px;
        height: 42px;
        border-radius: 2px; /* Minimal radius as requested */
    }
    
    .card-icon .material-icons {
        font-size: 20px;
    }
    
    .card-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .card-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .card-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    /* Mission Cards Mobile */
    .mission-sections {
        padding: 1rem 0;
    }
    
    .mission-cards {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .mission-card {
        border-radius: 2px; /* Minimal radius as requested */
        overflow: hidden;
    }
    
    .mission-image {
        height: 150px;
    }
    
    .mission-content {
        padding: 1.2rem;
    }
    
    .mission-label {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .mission-content h2 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .mission-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .mission-content .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        width: auto;
        max-width: none;
    }
    
    /* About Section Mobile */
    .about {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .about-features {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        border-radius: 2px; /* Minimal radius as requested */
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0 1rem;
        text-align: left !important; /* Footer kesinlikle sola yaslı */
    }
    
    .footer-section {
        text-align: left !important; /* Footer bölümleri kesinlikle sola yaslı */
    }
    
    .footer-section h4 {
        text-align: left !important; /* Footer başlıkları kesinlikle sola yaslı */
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .social-links {
        gap: 0.8rem;
        justify-content: flex-start !important; /* Sosyal medya linkleri kesinlikle sola yaslı */
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    /* Video Controls Mobile */
    .hero-slider-nav {
        padding: 0 0.8rem;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
        border-radius: 2px; /* Minimal radius as requested */
    }
    
    .slider-indicators {
        bottom: 1.2rem;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
        border-radius: 2px; /* Minimal radius as requested */
    }
    
    .indicator.active {
        width: 22px;
    }
}

/* Extra Small Mobile Optimizations */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        padding: 0 0.3rem;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        max-width: 260px;
    }
    
    .cards-grid-main {
        padding: 0 0.3rem;
        gap: 0.6rem;
    }
    
    .tech-card-main {
        padding: 1rem 0.6rem;
        min-height: 160px;
    }
    
    .card-icon {
        width: 38px;
        height: 38px;
    }
    
    .card-icon .material-icons {
        font-size: 18px;
    }
    
    .card-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .card-content p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .mission-cards {
        padding: 0 0.3rem;
        gap: 0.6rem;
    }
    
    .mission-image {
        height: 130px;
    }
    
    .mission-content {
        padding: 1rem;
    }
    
    .mission-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .mission-content p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .about-features {
        padding: 0 0.3rem;
        gap: 0.8rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 5px;
        height: 5px;
    }
    
    .indicator.active {
        width: 20px;
    }
}

/* 8px Border Radius Standard - Updated for better visual appeal */
.mission-vision-card, .mv-icon, .value-card, .value-icon, .stat-item, .stat-icon, .legal-item {
    border-radius: 8px !important;
}
