/* ========================================
   COMMON.CSS - Burakcan Kalıp
   FullPage.js Responsive Template
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    /* Colors */
    --burgundy: #8c1333;
    --burgundy-light: #a01545;
    --burgundy-dark: #6a0e27;
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #999999;
    
    /* Typography Scale */
    --h1: clamp(3rem, 8vw, 6rem);
    --h2: clamp(2rem, 5vw, 4rem);
    --h3: clamp(1.5rem, 3vw, 2.5rem);
    --h4: clamp(1.2rem, 2vw, 1.8rem);
    --body: clamp(1rem, 1.5vw, 1.125rem);
    --small: clamp(0.875rem, 1.2vw, 1rem);
    
    /* Spacing */
    --section-padding: clamp(2rem, 5vw, 4rem);
    --container-padding: clamp(1rem, 3vw, 2rem);
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow: hidden; /* No scroll on homepage */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Homepage specific body */
body.homepage {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ========================================
   SECTION STYLES - 100vh & Full Width
   ======================================== */

/* Section Base - Tüm sectionlar için tek tanım */
.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    opacity: 1 !important;
    text-align: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: background-color var(--transition-slow);
}

/* Footer için özel durum - otomatik yükseklik */
.section.fp-auto-height {
    height: auto;
    min-height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--section-padding);
    text-align: center;
    position: relative;
    z-index: 10;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

/* Section animations will be handled by GSAP */

/* Diğer section'lar animasyon için hazır */
.section:not(#section1):not(#about-section1) .section-title {
    font-size: var(--h1);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(100px);
}

.section:not(#section1):not(#about-section1) .section-text {
    font-size: var(--body);
    color: var(--gray);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(50px);
}

/* Genel title ve text stilleri */
.section-title {
    font-size: var(--h1);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.section-text {
    font-size: var(--body);
    color: var(--gray);
    margin-top: 1rem;
}

/* ========================================
   COMPONENTS
   ======================================== */

/* Section Line */
.section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5), rgba(255,255,255,0.2));
    margin: 1rem auto;
    border-radius: 1px;
    opacity: 0.6;
    transition: all 0.1s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn:hover {
    background: var(--burgundy-light);
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: flex-start;
}

/* Glass Button Style - Matching Original */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 9999px; /* Full rounded */
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: all 0.15s ease;
}

.btn-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(140, 19, 51, 0.2), rgba(255, 107, 138, 0.2));
    opacity: 0;
    transition: opacity 0.15s ease;
}

.btn-glass:hover {
    border-color: rgba(140, 19, 51, 0.5);
}

.btn-glass:hover::before {
    opacity: 1;
}

.btn-glass span {
    position: relative;
    z-index: 10;
}

.btn-icon {
    position: relative;
    z-index: 10;
    width: 20px;
    height: 20px;
    transition: transform 0.1s ease;
}

.btn-glass:hover .btn-icon {
    transform: translateX(3px);
}

/* Blue variant for btn-glass */
.btn-glass-blue::before {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}
.btn-glass-blue:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.btn-glass-orange::before {
    background: linear-gradient(to right, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
}
.btn-glass-orange:hover {
    border-color: rgba(249, 115, 22, 0.5);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: row; /* Yan yana */
        gap: 0.5rem; /* Daha az boşluk */
        flex-wrap: wrap; /* Gerekirse alt satıra geç */
    }
    
    .btn, .btn-glass {
        text-align: center;
        padding: 0.75rem 1rem; /* Daha küçük padding */
        font-size: 0.85rem; /* Daha küçük font */
        flex: 1; /* Eşit genişlik */
        min-width: 0; /* Flex'in çalışması için */
        justify-content: center;
    }
    
    .btn-glass span {
        font-size: 0.85rem; /* Metin boyutu */
    }
    
    .btn-icon {
        width: 16px; /* İkon boyutu küçült */
        height: 16px;
    }
}

/* ========================================
   FULLPAGE.JS NAVIGATION
   ======================================== */

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: var(--white);
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    background: var(--burgundy);
}

#fp-nav ul li .fp-tooltip {
    color: var(--white);
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 10px;
    border-radius: 4px;
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */

/* Ken Burns Background Effect */
.ken-burns-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* animation: kenBurns 20s ease-in-out infinite alternate; REMOVED */
    z-index: 1;
}

@keyframes kenBurns {
    0% { 
        transform: scale(1) translate(0, 0); 
    }
    100% { 
        transform: scale(1.2) translate(-2%, -2%); 
    }
}

/* Gradient Overlays */
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(140, 19, 51, 0.8) 0%, 
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

/* Ken Burns Effect for Section 1 - REMOVED */
#section1 {
    transform-origin: center center;
    /* animation: kenBurns 10s ease-in-out infinite alternate; REMOVED */
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--container-padding);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Typography adjustments */
    .section-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    /* FullPage.js mobile override */
    .fp-enabled body {
        overflow: auto !important;
    }
    
    .fp-section {
        width: 100% !important;
    }
    
    /* Ensure 100vh on mobile */
    .section {
        height: 100vh;
        min-height: -webkit-fill-available; /* iOS Safari fix */
    }
    
    /* Hide navigation dots on mobile */
    #fp-nav {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Çok küçük ekranlarda buton metni kısaltılabilir */
    .hero-buttons {
        gap: 0.4rem;
    }
    
    .btn-glass {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn-glass span {
        font-size: 0.8rem;
    }
    
    /* İkonları gizle çok dar ekranlarda */
    @media (max-width: 360px) {
        .btn-icon {
            display: none;
        }
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Hero Section Enhanced */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Ensure aviation sections are visible */
#aviation-section1,
#aviation-section2,
#aviation-section3,
#aviation-section4 {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Animated Background Layers */
.animated-bg {
    position: absolute;
    inset: 0;
    z-index: 3; /* Changed from 1 to 3 to be above video */
}

.gradient-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #000000 0%, rgba(0,0,0,0.9) 50%, rgba(140, 19, 51, 0.1) 100%);
}

.gradient-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(at 40% 20%, hsla(345, 80%, 30%, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(340, 70%, 20%, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(350, 85%, 25%, 0.1) 0px, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -20px) rotate(-1deg); }
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 4; /* Above video and animated-bg */
    pointer-events: none;
}

/* Floating Particles */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 5; /* Above all background layers */
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.particle-1 { top: 10%; left: 20%; /* animation: floatParticle 15s infinite; REMOVED */ }
.particle-2 { top: 30%; left: 80%; /* animation: floatParticle 20s infinite 2s; REMOVED */ }
.particle-3 { top: 60%; left: 10%; /* animation: floatParticle 18s infinite 1s; REMOVED */ }
.particle-4 { top: 80%; left: 70%; /* animation: floatParticle 22s infinite 3s; REMOVED */ }
.particle-5 { top: 45%; left: 50%; /* animation: floatParticle 16s infinite 2.5s; REMOVED */ }

/* REMOVED - No floating particles
@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(100px, -100px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-100px, 100px) scale(0.8); opacity: 0.3; }
    75% { transform: translate(50px, 50px) scale(1.2); opacity: 0.5; }
}
*/

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--section-padding);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding: 4rem 0;
}

/* Left Content */
.content-left {
    animation: slideInLeft 1.5s ease-out;
    text-align: left; /* Sol hizalama */
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem; /* Daha dar padding */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.7rem; /* Biraz daha küçük */
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Title */
.hero-title {
    /* font-size artık utility class ile kontrol ediliyor: title-lg */
    margin-bottom: 2rem;
}

.title-line-1 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line-2 {
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gradient-text-animated {
    background: linear-gradient(90deg, #8c1333 0%, #ff6b8a 50%, #8c1333 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Gradient Variations */
.gradient-text-animated.gradient-burgundy {
    background: linear-gradient(135deg, #8c1333, #d946ef, #8c1333);
}

.gradient-text-animated.gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #8b5cf6);
}

.gradient-text-animated.gradient-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2, #06b6d4);
}

.gradient-text-animated.gradient-indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5, #6366f1);
}

.gradient-text-animated.gradient-orange {
    background: linear-gradient(135deg, #fb923c, #f97316, #ea580c, #f97316, #fb923c);
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Hero Description */
.hero-description {
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Content text style - same as hero description */
.content-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Smaller content text for sections */
.content-text-sm {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.text-highlight {
    color: var(--white);
    font-weight: 500;
}

.text-highlight-burgundy {
    color: var(--burgundy-light);
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    display: block;
}

.stat-number .counter {
    font-weight: 700;
}

/* Number utility classes */
.number-xl { font-size: 3rem; }
.number-lg { font-size: 2.5rem; }
.number-md { font-size: 2rem; }
.number-sm { font-size: 1.5rem; }

.gradient-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #ef4444 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #a01545 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Right Content - Logo */
.content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1.5s ease-out;
    position: relative;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.logo-container {
    position: relative;
    /* animation: float3d 6s ease-in-out infinite; REMOVED */
}

/* REMOVED - No 3D floating
@keyframes float3d {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateY(5deg); }
}
*/

.hero-logo {
    height: clamp(200px, 30vw, 300px);
    width: auto;
    animation: logoPulse 3s ease-in-out infinite;
}

/* About page logo white overlay */
#about-section1 .hero-logo {
    position: relative;
    filter: brightness(2) contrast(0.6) saturate(0.3);
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* About page logo white overlay */
#about-section1 .hero-logo {
    position: relative;
    filter: brightness(2) contrast(0.6) saturate(0.3);
}

.logo-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(160, 21, 69, 0.5) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation utility classes */
.animate-fadeInUp-1 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.animate-fadeInUp-2 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.animate-fadeInUp-3 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.animate-fadeInUp-4 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.animate-fadeInUp-5 {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

/* Stagger animations for lists */
.animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem; /* Gap'i azalttım, logoya yaklaşacak */
    }
    
    .content-left {
        order: 2;
        text-align: left; /* Sol hizalama korunsun */
    }
    
    .content-right {
        order: 1;
        margin-bottom: 1.5rem; /* 3rem'den 1.5rem'e düşürdüm */
    }
    
    .hero-stats {
        justify-content: center; /* Ortalandı */
    }
    
    .stat-item {
        text-align: center; /* İstatistikler ortalandı */
    }
}

@media (max-width: 768px) {
    /* .hero-title font-size artık utility class ile kontrol ediliyor */
    
    .hero-content {
        padding: 0 1.5rem; /* Yan padding azaltıldı */
    }
    
    .content-grid {
        padding: 2rem 0; /* Üst/alt padding azaltıldı */
        gap: 1.5rem; /* Gap daha da azaltıldı */
    }
    
    .hero-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .content-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .content-text-sm {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    .hero-badge span {
        font-size: 0.6rem; /* Badge'i de küçült */
        padding: 0.3rem 0.8rem;
    }
    
    .hero-stats {
        flex-direction: row; /* Yan yana */
        gap: 1.5rem; /* Daha az boşluk */
        align-items: flex-start;
        justify-content: center; /* Mobile'da ortalı */
        flex-wrap: wrap; /* Gerekirse alt satıra geçsin */
    }
    
    .stat-item {
        flex: 0 0 auto; /* Sabit genişlik */
        min-width: 80px; /* Minimum genişlik */
        text-align: center; /* Mobile'da ortalı */
    }
    
    /* .stat-number font-size artık utility class ile kontrol ediliyor */
    
    .stat-label {
        font-size: 0.65rem; /* Etiketler de biraz küçük */
    }
    
    .hero-logo {
        height: 200px;
    }
    
    .akinci-image {
        max-width: 400px;
    }
}

/* First section visibility will be handled by GSAP animations */

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Title Sizes - Tüm section'larda kullanılabilir */
.title-xl { 
    font-size: 4rem !important;
    font-weight: 900;
    line-height: 1.1;
}

.title-lg { 
    font-size: 3rem !important;
    font-weight: 900;
    line-height: 1.1;
}

.title-md { 
    font-size: 2.5rem !important;
    font-weight: 900;
    line-height: 1.1;
}

.title-sm { 
    font-size: 2rem !important;
    font-weight: 900;
    line-height: 1.1;
}

.title-xs { 
    font-size: 1.5rem !important;
    font-weight: 900;
    line-height: 1.1;
}

/* Number/Stat Sizes */
.number-xl { 
    font-size: 3.5rem !important;
    font-weight: 900;
    line-height: 1;
}

.number-lg { 
    font-size: 2.5rem !important;
    font-weight: 900;
    line-height: 1;
}

.number-md { 
    font-size: 2rem !important;
    font-weight: 900;
    line-height: 1;
}

.number-sm { 
    font-size: 1.5rem !important;
    font-weight: 900;
    line-height: 1;
}

/* Mobile Responsive Sizes */
@media (max-width: 768px) {
    .title-xl { font-size: 2.5rem !important; }
    .title-lg { font-size: 1.75rem !important; }
    .title-md { font-size: 1.5rem !important; }
    .title-sm { font-size: 1.25rem !important; }
    .title-xs { font-size: 1rem !important; }
    
    .number-xl { font-size: 2rem; }
    .number-lg { font-size: 1.5rem; }
    .number-md { font-size: 1.25rem; }
    .number-sm { font-size: 1rem; }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .title-xl { font-size: 2rem !important; }
    .title-lg { font-size: 1.5rem !important; }
    .title-md { font-size: 1.25rem !important; }
    .title-sm { font-size: 1.1rem !important; }
    .title-xs { font-size: 0.95rem !important; }
    
    /* Glassmold extra small */
    .showcase-slider {
        width: 100%;
        max-width: 255px;
        height: 170px;
    }
    
    .glassmold-image {
        max-height: 170px;
    }
}

/* Tailwind Compat Classes - Geçici çözüm */
.text-5xl { 
    font-size: 3rem !important; 
}

.font-black { 
    font-weight: 900 !important; 
}

.text-transparent { 
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Flexbox */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

/* Spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Colors */
.text-burgundy { color: var(--burgundy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }

.bg-black { background-color: var(--black); }
.bg-burgundy { background-color: var(--burgundy); }

/* ========================================
   HERO VIDEO BACKGROUND
   ======================================== */

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* Changed from 0 to 1 */
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center 70%; /* Video'yu daha aşağıda göster */
}

.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.9));
    z-index: 2; /* Changed from 1 to 2 */
}

/* ========================================
   VIDEO CONTAINER
   ======================================== */

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.video-bg-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 19, 51, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Akinci Aircraft Animation */
.akinci-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.akinci-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    /* animation: floatAircraft 6s ease-in-out infinite; REMOVED */
}

/* REMOVED - No floating animation
@keyframes floatAircraft {
    0%, 100% { 
        transform: translateY(0) rotate(-2deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(2deg); 
    }
}
*/

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(140, 19, 51, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.1s ease;
    backdrop-filter: blur(10px);
}

/* Hover effect removed - using product-card-inner hover instead */

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease;
}

/* Image hover removed - using product-card-image hover instead */

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ========================================
   FACILITIES GRID
   ======================================== */

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.1s ease;
}

.facility-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--burgundy);
}

.facility-icon {
    display: inline-block;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.facility-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.facility-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ========================================
   REFERENCE SECTION
   ======================================== */

.reference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.reference-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.ref-img {
    width: 100%;
    height: auto;
    display: block;
}

.ref-title {
    margin-bottom: 1rem;
}

.ref-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reference-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .reference-info {
        order: 2;
    }
    
    .reference-image {
        order: 1;
    }
}

/* ========================================
   GLASSMOLD PAGE STYLES
   ======================================== */

/* Purple Theme Variables */
.gradient-text-purple {
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 50%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-overlay-purple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(192, 132, 252, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.text-highlight-purple {
    color: #c084fc;
    font-weight: 600;
}

/* Glass Buttons - Purple Theme */
.btn-glass-purple {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-glass-purple:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
    transform: translateY(-2px);
}

/* Glassmold Showcase */
.glass-mold-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

/* 3D Rotating Gallery */
.rotating-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 3rem 0;
    perspective: 1200px;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.2s;
}

.rotating-gallery.active .gallery-track {
    animation: rotateGallery 20s linear infinite;
}

@keyframes rotateGallery {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.gallery-item {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -200px;
}

.gallery-item:nth-child(1) { transform: translateZ(400px) rotateY(0deg); }
.gallery-item:nth-child(2) { transform: translateZ(400px) rotateY(60deg); }
.gallery-item:nth-child(3) { transform: translateZ(400px) rotateY(120deg); }
.gallery-item:nth-child(4) { transform: translateZ(400px) rotateY(180deg); }
.gallery-item:nth-child(5) { transform: translateZ(400px) rotateY(240deg); }
.gallery-item:nth-child(6) { transform: translateZ(400px) rotateY(300deg); }

.gallery-card {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.15s;
}

.gallery-card:hover {
    transform: scale(1.05);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.category-badge {
    background: rgba(147, 51, 234, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-content {
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.card-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Gallery Controls */
.gallery-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 10;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid rgba(147, 51, 234, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
}

.gallery-btn:hover {
    background: rgba(147, 51, 234, 0.3);
    transform: scale(1.1);
}

/* Facilities Glassmold */
.facilities-glassmold {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.facility-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facility-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4) 0%, transparent 100%);
}

.facility-info {
    padding: 2rem;
}

.facility-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9333ea 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.facility-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: #c084fc;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Production Grid */
.production-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.production-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.15s;
}

.production-card:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-glow {
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.production-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #c084fc;
}

.production-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Cross Reference Styles */
.cross-reference-content {
    padding: 3rem 0;
}

.ref-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.ref-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.ref-card.purple-theme {
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.ref-card.burgundy-theme {
    border: 1px solid rgba(140, 19, 51, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purple-glow {
    background: rgba(147, 51, 234, 0.2);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}

.burgundy-glow {
    background: rgba(140, 19, 51, 0.2);
    box-shadow: 0 0 30px rgba(140, 19, 51, 0.5);
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.expertise-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: #c084fc;
    font-weight: bold;
}

.ref-connection {
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-visual {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: -100%;
    right: -100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.5) 0%, rgba(140, 19, 51, 0.5) 100%);
    transform: translateY(-50%);
}

.connection-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.connection-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.ref-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.15s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(140, 19, 51, 0.4);
}

/* Glassmold Container */
.glassmold-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-slider {
    position: relative;
    width: 460px;
    height: 306px;
    animation: floatSubtle 8s ease-in-out infinite;
}

.glassmold-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(147, 51, 234, 0.4));
}

.glassmold-image.active {
    opacity: 1;
}

/* Glassmold button override */
#glassmold-section1 .btn-glass {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.3);
}

#glassmold-section1 .btn-glass:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.5);
}

.showcase-slider {
    position: relative;
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}


.glassmold-glow {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.5) 0%, transparent 70%);
    z-index: 1;
}

/* Glassmold Gallery */
.glassmold-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-images {
    position: relative;
    width: 540px;
    height: 360px;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    filter: drop-shadow(0 20px 40px rgba(147, 51, 234, 0.4));
}

.gallery-slide.active {
    opacity: 1;
    animation: floatSubtle 8s ease-in-out infinite;
}

/* Gallery Indicators */
.gallery-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.1s ease;
}

.indicator.active {
    background: rgba(147, 51, 234, 0.8);
    width: 24px;
    border-radius: 4px;
}

.indicator:hover {
    background: rgba(147, 51, 234, 0.6);
}

/* Gradient Text Styles */
.gradient-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #dc2dd6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-indigo {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.gradient-blue-purple {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Glassmold Mobile Responsive */
@media (max-width: 768px) {
    .gallery-item {
        width: 250px;
        height: 350px;
        margin-left: -125px;
        margin-top: -175px;
    }
    
    .gallery-item:nth-child(1) { transform: translateZ(250px) rotateY(0deg); }
    .gallery-item:nth-child(2) { transform: translateZ(250px) rotateY(60deg); }
    .gallery-item:nth-child(3) { transform: translateZ(250px) rotateY(120deg); }
    .gallery-item:nth-child(4) { transform: translateZ(250px) rotateY(180deg); }
    .gallery-item:nth-child(5) { transform: translateZ(250px) rotateY(240deg); }
    .gallery-item:nth-child(6) { transform: translateZ(250px) rotateY(300deg); }
    
    .facility-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .production-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .ref-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ref-connection {
        display: none;
    }
    
    /* Glassmold Hero Mobile */
    .glassmold-container {
        padding: 1rem;
    }
    
    .showcase-slider {
        width: 100%;
        max-width: 340px;
        height: 212px;
    }
    
    .glassmold-image {
        max-height: 212px;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Info */
.hero-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
}

/* Contact Mobile Responsive */
@media (max-width: 768px) {
    .hero-contact-info {
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-value {
        font-size: 1rem;
    }
}

/* ========================================
   LOADING STATES
   ======================================== */

.loading {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   NAVBAR STYLES
   ======================================== */

.navbar-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.1s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.navbar-minimal.scrolled {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: color 0.15s;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.desktop-menu a:hover {
    color: var(--burgundy-light);
}

/* Dropdown Arrow */
.dropdown-arrow {
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.1s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.1s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.dropdown-menu a:hover {
    color: white;
    background: rgba(140, 19, 51, 0.2);
}

/* Mobile Toggle */
.mobile-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 16px;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--burgundy);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--burgundy);
}

/* Hamburger hover effect */
.mobile-toggle:hover .hamburger span {
    background: var(--burgundy);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.1s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
    animation: mobileMenuOpen 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes mobileMenuOpen {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile menu items animation */
.mobile-menu.open nav > a,
.mobile-menu.open nav > div {
    animation: menuItemSlide 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    opacity: 0;
}

.mobile-menu.open nav > *:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open nav > *:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open nav > *:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.open nav > *:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open nav > *:nth-child(5) { animation-delay: 0.3s; }

@keyframes menuItemSlide {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu nav {
    padding: 4rem 1.5rem 2rem;
}

.mobile-menu nav > a,
.mobile-menu nav > div > button {
    display: block;
    width: 100%;
    text-align: left;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 1rem 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.15s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mobile-menu nav > a:hover,
.mobile-menu nav > div > button:hover {
    color: var(--burgundy);
}

.mobile-dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
    border: none;
    background: none;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-dropdown-toggle span {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-dropdown-toggle:hover {
    color: var(--burgundy);
}

.dropdown-icon {
    flex-shrink: 0 !important;
    transition: transform 0.1s ease;
    width: 20px !important;
    height: 20px !important;
    display: inline-block !important;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    padding-left: 1rem;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 400;
    padding: 0.5rem 0;
    transition: all 0.15s;
}

.mobile-submenu a:hover {
    color: var(--burgundy);
    padding-left: 0.5rem;
}

/* Mobile Backdrop */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease;
}

.mobile-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Language Switch */
.lang-switch {
    display: none;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
    margin-left: 2rem;
}

.lang-btn {
    padding: 6px 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.15s;
    font-size: 13px;
    font-weight: 500;
}

.lang-btn:hover {
    color: white;
}

.lang-btn.active {
    background: var(--burgundy);
    color: white;
}

/* Mobile Language Switch */
.mobile-lang-switch {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px;
}

.mobile-lang-switch .lang-btn {
    flex: 1;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .navbar-minimal {
        height: 70px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .desktop-menu {
        display: flex;
    }
    
    .lang-switch {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Home page section'ları için özel stil artık gerekli değil
   Tüm sectionlar .section class'ını kullanıyor */

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Background Text */
.bg-text-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    pointer-events: none;
    z-index: 2;
}

.bg-text {
    font-size: clamp(10vw, 20vw, 300px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    user-select: none;
    display: none;
}

@media (min-width: 768px) {
    .bg-text {
        display: block;
    }
}

/* Home Split Container */
.home-split-container {
    display: flex;
    height: 100vh;
    position: relative;
    z-index: 10;
}

.home-split-half {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.split-hover-bg {
    display: none;
}

.split-inner {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    position: relative;
}

/* Model Viewer Styles */
.model-viewer-wrapper {
    width: clamp(200px, 50vw, 400px);
    height: clamp(200px, 50vw, 400px);
    margin: 0 auto 2rem;
    position: relative;
}

/* Simple up-down floating animation */
@keyframes floatUpDown {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

.model-viewer-wrapper {
    animation: floatUpDown 3s ease-in-out infinite;
}

.glassmold-half .model-viewer-wrapper {
    animation-delay: 1s;
}

/* Animate float class */
.animate-float {
    animation: floatUpDown 3s ease-in-out infinite;
}

model-viewer {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

/* Loading Spinner */
.model-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(140, 19, 51, 0.3);
    border-top-color: var(--burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* Center Divider */
.center-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 75%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    display: none;
}

@media (min-width: 768px) {
    .center-divider {
        display: block;
    }
}


/* Mobile Responsive for Home Page */
@media (max-width: 768px) {
    .home-split-container {
        flex-direction: column;
    }
    
    .home-split-half {
        height: 50vh;
    }
    
    .model-viewer-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .split-inner {
        padding: 1rem;
    }
}


/* Footer Fullscreen Section */
.footer-fullscreen {
    background: black;
    position: relative;
    overflow: hidden;
}

/* Footer Background */
.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, black, #0a0a0a, black);
}

.footer-gradient-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a, transparent);
}

.footer-glow-left,
.footer-glow-right {
    position: absolute;
    bottom: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(140, 19, 51, 0.05);
    border-radius: 50%;
    filter: blur(75px);
}

.footer-glow-left {
    left: 0;
}

.footer-glow-right {
    right: 0;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.footer-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Column */
.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer Logo Section */
.footer-logo-wrapper {
    margin-bottom: 2rem;
}

.footer-logo-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.footer-logo-glow {
    position: absolute;
    inset: -1rem;
    background: var(--burgundy);
    filter: blur(45px);
    opacity: 0.2;
    transition: opacity 0.2s;
}

.footer-logo-link:hover .footer-logo-glow {
    opacity: 0.4;
}

.footer-logo {
    position: relative;
    height: 5rem;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(140, 19, 51, 0.5));
    transform: scale(1);
    transition: transform 0.15s;
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.1);
}

/* Rotating rings */
.footer-logo-ring {
    position: absolute;
    border: 1px solid rgba(140, 19, 51, 0.2);
    border-radius: 50%;
    animation: spin-slow 10s linear infinite;
}

.ring-1 {
    inset: -1.5rem;
}

.ring-2 {
    inset: -2rem;
    border-color: rgba(160, 21, 69, 0.1);
    animation-direction: reverse;
    animation-duration: 10s;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Arka plan efektleri */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(140, 19, 51, 0.1) 0%, transparent 50%);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(140, 19, 51, 0.1) 0%, transparent 50%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
    position: relative;
    z-index: 1;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0;
    transition: all 0.1s ease;
}

.social-icon span {
    font-size: 0;
}

.social-icon::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.social-icon:nth-child(1)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/%3E%3Crect x='2' y='9' width='4' height='12'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E");
}

.social-icon:nth-child(2)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'/%3E%3C/svg%3E");
}

.social-icon:nth-child(3)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

.social-icon:nth-child(4)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z'/%3E%3Cpolygon points='9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02'/%3E%3C/svg%3E");
}

.social-icon:hover {
    background: rgba(140, 19, 51, 0.2);
    border-color: var(--burgundy);
    color: white;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.link-group h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--burgundy);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office h5 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.office p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.office a {
    color: var(--burgundy);
    text-decoration: none;
    font-size: 0.85rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--burgundy);
}

/* Legal Modal */
.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

#legalModalTitle {
    color: white;
    margin-bottom: 1.5rem;
}

#legalModalBody {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

#legalModalBody h3 {
    color: white;
    margin: 1.5rem 0 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-section-wrapper {
        padding: 2rem 1rem;
    }
    
    .footer-header {
        margin-bottom: 2rem;
    }
    
    .footer-main-title {
        font-size: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        gap: 1rem;
    }
    
    .site-footer {
        padding: 1rem 0;
    }
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.15s;
}

.social-link:hover {
    border-color: rgba(140, 19, 51, 0.5);
    background: rgba(140, 19, 51, 0.2);
    color: white;
    transform: translateY(-2px);
}

.social-icon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-color: currentColor;
}

.linkedin::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'/%3E%3Crect x='2' y='9' width='4' height='12'/%3E%3Ccircle cx='4' cy='4' r='2'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.twitter::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.instagram::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.youtube::before {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z'/%3E%3Cpolygon points='9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--burgundy);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.contact-block {
    margin-bottom: 1rem;
}

.contact-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.contact-detail {
    color: #9ca3af;
    font-size: 0.75rem;
    line-height: 1.4;
}

.contact-divider {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.15s;
}

.contact-link:hover {
    color: var(--burgundy);
}

.contact-link .icon {
    font-size: 0.875rem;
}

/* Working Hours Badge */
.working-hours {
    margin: 3rem 0;
    text-align: center;
}

.working-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(140, 19, 51, 0.1), rgba(160, 21, 69, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.working-hours-badge .icon {
    font-size: 1rem;
}

.working-hours-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.working-hours-text strong {
    color: white;
    font-weight: 500;
}

.working-hours-text .closed {
    color: var(--burgundy);
}

.divider {
    color: #6b7280;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal a:hover {
    color: var(--burgundy);
}

/* Footer Styles */
.footer {
    position: relative;
    margin-top: 0;
    background: transparent;
    overflow: hidden;
    width: 100%;
}

/* Footer Background Effects */
.footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.footer-gradient-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000000, #0a0a0a, #000000);
}

.footer-gradient-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a, transparent);
}

.footer-glow-left,
.footer-glow-right {
    position: absolute;
    bottom: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(140, 19, 51, 0.05);
    border-radius: 50%;
    filter: blur(75px);
}

.footer-glow-left {
    left: -12rem;
}

.footer-glow-right {
    right: -12rem;
}

/* Footer Container */
.footer-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Column */
.footer-column h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer Logo Section */
.footer-logo-wrapper {
    margin-bottom: 2rem;
}

.footer-logo-link {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.footer-logo-glow {
    position: absolute;
    inset: -1rem;
    background: var(--burgundy);
    filter: blur(45px);
    opacity: 0.2;
    transition: opacity 0.2s;
}

.footer-logo-link:hover .footer-logo-glow {
    opacity: 0.4;
}

.footer-logo {
    position: relative;
    height: 5rem;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(140, 19, 51, 0.5));
    transform: scale(1);
    transition: transform 0.15s;
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.1);
}

/* Rotating rings */
.footer-logo-ring {
    position: absolute;
    border: 1px solid rgba(140, 19, 51, 0.2);
    border-radius: 50%;
    animation: spin-slow 10s linear infinite;
}

.ring-1 {
    inset: -1.5rem;
}

.ring-2 {
    inset: -2rem;
    border-color: rgba(160, 21, 69, 0.1);
    animation-direction: reverse;
    animation-duration: 10s;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer Description */
.footer-description {
    color: rgba(156, 163, 175, 1);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.15s;
}

.social-link:hover {
    border-color: rgba(140, 19, 51, 0.5);
    background: rgba(140, 19, 51, 0.2);
    color: white;
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(156, 163, 175, 1);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--burgundy);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
}

.contact-block {
    margin-bottom: 1rem;
}

.contact-title {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-detail {
    color: rgba(156, 163, 175, 1);
    font-size: 0.75rem;
    line-height: 1.4;
}

.contact-divider {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link {
    color: rgba(156, 163, 175, 1);
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.15s;
}

.contact-link:hover {
    color: var(--burgundy);
}

.contact-link svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* Working Hours Badge */
.working-hours {
    margin: 3rem 0;
    text-align: center;
}

.working-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(140, 19, 51, 0.1), rgba(160, 21, 69, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.working-hours-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--burgundy);
}

.working-hours-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(156, 163, 175, 1);
}

.working-hours-text strong {
    color: white;
    font-weight: 500;
}

.working-hours-text .closed {
    color: var(--burgundy);
}

.divider {
    color: rgba(107, 114, 128, 1);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(107, 114, 128, 1);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(107, 114, 128, 1);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal a:hover {
    color: var(--burgundy);
}

/* Legal Modal */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 1.25rem;
}

.legal-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1f2937, #111827);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: linear-gradient(90deg, #1f2937, #111827);
    padding: 1.25rem;
    border-bottom: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    font-weight: bold;
}

.modal-close {
    background: #374151;
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.modal-close:hover {
    background: var(--burgundy);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
    color: #d1d5db;
    line-height: 1.6;
}

.modal-body h2 {
    color: white;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.modal-body h3 {
    color: white;
    font-size: 1.125rem;
    margin: 1.5rem 0 0.75rem 0;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
}

.modal-body ul li {
    margin-bottom: 0.5rem;
}

.legal-notice {
    background: rgba(140, 19, 51, 0.1);
    border: 1px solid rgba(140, 19, 51, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.legal-notice p {
    color: var(--burgundy);
    font-weight: bold;
    margin: 0;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo-wrapper {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .working-hours-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .working-hours-text {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   SECTION TEMPLATES
   ============================================ */

/* Section Base Styles */
.section-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.section-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Variations for Different Sections - REMOVED TO AVOID CONFLICTS */





/* Section Line Gradients */
.bg-gradient-purple {
    background: linear-gradient(90deg, #7c3aed, #9333ea) !important;
}

.bg-gradient-blue {
    background: linear-gradient(90deg, #3b82f6, #2563eb) !important;
}

/* Certificate Slider Styles */
.certificates-container {
    position: relative;
    scroll-behavior: smooth;
}

.certificates-container::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.certificate-slide {
    flex: 0 0 auto;
}

.certificate-item {
    position: relative;
    width: 224px; /* 280px * 0.8 = 224px (%20 küçültüldü) */
    transition: all 0.1s ease;
}

.certificate-image-wrapper {
    position: relative;
    width: 100%;
    height: 288px; /* 360px * 0.8 = 288px (%20 küçültüldü) */
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.1s ease;
}

/* Dark overlay on images */
.certificate-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

/* Hover effects */
.certificate-item:hover .certificate-image-wrapper {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
}

.certificate-item:hover .certificate-image-wrapper::before {
    opacity: 0;
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certificate-item:hover .certificate-image {
    transform: scale(1.08);
}

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85) 0%, rgba(139, 92, 246, 0.85) 50%, rgba(236, 72, 153, 0.85) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 1rem;
}

.certificate-item:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.1s ease;
}

.certificate-item:hover .certificate-overlay-content {
    transform: translateY(0);
}

.certificate-info {
    padding: 1.5rem 0;
    text-align: center;
}

.certificate-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.certificate-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Navigation Buttons */
.nav-button {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
    color: rgba(255, 255, 255, 0.6);
}

.nav-button:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.animate-pulse-slow {
    animation: pulse-slow 6s ease-in-out infinite;
}

/* Team Cards */
.team-card {
    position: relative;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.75rem;
    transition: all 0.1s ease;
    text-align: center;
    overflow: hidden;
}

.team-card > * {
    position: relative;
    z-index: 2;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

.team-card:hover::before {
    opacity: 0;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.team-card:hover .team-image {
    transform: scale(1.08);
}

.team-card:hover .team-image-overlay {
    opacity: 0;
}

.team-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.team-card:hover .team-image-glow {
    opacity: 1;
}

.team-stat-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.75rem;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
}

.team-stat-card > * {
    position: relative;
    z-index: 2;
}

.team-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

.team-stat-card:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    transform: translateY(-3px);
}

.team-stat-card:hover::before {
    opacity: 0;
}

.bg-gradient-green {
    background: linear-gradient(90deg, #10b981, #059669) !important;
}

.bg-gradient-navy {
    background: linear-gradient(90deg, #1e3a8a, #1e40af) !important;
}

/* Partner Section Styles */
.partner-item {
    position: relative;
    transition: all 0.1s ease;
}

.partner-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.1s ease;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.partner-item:hover .partner-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

.partner-item:hover .partner-card::before {
    opacity: 1;
}

.partner-logo {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.1s ease;
    position: relative;
    z-index: 2;
}

.partner-item:hover .partner-logo {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Partner Mobile Responsive */
@media (max-width: 768px) {
    .partner-card {
        padding: 1.5rem;
        height: 120px;
    }
    
    .partner-logo {
        max-width: 80px;
        max-height: 60px;
    }
}

.bg-gradient-orange {
    background: linear-gradient(90deg, #f97316, #ea580c) !important;
}

/* Facility Section Styles */
.facility-item {
    position: relative;
    transition: all 0.1s ease;
}

.facility-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.1s ease;
}

.facility-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    z-index: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.1s ease;
}

.play-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8c1333, #a01545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(140, 19, 51, 0.4);
    transition: all 0.1s ease;
}

.play-icon svg {
    margin-left: 4px;
    color: white;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover .play-icon {
    box-shadow: 0 8px 30px rgba(140, 19, 51, 0.6);
}

.location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.location-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8c1333, #a01545);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.location-badge span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.facility-info {
    padding: 1.5rem;
    text-align: center;
}

.facility-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8c1333;
    margin-bottom: 0.5rem;
}

.facility-size {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.facility-item:hover .facility-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.facility-item:hover .facility-image {
    transform: scale(1.05);
}

/* ========================================
   ANIMATION INITIAL STATES
   Hide elements that will be animated
   ======================================== */

/* Aviation Page */
#aviation-section1 .hero-badge,
#aviation-section1 .hero-title,
#aviation-section1 .hero-description,
#aviation-section1 .btn-glass,
#aviation-section2 .hero-badge,
#aviation-section2 h2,
#aviation-section2 .aviation-tab,
#aviation-section2 .aviation-card,
#aviation-section3 .hero-badge,
#aviation-section3 h2,
#aviation-section3 .facility-item,
#aviation-section3 .play-button,
#aviation-section4 .hero-badge,
#aviation-section4 h2,
#aviation-section4 .content-text-sm,
#aviation-section4 .btn-glass,
#aviation-section4 model-viewer,

/* Glassmold Page */
#glassmold-section1 .hero-badge,
#glassmold-section1 .hero-title,
#glassmold-section1 .hero-description,
#glassmold-section1 .btn-glass,
#glassmold-section1 .stat-item,
#glassmold-section2 .hero-badge,
#glassmold-section2 h2,
#glassmold-section2 .glassmold-tab,
#glassmold-section2 .glassmold-card,
#glassmold-section3 .hero-badge,
#glassmold-section3 h2,
#glassmold-section3 .facility-item,
#glassmold-section3 .play-button,
#glassmold-section4 .hero-badge,
#glassmold-section4 h2,
#glassmold-section4 .content-text-sm,
#glassmold-section4 .btn-glass,
#glassmold-section4 model-viewer,

/* Capabilities Page */
#capabilities-section1 .hero-badge,
#capabilities-section1 .hero-title,
#capabilities-section1 .hero-description,
#capabilities-section1 .btn-glass,
#capabilities-section1 .stat-item,
#capabilities-section2 .hero-badge,
#capabilities-section2 h2,
#capabilities-section2 .capability-gallery-card,
#capabilities-section3 .hero-badge,
#capabilities-section3 h2,
#capabilities-section3 .gradient-text-animated,
#capabilities-section3 .grid > div,
#capabilities-section3 .space-y-2 > div,
#capabilities-section4 .hero-badge,
#capabilities-section4 h2,
#capabilities-section4 .gradient-text-animated,
#capabilities-section4 .grid > div,
#capabilities-section4 .space-y-2 > div,
#capabilities-section5 .hero-badge,
#capabilities-section5 h2,
#capabilities-section5 .gradient-text-animated,
#capabilities-section5 .grid > .group,
#capabilities-section5 .space-y-2 > div,
#capabilities-section6 .hero-badge,
#capabilities-section6 h2,
#capabilities-section6 .gradient-text-animated,
#capabilities-section6 .bg-gradient-to-br,
#capabilities-section6 .space-y-6,
#capabilities-section6 .w-20.h-20,
#capabilities-section6 .font-mono,

/* Careers Page */
#careers-section1 .hero-badge,
#careers-section1 .hero-title,
#careers-section1 .hero-description,
#careers-section1 .btn-glass,
#careers-section1 .career-feature,
#careers-section2 .hero-badge,
#careers-section2 h2,
#careers-section2 .career-form-container,
#careers-section2 .gradient-text-animated,
#careers-section2 .space-y-3 > div,
#careers-section2 .space-y-4 > div,
#careers-section2 button[type="submit"],
/* #careers-section3 .team-card,
#careers-section3 .benefit-card, */
/* Contact Page */
#contact-section1 .hero-badge,
#contact-section1 .hero-title,
#contact-section1 .hero-description,
#contact-section1 .btn-glass,
#contact-section1 .contact-quick-card,
#contact-section2 .hero-badge,
#contact-section2 h2,
#contact-section2 .contact-form-container,
#contact-section2 .form-group,
#contact-section2 .contact-info-card,
#contact-section2 iframe,
#contact-section2 .bg-gradient-to-r,
#contact-section2 .grid > div:first-child,
#contact-section2 .grid > div:last-child,
#contact-section2 input,
#contact-section2 textarea,
#contact-section3 .hero-badge,
#contact-section3 h2,
#contact-section3 .gradient-text-animated,
#contact-section3 .facility-item,
#contact-section3 .play-button,
#contact-section3 .location-badge,
#contact-section4 .hero-badge,
#contact-section4 h2,
#contact-section4 .gradient-text-animated,
#contact-section4 .partner-item,
#contact-section4 .partner-card {
    opacity: 0;
}

/* Facility Stats */
.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(79, 70, 229, 0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Facility Mobile Responsive */
@media (max-width: 768px) {
    .facility-image-wrapper {
        height: 200px;
    }
    
    .play-button {
        width: 56px;
        height: 56px;
    }
    
    .stat-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
}

/* Blog Section Styles */
.blog-item {
    position: relative;
    height: 100%;
}

.blog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.1s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1.5rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.15s ease;
}

.blog-item:hover .blog-card::before {
    opacity: 0.2;
}

.blog-item:hover .blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.blog-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.7s ease;
}

.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

/* Aviation Showcase Styles */
.aviation-tabs {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.25rem;
    gap: 0.25rem;
}

.aviation-tab {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    overflow: hidden;
}

.aviation-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.aviation-tab.active {
    background: linear-gradient(135deg, #0284c7, #0ea5e9);
    color: white;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.aviation-tab.active[data-tab="baykar"] {
    background: linear-gradient(135deg, #8c1333, #a01545);
    box-shadow: 0 0 20px rgba(140, 19, 51, 0.4);
}

/* Glassmold Tabs - Similar to Aviation */
.glassmold-tabs {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.25rem;
    gap: 0.25rem;
    flex-wrap: wrap;
    max-width: 100%;
}
.glassmold-tab {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.1s ease;
    white-space: nowrap;
}
.glassmold-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}
.glassmold-tab.active {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Glassmold Products */
.glassmold-products-container {
    position: relative;
    min-height: 500px;
}
.glassmold-products {
    display: none;
    animation: fadeIn 0.5s ease;
}
.glassmold-products.active {
    display: block;
}
.glassmold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.glassmold-grid-3 {
    max-width: 900px;
}
@media (min-width: 1024px) {
    .glassmold-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Glassmold Slider */
.glassmold-slider-container {
    max-width: 1200px;
    margin: 0 auto;
}
.glassmold-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.glassmold-slider::-webkit-scrollbar {
    display: none;
}
.glassmold-slider .glassmold-card {
    flex: 0 0 280px;
}

/* Glassmold Navigation Controls */
.glassmold-nav-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.glassmold-nav-btn {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
}
.glassmold-nav-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.1);
}

/* Glassmold Card */
.glassmold-card {
    position: relative;
}
.glassmold-card-inner {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.15s ease;
}
.glassmold-card:hover .glassmold-card-inner {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}
.glassmold-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(to bottom, rgba(139, 92, 246, 0.05), transparent);
    overflow: hidden;
}
.glassmold-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.5s ease;
}
.glassmold-card:hover .glassmold-card-image img {
    transform: scale(1.1);
}
.glassmold-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: #c084fc;
    font-weight: 500;
    letter-spacing: 0.025em;
}
.glassmold-card-badge.purple {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    color: #c084fc;
}
.glassmold-card-content {
    padding: 1.25rem;
    text-align: center;
}
.glassmold-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

/* ==================================
   UNIFIED PRODUCT CARD SYSTEM
   For both Aviation and Glassmold sections
   ================================== */

/* Product Tabs - Common styles for all product sections */
.product-tabs {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.25rem;
    gap: 0.25rem;
    overflow-x: auto;
    max-width: 100%;
}

.product-tab {
    padding: 0.5rem 1.25rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.product-tab.active {
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Tab color variations - Kurumsal renkler */
.product-tab {
    background: transparent;
    transition: all 0.3s ease;
}

.product-tab.active {
    background: linear-gradient(135deg, var(--tab-color, #8c1333), var(--tab-color-light, #a01545));
    box-shadow: 0 0 20px color-mix(in srgb, var(--tab-color, #8c1333) 40%, transparent);
}

/* Aerospace tabs - all blue theme */
.product-tab.active[data-tab="tusas"],
.product-tab.active[data-tab="airbus"],
.product-tab.active[data-tab="boeing"],
.product-tab.active[data-tab="bombardier"],
.product-tab.active[data-tab="aselsan"],
.product-tab.active[data-tab="roketsan"],
.product-tab.active[data-tab="baykar"],
.product-tab.active[data-tab="alp"] {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.4);
}

/* Glass industry tabs - purple theme */
.product-tab.active[data-tab="blow"],
.product-tab.active[data-tab="press"],
.product-tab.active[data-tab="spinning"],
.product-tab.active[data-tab="stemware"],
.product-tab.active[data-tab="engraving"],
.product-tab.active[data-tab="spare"] {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

/* Product Container */
.product-container {
    position: relative;
    min-height: 450px;
}

.product-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
}

.product-grid.active {
    display: block;
}

/* Product Slider Container */
.product-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.product-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* Product Card - Universal design */
.product-card {
    position: relative;
    flex: 0 0 280px;
}

.product-card-inner {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Hover color variations based on section */
.aviation-section .product-card:hover .product-card-inner {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.glassmold-section .product-card:hover .product-card-inner {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.product-card-image {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent);
}

.product-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-image::before {
    opacity: 1;
}

.product-card-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

/* Product Badge */
.product-card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.875rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* Badge color variations */
/* Badge color variations - Glassmorphism style */
.product-card-badge.purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #c084fc;
}

.product-card-badge.blue {
    background: rgba(30, 58, 138, 0.15);
    border-color: rgba(30, 58, 138, 0.3);
    color: #93bbfc;
}

/* Brand Badges Container */
.brand-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.brand-badges .product-card-badge {
    position: static;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: default;
}

.brand-badges .product-card-badge:hover {
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
    .brand-badges {
        gap: 0.5rem;
    }
    
    .brand-badges .product-card-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
    }
}

/* Product Content */
.product-card-content {
    padding: 1.25rem;
    text-align: center;
}

.product-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    margin: 0;
}

.product-card-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Navigation Controls */
.product-nav-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.product-nav-btn {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: scale(1.1);
}

/* Mobile Responsive for Product Cards */
@media (max-width: 768px) {
    .product-tabs {
        width: 100%;
        justify-content: flex-start;
        padding: 0.125rem;
    }
    
    .product-tab {
        padding: 0.375rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .product-card {
        flex: 0 0 250px;
    }
    
    .product-card-image {
        height: 180px;
    }
    
    .product-card-badge {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
    }
    
    .product-card-content {
        padding: 1rem;
    }
    
    .product-card-content h3 {
        font-size: 0.875rem;
    }
    
    .product-nav-controls {
        margin-top: 1rem;
    }
    
    .product-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* Capabilities Marquee Gallery */
.capabilities-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.capabilities-marquee-content {
    display: flex;
    gap: 2rem;
    animation: scroll-right 30s linear infinite;
}

.capabilities-marquee-reverse .capabilities-marquee-content {
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.capability-card {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.capability-card:hover .capability-image img {
    transform: scale(1.1);
}

.capability-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.1s ease;
}

.capability-card:hover .capability-overlay {
    transform: translateY(0);
}

.capability-overlay h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.capability-overlay p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Pause on hover */
.capabilities-marquee:hover .capabilities-marquee-content {
    animation-play-state: paused;
}

/* Capability Gallery Styles */
.capability-gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
    cursor: pointer;
}

.capability-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.capability-gallery-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.capability-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.capability-gallery-card:hover .capability-gallery-image img {
    transform: scale(1.1);
}

.capability-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.capability-gallery-card:hover .capability-gallery-overlay {
    opacity: 1;
}

.capability-gallery-content {
    transform: translateY(20px);
    transition: transform 0.1s ease;
}

.capability-gallery-card:hover .capability-gallery-content {
    transform: translateY(0);
}

.capability-gallery-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.capability-gallery-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}


/* Production Card Styles */
.production-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.1s ease;
}

.production-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-5px);
}

.production-card-inner {
    padding: 2rem;
    position: relative;
}

.production-icon {
    display: inline-flex;
    padding: 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    color: #a855f7;
    margin-bottom: 1.5rem;
    transition: all 0.1s ease;
}

.production-card:hover .production-icon {
    background: rgba(147, 51, 234, 0.2);
    transform: scale(1.1);
}

.production-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.production-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.production-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.production-feature {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #a855f7;
    font-weight: 500;
}

/* Glassmold Lightbox */
.glassmold-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.glassmold-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    animation: scaleIn 0.3s ease;
}
.glassmold-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}
.glassmold-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
    z-index: 10;
}
.glassmold-lightbox-close:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: scale(1.1);
}
.glassmold-lightbox-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}
@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Glassmold card image cursor */
.glassmold-card-image {
    cursor: pointer;
}

/* Aviation Products Container */
.aviation-products-container {
    position: relative;
    min-height: 450px;
}

.aviation-products {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    animation: fadeIn 0.5s ease;
}

.aviation-products.active {
    display: block;
}

.aviation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.aviation-grid-3 {
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .aviation-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Aviation Slider */
.aviation-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 20px 0;
    overflow: visible;
}

.aviation-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.aviation-slider::-webkit-scrollbar {
    display: none;
}

.aviation-slider .aviation-card {
    flex: 0 0 280px;
}

/* Navigation Controls */
.aviation-nav-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.aviation-nav-btn {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s ease;
}

.aviation-nav-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

/* Aviation Card */
.aviation-card {
    position: relative;
    group: true;
    height: 100%;
}

.aviation-card-inner {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.15s ease;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.aviation-card:hover .aviation-card-inner {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.aviation-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.02), transparent);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 1rem 1rem 1rem; /* 40px top padding for vertical centering */
}

.aviation-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

.aviation-card-image:hover::after {
    opacity: 1;
}


.aviation-card-image img {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.aviation-card:hover .aviation-card-image img {
    transform: scale(1.08);
}

.aviation-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    font-size: 0.625rem;
    color: #60a5fa;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.aviation-card-badge.burgundy {
    background: rgba(140, 19, 51, 0.15);
    border-color: rgba(140, 19, 51, 0.2);
    color: #f87171;
}

.aviation-card-badge.aselsan {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.aviation-card-content {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.aviation-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

/* Aviation Stats */
.aviation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
}

.aviation-stat {
    text-align: center;
}

.aviation-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.aviation-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .aviation-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .aviation-card-image {
        height: 150px;
    }
    
    .aviation-stats {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .aviation-stat-number {
        font-size: 1.5rem;
    }
}

/* Date Badge */
.date-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    transition: all 0.1s ease;
}

.date-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.blog-item:hover .date-badge {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.blog-item:hover .blog-image {
    transform: scale(1.1);
    opacity: 1;
}

.blog-content {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Blog meta removed - using date badge instead */

/* Blog category removed */

/* Blog date moved to date badge */

/* ========================================
   QUALITY SECTION STYLES
   ======================================== */

.quality-card-item {
    position: relative;
}

.quality-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.1s ease;
}

.quality-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.quality-icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.quality-icon-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    filter: blur(15px);
    opacity: 0.3;
    z-index: -1;
}

.quality-icon-box.gradient-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
}

.quality-icon-box.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.quality-icon-box.gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.quality-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.quality-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.quality-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.1s ease;
    width: 100%;
    justify-content: center;
}

.quality-btn:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
    color: #14b8a6;
}

.quality-btn:hover i {
    transform: translateX(5px);
}

/* Certifications */
.certifications-container {
    margin-top: 3rem;
}

.cert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.1s ease;
}

.cert-card:hover {
    background: rgba(20, 184, 166, 0.05);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateY(-5px);
}

.cert-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
}

.cert-name {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-align: center;
}

/* Policy Modal */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease;
}

.policy-modal.active {
    opacity: 1;
    visibility: visible;
}

.policy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.policy-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.1s ease;
}

.policy-modal.active .policy-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.policy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
    z-index: 10;
}

.policy-modal-close:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: rgba(20, 184, 166, 0.3);
    transform: rotate(90deg);
}

.policy-modal-header {
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.policy-modal-body {
    padding: 2rem 3rem;
    overflow-y: auto;
    flex: 1;
}

.policy-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #14b8a6;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-content h4:first-child {
    margin-top: 0;
}

.policy-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.policy-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.policy-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #14b8a6;
}

.policy-modal-footer {
    padding: 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.policy-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 0.75rem;
    color: #14b8a6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.1s ease;
}

.policy-download-btn:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: #14b8a6;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quality-card {
        padding: 1.5rem;
    }
    
    .quality-card-title {
        font-size: 1.25rem;
    }
    
    .cert-logo {
        width: 60px;
        height: 60px;
    }
    
    .policy-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .policy-modal-header,
    .policy-modal-body,
    .policy-modal-footer {
        padding: 1.5rem;
    }
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.blog-item:hover .blog-title {
    color: #3b82f6;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    transition: all 0.1s ease;
}

.blog-link:hover {
    color: #60a5fa;
    gap: 0.75rem;
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.125rem;
    }
    
    .blog-excerpt {
        font-size: 0.813rem;
    }
}

.section-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    opacity: 0.8;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.1s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Minimal Glass Card - More Corporate */
.glass-card-minimal {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-minimal:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(140, 19, 51, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* Glass Card Hover Effect */
.glass-card-hover {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.glass-card-hover:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
}

/* Content Card */
.content-card {
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(140, 19, 51, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: opacity 0.15s ease;
    opacity: 0;
}

.content-card:hover::before {
    opacity: 1;
}

/* Value Badge */
.value-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(140, 19, 51, 0.1);
    border: 1px solid rgba(140, 19, 51, 0.3);
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.1s ease;
}

.value-badge:hover {
    background: rgba(140, 19, 51, 0.2);
    border-color: rgba(140, 19, 51, 0.5);
    transform: translateY(-2px);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite ease-in-out;
}

.floating-1 {
    background: rgba(140, 19, 51, 0.3);
    top: -150px;
    right: -150px;
}

.floating-2 {
    background: rgba(160, 21, 69, 0.3);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Content Section Styles */
.content-wrapper {
    padding: 0 2rem;
}

.content-section h3 {
    letter-spacing: -0.02em;
}

.particle-canvas-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* Title Sizes */
.title-md {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* Responsive */
@media (max-width: 768px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .section-content.grid {
        gap: 2rem;
    }
    
    .content-card {
        padding: 1.5rem !important;
    }
    
    .value-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .content-section h3 {
        font-size: 1.75rem;
    }
}

/* About Team Section Initial States for Animation */
#about-section4 .text-center.mb-8,
#about-section4 .team-card,
#about-section4 .text-center.mt-8 {
    opacity: 0;
}

/* Careers Section3 (uses about-team.php) Initial States */
#careers-section3 .text-center.mb-8,
#careers-section3 .team-card,
#careers-section3 .text-center.mt-8 {
    opacity: 0;
}

/* About Section8 (News/Blog) Initial States */
#about-section8 .hero-badge,
#about-section8 h2 span,
#about-section8 .content-text-sm,
#about-section8 .news-item,
#about-section8 .btn-glass {
    opacity: 0;
}

/* Mobile Animation Optimization */
@media (max-width: 768px) {
    /* Force all product grids to become sliders on mobile */
    .glassmold-grid,
    .aviation-grid {
        display: flex !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        grid-template-columns: none !important;
        max-width: 100% !important;
    }
    
    .glassmold-grid::-webkit-scrollbar,
    .aviation-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .glassmold-grid .glassmold-card,
    .aviation-grid .aviation-card {
        flex: 0 0 250px !important;
        min-width: 250px !important;
    }
    
    /* Ensure navigation controls are always visible on mobile */
    .glassmold-nav-controls,
    .aviation-nav-controls {
        display: flex !important;
        margin-top: 1rem !important;
    }
    
    /* Reduce animation delays on mobile */
    .animate-pulse-slow {
        animation-duration: 10s !important;
    }
    
    /* Simplify animations on mobile */
    #about-section4 .text-center.mb-8,
    #about-section4 .team-card,
    #about-section4 .text-center.mt-8,
    #careers-section3 .text-center.mb-8,
    #careers-section3 .team-card,
    #careers-section3 .text-center.mt-8,
    #about-section8 .hero-badge,
    #about-section8 h2 span,
    #about-section8 .content-text-sm,
    #about-section8 .news-item,
    #about-section8 .btn-glass {
        opacity: 1 !important;
        animation: fadeInUp 0.6s ease-out;
    }
}

/* About Page Initial State - Let GSAP handle animations */
#about-section1 .counter {
    display: inline-block;
    min-width: 2ch; /* Prevent layout shift during counting */
}

/* Ensure particle canvas is positioned correctly */
#about-section1 .particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* About page sections - Initial state for GSAP animations */
/* Hero section */
#about-section1 .hero-badge,
#about-section1 .gradient-text-animated,
#about-section1 .hero-description,
#about-section1 .hero-stats,
#about-section1 .stat-item,

/* Vision-Mission section - Sadece animasyonlu elementler */
#about-section2 .hero-badge,
#about-section2 .content-section h3, /* Vizyon ve Misyon başlıkları */
#about-section2 .content-section:first-child > p, /* Vizyon paragrafı */
#about-section2 .content-section:first-child .space-y-4 > div, /* Vizyon itemleri */
#about-section2 .content-section:last-child .space-y-6 > div, /* Misyon itemleri */
#about-section2 .content-section:last-child p, /* Misyon paragrafları */

/* Certificates section */
#about-section3 .hero-badge,
#about-section3 h2 span,
#about-section3 .content-text-sm,
#about-section3 .certificate-slide,
#about-section3 .nav-button,

/* Team section */
#about-section4 .text-center.mb-8,
#about-section4 .team-card,
#about-section4 .text-center.mt-8,

/* Partners section */
#about-section5 .hero-badge,
#about-section5 h2 span,
#about-section5 .content-text-sm,
#about-section5 .partner-item,
#about-section5 h3,

/* Facilities section */
#about-section6 .hero-badge,
#about-section6 h2 span,
#about-section6 .facility-item,
#about-section6 .text-center,

/* Quality section */
#about-section7 .hero-badge,
#about-section7 h2 span,
#about-section7 .quality-card-item,

/* News section */
#about-section8 .hero-badge,
#about-section8 h2 span,
#about-section8 .content-text-sm,
#about-section8 .news-item,
#about-section8 .btn-glass {
    opacity: 0;
}