/* Genel Sıfırlama ve Renk Değişkenleri */
:root {
    /* Evrensel Renkler */
    --accent-color: #0071e3;

    /* Koyu Tema Değişkenleri (Varsayılan) */
    --dark-bg: #000000;
    --dark-bg-alt: #111111;
    --dark-text-primary: #f5f5f7;
    --dark-text-secondary: #a1a1a6;
    --dark-border: rgba(255, 255, 255, 0.2);

    /* Açık Tema Değişkenleri */
    --light-bg: #f9f9f9;
    --light-text-primary: #1d1d1f;
    --light-text-secondary: #515154;
    --light-border: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--dark-bg); /* Sayfa varsayılan olarak koyu başlar */
    color: var(--dark-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease;
}

/* Accessibility: Focus states */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Skip to main content for screen readers */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-to-main:focus {
    top: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Header ve Navigasyon (Her zaman koyu kalacak) */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 34, 68, 0.85); /* Parlement Mavisi */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 36px;
    width: auto;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-button {
    color: var(--dark-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--dark-text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.lang-btn:hover::before {
    width: 100px;
    height: 100px;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.lang-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.5);
    transform: scale(1.05);
}

.lang-btn.active::before {
    display: none;
}

.lang-btn > * {
    position: relative;
    z-index: 1;
}

.lang-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
        padding: 10px 0;
        border-top: 1px solid var(--dark-border);
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .lang-btn {
        font-size: 0.8125rem;
        padding: 5px 10px;
        min-width: 36px;
    }
    
    .lang-btn:hover {
        transform: none;
    }
    
    .lang-btn.active {
        transform: scale(1.02);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark-text-primary);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color) 0%, #8a2be2 100%);
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 113, 227, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
}

.back-to-top:hover {
    background: #005bb5;
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 113, 227, 0.6);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

/* Toast Notification Container */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    border-left-color: #00ff7f;
}

.toast.error {
    border-left-color: #ff4444;
}

.toast.warning {
    border-left-color: #ffaa00;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.toast-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
}

/* Micro-interactions */
.nav-button,
.hero-btn,
.showcase-button,
.cta-button {
    position: relative;
    overflow: hidden;
}

.nav-button::before,
.hero-btn::before,
.showcase-button::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-button:active::before,
.hero-btn:active::before,
.showcase-button:active::before,
.cta-button:active::before {
    width: 300px;
    height: 300px;
}

/* Smooth page transitions */
.page-transition-enter {
    animation: pageFadeIn 0.4s ease-out;
}

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

/* Enhanced hover effects */
.feature-card,
.gallery-item {
    position: relative;
}

.feature-card::after,
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
}

.feature-card:hover::after,
.gallery-item:hover::after {
    opacity: 1;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Ana İçerik Bölümleri */
main {
    padding-top: 60px;
    position: relative;
    z-index: 1;
}

section {
    padding: 120px 0;
    text-align: center;
    transition: background-color 0.5s ease;
}

/* Tema Sınıfları */
.section-dark {
    background-color: var(--dark-bg);
    color: var(--dark-text-primary);
}
.section-dark.alt {
    background-color: var(--dark-bg-alt);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--dark-text-primary); }
.section-dark p { color: var(--dark-text-secondary); }

.section-light {
    background-color: var(--light-bg);
    color: var(--light-text-primary);
}
.section-light h1, .section-light h2, .section-light h3 { color: var(--light-text-primary); }
.section-light p { color: var(--light-text-secondary); }


/* Hero (Giriş) Bölümü */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('images/volta-team-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}
.hero-content h1 { font-size: 4rem; font-weight: 700; margin-bottom: 20px; }
.hero-content p { font-size: 1.5rem; font-weight: 300; }

/* Hakkında Bölümü */
.about-content h2 { font-size: 3rem; margin-bottom: 30px; }
.about-content p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; }

/* Kaydırmalı Metin ve Resim Bölümü */
.scrolling-text-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.scrolling-text-content img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.scrolling-text-content h3 { font-size: 2.5rem; margin-bottom: 20px; }
.scrolling-text-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* Footer (Alt Bilgi) */
.site-footer {
    padding: 40px 0;
    text-align: center;
}
.section-light .site-footer { border-top: 1px solid var(--light-border); }
.section-dark .site-footer { border-top: 1px solid var(--dark-border); }


/* Sayfa İçi Animasyon */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.645, 0.045, 0.355, 1), transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }

/* Mobil Uyumlu Tasarım */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.2rem; }
    .about-content h2, .scrolling-text-content h3 { font-size: 2rem; }
    .about-content p, .scrolling-text-content p { font-size: 1rem; }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 34, 68, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        overflow-y: auto;
        padding: 40px 20px;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .site-header nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 0;
    }
    
    .site-header nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-button {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        text-align: left;
        border-radius: 0;
        width: 100%;
    }
    
    .nav-button:hover {
        background-color: rgba(0, 113, 227, 0.2);
        color: var(--dark-text-primary);
    }
    
    .site-header .container {
        height: 60px;
    }
    
    /* Back to Top Button Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Toast Mobile */
    #toast-container {
        right: 10px;
        left: 10px;
        top: 70px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* ======================================= */
/* == SAYFA GEÇİŞ ANİMASYONLARI (BÖLÜM 1: ROKET) == */
/* ======================================= */

#page-transition-overlay-rocket {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, 
        #0a0e27 0%,
        #1a1f3a 25%,
        #2d1b4e 50%,
        #1a1f3a 75%,
        #0a0e27 100%
    );
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    overflow: hidden;
}

#page-transition-overlay-rocket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 25, 112, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

#page-transition-overlay-rocket.visible {
    opacity: 1;
    pointer-events: all;
}

.rocket-transition-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.transition-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9),
                0 0 12px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(135, 206, 250, 0.4);
    animation: transitionStarTwinkle 3s ease-in-out infinite;
}

.transition-star:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.transition-star:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -0.5s;
    width: 4px;
    height: 4px;
}

.transition-star:nth-child(3) {
    bottom: 40%;
    left: 25%;
    animation-delay: -1s;
    width: 3px;
    height: 3px;
}

.transition-star:nth-child(4) {
    top: 50%;
    right: 30%;
    animation-delay: -1.5s;
    width: 5px;
    height: 5px;
}

.transition-star:nth-child(5) {
    bottom: 25%;
    right: 20%;
    animation-delay: -2s;
    width: 2px;
    height: 2px;
}

.transition-star:nth-child(6) {
    top: 30%;
    left: 50%;
    animation-delay: -0.3s;
    width: 3px;
    height: 3px;
}

.transition-star:nth-child(7) {
    bottom: 15%;
    left: 15%;
    animation-delay: -1.2s;
    width: 4px;
    height: 4px;
}

.transition-star:nth-child(8) {
    top: 65%;
    right: 45%;
    animation-delay: -0.8s;
    width: 2px;
    height: 2px;
}

.transition-star:nth-child(9) {
    bottom: 50%;
    left: 60%;
    animation-delay: -1.8s;
    width: 3px;
    height: 3px;
}

.transition-star:nth-child(10) {
    top: 15%;
    right: 60%;
    animation-delay: -0.6s;
    width: 4px;
    height: 4px;
}

.transition-star:nth-child(11) {
    bottom: 30%;
    right: 10%;
    animation-delay: -1.4s;
    width: 2px;
    height: 2px;
}

.transition-star:nth-child(12) {
    top: 75%;
    left: 30%;
    animation-delay: -0.9s;
    width: 3px;
    height: 3px;
}

.transition-star:nth-child(13) {
    bottom: 10%;
    left: 45%;
    animation-delay: -1.6s;
    width: 5px;
    height: 5px;
}

.transition-star:nth-child(14) {
    top: 45%;
    right: 25%;
    animation-delay: -0.4s;
    width: 2px;
    height: 2px;
}

.transition-star:nth-child(15) {
    bottom: 60%;
    left: 70%;
    animation-delay: -1.1s;
    width: 4px;
    height: 4px;
}

.transition-star:nth-child(16) {
    top: 5%;
    left: 35%;
    animation-delay: -0.7s;
    width: 3px;
    height: 3px;
}

.transition-star:nth-child(17) {
    bottom: 5%;
    right: 35%;
    animation-delay: -1.3s;
    width: 2px;
    height: 2px;
}

.transition-star:nth-child(18) {
    top: 55%;
    left: 20%;
    animation-delay: -0.2s;
    width: 4px;
    height: 4px;
}

.transition-star:nth-child(19) {
    bottom: 45%;
    right: 50%;
    animation-delay: -1.7s;
    width: 3px;
    height: 3px;
}

.transition-star:nth-child(20) {
    top: 85%;
    left: 80%;
    animation-delay: -0.5s;
    width: 2px;
    height: 2px;
}

@keyframes transitionStarTwinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5),
                    0 0 12px rgba(255, 255, 255, 0.3),
                    0 0 20px rgba(135, 206, 250, 0.2);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(255, 255, 255, 1),
                    0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 30px rgba(135, 206, 250, 0.6);
    }
}

#rocket-animation {
    width: 250px;
    height: auto;
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 10;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8)) 
            drop-shadow(0 0 60px rgba(0, 200, 255, 0.6));
    transition: filter 0.3s ease;
}

#page-transition-overlay-rocket.visible #rocket-animation {
    animation: flyOff 1.5s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
    filter: drop-shadow(0 0 40px rgba(138, 43, 226, 1)) 
            drop-shadow(0 0 80px rgba(0, 200, 255, 0.8))
            drop-shadow(0 0 120px rgba(138, 43, 226, 0.4));
}

@keyframes flyOff {
    0% {
        bottom: -300px;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
    100% {
        bottom: 120vh;
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

/* ===================================== */
/* == SAYFA GEÇİŞ ANİMASYONLARI (BÖLÜM 2: ARABA) == */
/* ===================================== */

#page-transition-overlay-car {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

#page-transition-overlay-car.visible {
    opacity: 1;
    pointer-events: all;
}

#car-animation {
    width: 200px;
    height: auto;
    position: absolute;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

#page-transition-overlay-car.visible #car-animation {
    animation: driveAcross 1.5s cubic-bezier(0.32, 0, 0.67, 0) forwards;
}

@keyframes driveAcross {
    0% {
        left: -250px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        left: 110vw;
        opacity: 1;
    }
}

/* ===================================== */
/* == SAYFA GEÇİŞ ANİMASYONLARI (BÖLÜM 3: LOGO) == */
/* ===================================== */

#page-transition-overlay-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    overflow: hidden;
}

#page-transition-overlay-logo.visible {
    opacity: 1;
    pointer-events: all;
}

#logo-animation {
    width: 200px;
    height: auto;
    position: relative;
    z-index: 10;
    opacity: 0;
    filter: drop-shadow(0 0 20px rgba(0, 113, 227, 0.6))
            drop-shadow(0 0 40px rgba(138, 43, 226, 0.4));
    transition: filter 0.3s ease;
}

#page-transition-overlay-logo.visible #logo-animation {
    animation: logoCrossDissolve 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: drop-shadow(0 0 30px rgba(0, 113, 227, 1))
            drop-shadow(0 0 60px rgba(138, 43, 226, 0.8))
            drop-shadow(0 0 90px rgba(0, 113, 227, 0.5));
}

@keyframes logoCrossDissolve {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: brightness(0.5) drop-shadow(0 0 10px rgba(0, 113, 227, 0.3));
    }
    15% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    30% {
        opacity: 1;
        transform: scale(1.1);
        filter: brightness(1.5) drop-shadow(0 0 40px rgba(0, 113, 227, 1))
                drop-shadow(0 0 80px rgba(138, 43, 226, 0.8));
    }
    50% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.2) drop-shadow(0 0 50px rgba(0, 113, 227, 1))
                drop-shadow(0 0 100px rgba(138, 43, 226, 0.9));
    }
    70% {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(1.3) drop-shadow(0 0 60px rgba(0, 113, 227, 1))
                drop-shadow(0 0 120px rgba(138, 43, 226, 1));
    }
    85% {
        opacity: 0.8;
        transform: scale(0.95);
        filter: brightness(1) drop-shadow(0 0 30px rgba(0, 113, 227, 0.8));
    }
    100% {
        opacity: 0;
        transform: scale(0.9);
        filter: brightness(0.3) drop-shadow(0 0 10px rgba(0, 113, 227, 0.2));
    }
}

/* ===================================== */
/* == YENİ EKLENDİ: İLETİŞİM SAYFASI STİLLERİ == */
/* ===================================== */

.contact-section {
    min-height: calc(100vh - 60px - 81px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: contactBgPulse 10s ease-in-out infinite;
}

@keyframes contactBgPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0071e3 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.contact-intro {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--light-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.3);
}

.submit-button {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.social-links-container {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--light-border);
}

.social-links-container h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: 40px;
    color: var(--light-text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--light-text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--light-border);
    min-width: 120px;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
    border-color: var(--accent-color);
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-icon span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form Message Styles */
.form-message {
    display: none;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: formMessageSlideIn 0.3s ease-out;
}

.form-message-success {
    background-color: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    color: #00ff7f;
}

.form-message-error {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

@keyframes formMessageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.button-loader {
    display: inline-block;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Image loading states */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --dark-text-primary: #ffffff;
        --dark-text-secondary: #ffffff;
        --light-text-primary: #000000;
        --light-text-secondary: #000000;
    }
}

/* ===================================== */
/* == ANIMATED BACKGROUND & HYDROGEN THEME == */
/* ===================================== */

/* Animated Background Particles */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 200, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(100, 200, 255, 0.06) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    opacity: 0.6;
}

.particle-layer:nth-child(2) {
    animation-delay: -7s;
    animation-duration: 25s;
    background: radial-gradient(circle at 60% 30%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(50, 180, 255, 0.08) 0%, transparent 50%);
}

.particle-layer:nth-child(3) {
    animation-delay: -14s;
    animation-duration: 30s;
    background: radial-gradient(circle at 90% 40%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 90%, rgba(100, 200, 255, 0.06) 0%, transparent 50%);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

/* Hydrogen Badge */
.hydrogen-badge {
    position: absolute;
    top: 120px;
    right: 60px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 113, 227, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50px;
    animation: badgePulse 3s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

.badge-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00c8ff;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.5);
    animation: h2Glow 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text-primary);
    letter-spacing: 0.5px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
    }
}

@keyframes h2Glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 200, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 200, 255, 0.8), 0 0 40px rgba(0, 200, 255, 0.4);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00c8ff;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.5);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Overlay Gradient */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 113, 227, 0.2) 0%,
        rgba(0, 200, 255, 0.15) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Hydrogen Showcase Section */
.hydrogen-showcase {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hydrogen-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hydrogen-molecule {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.2) 0%, transparent 70%);
    animation: moleculeFloat 15s ease-in-out infinite;
    filter: blur(40px);
}

.hydrogen-molecule:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hydrogen-molecule:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    width: 300px;
    height: 300px;
}

.hydrogen-molecule:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -10s;
    width: 250px;
    height: 250px;
}

@keyframes moleculeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.8);
        opacity: 0.4;
    }
}

.hydrogen-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hydrogen-badge-large {
    display: inline-block;
    margin-bottom: 30px;
    padding: 30px 50px;
    background: rgba(0, 113, 227, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 200, 255, 0.4);
    border-radius: 30px;
    animation: badgeLargePulse 4s ease-in-out infinite;
}

.h2-symbol {
    font-size: 5rem;
    font-weight: 900;
    color: #00c8ff;
    text-shadow: 0 0 40px rgba(0, 200, 255, 0.8),
                 0 0 80px rgba(0, 200, 255, 0.4);
    animation: h2LargeGlow 3s ease-in-out infinite;
    display: block;
    line-height: 1;
}

@keyframes badgeLargePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(0, 200, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(0, 200, 255, 0.6);
    }
}

@keyframes h2LargeGlow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(0, 200, 255, 0.8),
                     0 0 80px rgba(0, 200, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 60px rgba(0, 200, 255, 1),
                     0 0 120px rgba(0, 200, 255, 0.6),
                     0 0 160px rgba(0, 200, 255, 0.3);
    }
}

.hydrogen-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.hydrogen-feature {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hydrogen-feature:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 200, 255, 0.2);
}

.hydrogen-feature .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.5));
}

.hydrogen-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text-primary);
}

.hydrogen-feature p {
    font-size: 1rem;
    color: var(--dark-text-secondary);
    line-height: 1.6;
}

/* Hydrogen Power Section */
.hydrogen-power-section {
    position: relative;
    overflow: hidden;
}

.hydrogen-power-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 113, 227, 0.1) 0%, transparent 50%);
    animation: powerBackgroundPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes powerBackgroundPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hydrogen-indicator {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 200, 255, 0.2);
    border: 1px solid rgba(0, 200, 255, 0.4);
    border-radius: 20px;
}

.h2-small {
    font-size: 1.2rem;
    font-weight: 800;
    color: #00c8ff;
    text-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
    animation: h2SmallGlow 2s ease-in-out infinite;
}

@keyframes h2SmallGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 200, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 200, 255, 0.9), 0 0 35px rgba(0, 200, 255, 0.4);
    }
}

.power-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.power-stat {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.power-stat:hover {
    transform: translateY(-5px);
    background: rgba(0, 200, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.3);
}

.power-value {
    font-size: 2rem;
    font-weight: 800;
    color: #00c8ff;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    margin-bottom: 8px;
}

.power-label {
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for Hydrogen Theme */
@media (max-width: 768px) {
    .hydrogen-badge,
    .rocket-badge {
        top: 80px;
        right: 20px;
        padding: 8px 16px;
    }
    
    .badge-icon {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .h2-symbol,
    .rocket-symbol {
        font-size: 3.5rem;
    }
    
    .hydrogen-features,
    .rocket-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .power-stats {
        flex-direction: column;
    }
}

/* ===================================== */
/* == ROCKET THEME STYLES == */
/* ===================================== */

/* Rocket Badge */
.rocket-badge {
    position: absolute;
    top: 120px;
    right: 60px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(0, 113, 227, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 50px;
    animation: rocketBadgePulse 3s ease-in-out infinite;
}

.rocket-badge .badge-icon {
    font-size: 1.5rem;
    animation: rocketIconFloat 2s ease-in-out infinite;
}

@keyframes rocketBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
    }
}

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

/* Sky Theme - Gökyüzü Teması */
.sky-theme {
    background: linear-gradient(180deg, 
        #0a0e27 0%,
        #1a1f3a 25%,
        #2d1b4e 50%,
        #1a1f3a 75%,
        #0a0e27 100%
    ) !important;
    position: relative;
    overflow: hidden;
}

.sky-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 25, 112, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: skyPulse 15s ease-in-out infinite;
}

@keyframes skyPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.sky-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Rocket Showcase Section */
.rocket-showcase {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.rocket-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.star-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9),
                0 0 12px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(135, 206, 250, 0.4);
    animation: starTwinkle 4s ease-in-out infinite;
}

/* Farklı boyutlarda yıldızlar */
.star-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.star-particle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -0.5s;
    width: 4px;
    height: 4px;
}

.star-particle:nth-child(3) {
    bottom: 40%;
    left: 25%;
    animation-delay: -1s;
    width: 3px;
    height: 3px;
}

.star-particle:nth-child(4) {
    top: 50%;
    right: 30%;
    animation-delay: -1.5s;
    width: 5px;
    height: 5px;
}

.star-particle:nth-child(5) {
    bottom: 25%;
    right: 20%;
    animation-delay: -2s;
    width: 2px;
    height: 2px;
}

.star-particle:nth-child(6) {
    top: 30%;
    left: 50%;
    animation-delay: -0.3s;
    width: 3px;
    height: 3px;
}

.star-particle:nth-child(7) {
    bottom: 15%;
    left: 15%;
    animation-delay: -1.2s;
    width: 4px;
    height: 4px;
}

.star-particle:nth-child(8) {
    top: 65%;
    right: 45%;
    animation-delay: -0.8s;
    width: 2px;
    height: 2px;
}

.star-particle:nth-child(9) {
    bottom: 50%;
    left: 60%;
    animation-delay: -1.8s;
    width: 3px;
    height: 3px;
}

.star-particle:nth-child(10) {
    top: 15%;
    right: 60%;
    animation-delay: -0.6s;
    width: 4px;
    height: 4px;
}

.star-particle:nth-child(11) {
    bottom: 30%;
    right: 10%;
    animation-delay: -1.4s;
    width: 2px;
    height: 2px;
}

.star-particle:nth-child(12) {
    top: 75%;
    left: 30%;
    animation-delay: -0.9s;
    width: 3px;
    height: 3px;
}

.star-particle:nth-child(13) {
    bottom: 10%;
    left: 45%;
    animation-delay: -1.6s;
    width: 5px;
    height: 5px;
}

.star-particle:nth-child(14) {
    top: 45%;
    right: 25%;
    animation-delay: -0.4s;
    width: 2px;
    height: 2px;
}

.star-particle:nth-child(15) {
    bottom: 60%;
    left: 70%;
    animation-delay: -1.1s;
    width: 4px;
    height: 4px;
}

.star-particle:nth-child(16) {
    top: 5%;
    left: 35%;
    animation-delay: -0.7s;
    width: 3px;
    height: 3px;
}

.star-particle:nth-child(17) {
    bottom: 5%;
    right: 35%;
    animation-delay: -1.3s;
    width: 2px;
    height: 2px;
}

.star-particle:nth-child(18) {
    top: 55%;
    left: 20%;
    animation-delay: -0.2s;
    width: 4px;
    height: 4px;
}

.star-particle:nth-child(19) {
    bottom: 45%;
    right: 50%;
    animation-delay: -1.7s;
    width: 3px;
    height: 3px;
}

.star-particle:nth-child(20) {
    top: 85%;
    left: 80%;
    animation-delay: -0.5s;
    width: 2px;
    height: 2px;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.5),
                    0 0 12px rgba(255, 255, 255, 0.3),
                    0 0 20px rgba(135, 206, 250, 0.2);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(255, 255, 255, 1),
                    0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 30px rgba(135, 206, 250, 0.6);
    }
}

.rocket-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Rocket showcase arka plan görseli */
.rocket-showcase-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 3;
    pointer-events: none;
    border-radius: 50%;
    overflow: hidden;
    filter: blur(1px);
}

.rocket-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.rocket-badge-large {
    display: inline-block;
    margin-bottom: 30px;
    padding: 30px 50px;
    background: rgba(0, 113, 227, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 200, 255, 0.4);
    border-radius: 30px;
    animation: rocketBadgeLargePulse 4s ease-in-out infinite;
}

.rocket-symbol {
    font-size: 5rem;
    display: block;
    line-height: 1;
    animation: rocketSymbolFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.6));
}

@keyframes rocketBadgeLargePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(0, 200, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(0, 200, 255, 0.6);
    }
}

@keyframes rocketSymbolFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.6));
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
        filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.9));
    }
}

.rocket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.rocket-feature {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rocket-feature:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 200, 255, 0.2);
}

.rocket-feature .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.5));
    animation: rocketFeatureIcon 2s ease-in-out infinite;
}

@keyframes rocketFeatureIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.rocket-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text-primary);
}

.rocket-feature p {
    font-size: 1rem;
    color: var(--dark-text-secondary);
    line-height: 1.6;
}

/* Rocket Power Section */
.rocket-power-section {
    position: relative;
    overflow: hidden;
}

.rocket-power-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(75, 0, 130, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(25, 25, 112, 0.1) 0%, transparent 70%);
    animation: rocketPowerBackgroundPulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rocketPowerBackgroundPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.rocket-indicator {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 200, 255, 0.2);
    border: 1px solid rgba(0, 200, 255, 0.4);
    border-radius: 20px;
}

.rocket-small {
    font-size: 1.2rem;
    animation: rocketSmallFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.6));
}

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

/* ===================================== */
/* == APPLE STYLE DYNAMIC PAGES == */
/* ===================================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section - Apple Style */
.voltacar-hero,
.voltarocket-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

.voltarocket-hero.sky-theme {
    background: linear-gradient(180deg, 
        #0a0e27 0%,
        #1a1f3a 25%,
        #2d1b4e 50%,
        #1a1f3a 75%,
        #0a0e27 100%
    ) !important;
}

.voltarocket-hero.sky-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(25, 25, 112, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: skyPulse 15s ease-in-out infinite;
}

.hero-stars {
    z-index: 3;
}

.hero-stars .star-particle:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    width: 2px;
    height: 2px;
}

.hero-stars .star-particle:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: -0.4s;
    width: 4px;
    height: 4px;
}

.hero-stars .star-particle:nth-child(3) {
    bottom: 35%;
    left: 20%;
    animation-delay: -0.8s;
    width: 3px;
    height: 3px;
}

.hero-stars .star-particle:nth-child(4) {
    top: 45%;
    right: 25%;
    animation-delay: -1.2s;
    width: 5px;
    height: 5px;
}

.hero-stars .star-particle:nth-child(5) {
    bottom: 20%;
    right: 15%;
    animation-delay: -1.6s;
    width: 2px;
    height: 2px;
}

.hero-stars .star-particle:nth-child(6) {
    top: 35%;
    left: 45%;
    animation-delay: -0.2s;
    width: 3px;
    height: 3px;
}

.hero-stars .star-particle:nth-child(7) {
    bottom: 10%;
    left: 12%;
    animation-delay: -1.0s;
    width: 4px;
    height: 4px;
}

.hero-stars .star-particle:nth-child(8) {
    top: 60%;
    right: 40%;
    animation-delay: -0.6s;
    width: 2px;
    height: 2px;
}

.hero-stars .star-particle:nth-child(9) {
    bottom: 45%;
    left: 55%;
    animation-delay: -1.4s;
    width: 3px;
    height: 3px;
}

.hero-stars .star-particle:nth-child(10) {
    top: 12%;
    right: 55%;
    animation-delay: -0.3s;
    width: 4px;
    height: 4px;
}

.hero-stars .star-particle:nth-child(11) {
    bottom: 25%;
    right: 8%;
    animation-delay: -1.1s;
    width: 2px;
    height: 2px;
}

.hero-stars .star-particle:nth-child(12) {
    top: 70%;
    left: 25%;
    animation-delay: -0.7s;
    width: 3px;
    height: 3px;
}

.hero-stars .star-particle:nth-child(13) {
    bottom: 8%;
    left: 40%;
    animation-delay: -1.5s;
    width: 5px;
    height: 5px;
}

.hero-stars .star-particle:nth-child(14) {
    top: 50%;
    right: 20%;
    animation-delay: -0.1s;
    width: 2px;
    height: 2px;
}

.hero-stars .star-particle:nth-child(15) {
    bottom: 55%;
    left: 65%;
    animation-delay: -0.9s;
    width: 4px;
    height: 4px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    animation: heroImageReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: scale(1.1);
    filter: brightness(0.7);
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(1.1);
        filter: brightness(0.7) blur(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1) blur(0);
    }
}

.voltacar-hero .hero-image,
.voltarocket-hero .hero-image {
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--dark-text-primary);
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--dark-text-primary);
    border-bottom: 2px solid var(--dark-text-primary);
    transform: rotate(45deg);
    opacity: 0.7;
}

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

/* Introduction Section */
.intro-section {
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Sections - Apple Style */
.feature-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

/* Feature Section için modern card tasarımı */
.feature-section:not(.intro-section):not(.gallery-section):not(.hydrogen-showcase) {
    padding: 40px 0;
}

.feature-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    gap: 40px;
    padding: 0 40px;
    contain: layout style;
    will-change: contents;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15);
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.95) 0%,
        rgba(15, 15, 25, 0.9) 100%
    );
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    contain: layout style paint;
    border-radius: 24px;
    margin: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3),
                0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Görsellerin köşelerini yuvarlat ve hizala */
.feature-image-wrapper img.feature-image {
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/* Skeleton loader için */
.feature-image-wrapper.image-loading {
    background: linear-gradient(
        90deg,
        var(--dark-bg-alt) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        var(--dark-bg-alt) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.section-light .feature-image-wrapper.image-loading {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        rgba(0, 0, 0, 0.05) 50%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
}

.feature-image-wrapper.image-loaded {
    background: var(--dark-bg-alt);
}

.feature-image-wrapper.image-animated {
    animation: wrapperReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wrapperReveal {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.feature-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.section-light .feature-image-wrapper::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.section-light .feature-image-wrapper {
    background: linear-gradient(135deg, 
        rgba(240, 240, 240, 0.95) 0%,
        rgba(230, 230, 230, 0.9) 100%
    );
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Sky-theme için özel arka plan stilleri */
.sky-theme .feature-image-wrapper {
    background: linear-gradient(135deg, 
        rgba(10, 15, 30, 0.95) 0%,
        rgba(20, 25, 45, 0.9) 100%
    );
    border: 1px solid rgba(100, 150, 255, 0.2);
}

.sky-theme .feature-image-wrapper::before {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.1) 0%, rgba(50, 100, 200, 0.05) 100%);
}

.sky-theme .feature-image-wrapper.image-loading {
    background: linear-gradient(
        90deg,
        rgba(10, 15, 30, 0.95) 0%,
        rgba(100, 150, 255, 0.1) 50%,
        rgba(10, 15, 30, 0.95) 100%
    );
}

/* Dikey fotoğraflar için hizalama */
.feature-image-wrapper.portrait-image {
    width: 50%;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                justify-content 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-image-wrapper.portrait-image.align-left {
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 20px;
}

.feature-image-wrapper.portrait-image.align-right {
    justify-content: flex-end;
    padding-right: 40px;
    padding-left: 20px;
}

/* Yatay fotoğraflar için merkez hizalama */
.feature-image-wrapper.landscape-image {
    width: 100%;
    justify-content: center;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    overflow: hidden;
}

.feature-image-wrapper:hover .feature-image {
    transform: scale(1.05);
}

/* Gelişmiş fotoğraf animasyonları */
.feature-image.fade-in-image:not(.faded-in) {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    filter: blur(10px) brightness(0.8);
    will-change: opacity, transform, filter;
}

.feature-image.fade-in-image.faded-in {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0) brightness(1.02);
    will-change: auto;
}

/* Alternatif animasyon stilleri - yön bazlı */
.feature-image-wrapper.align-left .feature-image.fade-in-image {
    transform: scale(0.9) translateX(-50px) translateY(20px);
}

.feature-image-wrapper.align-left .feature-image.fade-in-image.faded-in {
    transform: scale(1) translateX(0) translateY(0);
}

.feature-image-wrapper.align-right .feature-image.fade-in-image {
    transform: scale(0.9) translateX(50px) translateY(20px);
}

.feature-image-wrapper.align-right .feature-image.fade-in-image.faded-in {
    transform: scale(1) translateX(0) translateY(0);
}

.feature-image-wrapper.landscape-image .feature-image.fade-in-image {
    transform: scale(0.85) translateY(40px);
}

.feature-image-wrapper.landscape-image .feature-image.fade-in-image.faded-in {
    transform: scale(1) translateY(0);
}

/* 3D transform efekti */
.feature-image-wrapper.portrait-image .feature-image.fade-in-image {
    transform: scale(0.9) translateY(30px) rotateY(-5deg);
    perspective: 1000px;
}

.feature-image-wrapper.portrait-image .feature-image.fade-in-image.faded-in {
    transform: scale(1) translateY(0) rotateY(0deg);
}

/* Parallax'ı sadece hero için kullan, feature image'lerde kullanma */
.feature-image.parallax-image {
    will-change: auto;
}

/* Dikey fotoğraflar için özel boyutlandırma */
.feature-image-wrapper.portrait-image .feature-image {
    max-width: 80%;
    max-height: 90vh;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
}

/* Yatay fotoğraflar için özel boyutlandırma */
.feature-image-wrapper.landscape-image .feature-image {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
}

.feature-reverse .feature-image-wrapper {
    order: 2;
}

.feature-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 40px 50px;
    margin: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    contain: layout style;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-light .feature-content-wrapper {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-reverse .feature-content-wrapper {
    order: 1;
}

.feature-content {
    max-width: 100%;
    width: 100%;
}

/* Dikey fotoğraf sağda ise, yazılar solda */
.feature-section.image-right .feature-content-wrapper {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 40px;
}

.feature-section.image-right .feature-content {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

/* Dikey fotoğraf solda ise, yazılar sağda */
.feature-section.image-left .feature-content-wrapper {
    justify-content: flex-end;
    padding-right: 60px;
    padding-left: 40px;
}

.feature-section.image-left .feature-content {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}

/* Yatay fotoğraflar için varsayılan hizalama */
.feature-section:not(.image-right):not(.image-left) .feature-content-wrapper {
    justify-content: center;
}

.feature-section:not(.image-right):not(.image-left) .feature-content {
    text-align: center;
    margin: 0 auto;
}

/* Reverse layout için özel ayarlar */
.feature-reverse.image-right .feature-content-wrapper {
    order: 1;
    justify-content: flex-end;
    padding-right: 60px;
    padding-left: 40px;
}

.feature-reverse.image-right .feature-content {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}

.feature-reverse.image-left .feature-content-wrapper {
    order: 1;
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 40px;
}

.feature-reverse.image-left .feature-content {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.feature-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    line-height: 1.2;
}

.feature-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.7;
    opacity: 0.9;
}

.section-dark .feature-title {
    color: var(--dark-text-primary);
}

.section-dark .feature-description {
    color: var(--dark-text-secondary);
}

.section-light .feature-title {
    color: var(--light-text-primary);
}

.section-light .feature-description {
    color: var(--light-text-secondary);
}

/* Achievements Section */
.achievements-section {
    padding: 120px 0;
    position: relative;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.achievements-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15);
}

.section-light .achievements-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.achievements-content {
    margin-top: 40px;
    min-height: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: fit-content;
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.3);
}

.achievement-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.95) 0%,
        rgba(15, 15, 25, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

.achievement-image {
    max-width: calc(100% - 24px);
    max-height: calc(100% - 24px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transform: scale(1.3);
    display: block;
}

/* 1. ve 2. görseli küçült */
.achievement-image[src*="2014-2015"],
.achievement-image[src*="2015-2016"] {
    transform: scale(1.15);
    object-fit: contain;
}

.achievement-card:hover .achievement-image {
    transform: scale(1.35);
}

.achievement-card:hover .achievement-image[src*="2014-2015"],
.achievement-card:hover .achievement-image[src*="2015-2016"] {
    transform: scale(1.2);
}

.achievement-info {
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.achievement-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8a2be2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.achievement-title {
    font-size: clamp(0.95rem, 1.7vw, 1.2rem);
    font-weight: 700;
    color: var(--dark-text-primary);
    margin: 0;
    line-height: 1.25;
}

.achievement-rank {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 800;
    color: #8a2be2;
    margin: 4px 0 0 0;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.achievement-rank-secondary {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: rgba(138, 43, 226, 0.8);
    margin: 4px 0 0 0;
}

.section-light .achievement-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-light .achievement-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.2);
}

.section-light .achievement-title {
    color: var(--light-text-primary);
}

.section-light .achievement-image-wrapper {
    background: linear-gradient(135deg, 
        rgba(240, 240, 240, 0.95) 0%,
        rgba(230, 230, 230, 0.9) 100%
    );
}

/* R&D Section */
.rd-section {
    padding: 120px 0;
    position: relative;
}

.rd-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rd-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.1);
}

.section-dark .rd-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rd-content {
    margin-top: 40px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    filter: blur(8px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item.visible .gallery-image {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* Gallery item'lar için staggered animation */
.gallery-item:nth-child(1).visible .gallery-image {
    transition-delay: 0.1s;
}

.gallery-item:nth-child(2).visible .gallery-image {
    transition-delay: 0.2s;
}

.gallery-item:nth-child(3).visible .gallery-image {
    transition-delay: 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Gallery Modal / Lightbox */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.visible {
    opacity: 1;
    visibility: visible;
}

.gallery-modal.closing {
    opacity: 0;
    visibility: hidden;
}

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

.gallery-modal-content {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-modal.visible .gallery-modal-content {
    transform: scale(1);
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: galleryModalFadeIn 0.3s ease;
}

@keyframes galleryModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .gallery-modal-image {
        max-height: 90vh;
        border-radius: 8px;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* Enhanced Animations */
.reveal-large {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-large.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Parallax Effect - Sadece hero için */
.hero-image.parallax-image,
.hero-bg-image.parallax-image {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Feature image'lerde parallax kullanma */
.feature-image.parallax-image {
    will-change: auto;
    transform: none !important;
}

/* Responsive Design for Apple Style Pages */
@media (max-width: 1024px) {
    .feature-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
        padding: 0 20px;
        border-radius: 24px;
        margin: 20px;
    }
    
    .feature-image-wrapper {
        width: 100%;
        height: 400px;
        min-height: 400px;
        order: 1;
        margin: 15px;
        padding: 20px;
        border-radius: 20px;
    }
    
    .feature-image-wrapper .feature-image {
        border-radius: 18px;
    }
    
    .feature-image-wrapper.portrait-image {
        width: 100%;
        height: 400px;
    }
    
    .feature-image-wrapper.portrait-image.align-left,
    .feature-image-wrapper.portrait-image.align-right {
        justify-content: center;
        padding: 20px;
    }
    
    .feature-content-wrapper {
        order: 2;
        padding: 30px 25px;
        margin: 15px;
        height: auto;
        min-height: auto;
        justify-content: center !important;
        border-radius: 20px;
    }
    
    .feature-content {
        max-width: 100%;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .feature-reverse .feature-image-wrapper {
        order: 1;
    }
    
    .feature-reverse .feature-content-wrapper {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .feature-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
        padding: 0 15px;
        border-radius: 20px;
        margin: 15px;
        height: auto;
        min-height: auto;
    }
    
    .feature-section {
        min-height: auto;
        padding: 30px 10px;
    }
    
    .achievements-section,
    .rd-section {
        padding: 60px 0;
    }
    
    .achievements-container,
    .rd-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .achievement-card {
        border-radius: 16px;
    }
    
    .achievement-image-wrapper {
        aspect-ratio: 4 / 3;
        padding: 8px;
    }
    
    .achievement-image {
        border-radius: 14px;
        transform: scale(1.25);
    }
    
    .achievement-image[src*="2014-2015"],
    .achievement-image[src*="2015-2016"] {
        transform: scale(1.1);
    }
    
    .achievement-card:hover .achievement-image {
        transform: scale(1.3);
    }
    
    .achievement-card:hover .achievement-image[src*="2014-2015"],
    .achievement-card:hover .achievement-image[src*="2015-2016"] {
        transform: scale(1.15);
    }
    
    .achievement-image-wrapper {
        padding: 10px;
    }
    
    .achievement-info {
        padding: 12px 15px;
    }
    
    .achievement-info {
        padding: 20px;
        gap: 10px;
    }
    
    .achievement-year {
        font-size: 0.8rem;
    }
    
    .achievement-title {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
    }
    
    .achievement-rank {
        font-size: clamp(1rem, 1.3vw, 1.2rem);
    }
    
    .achievement-rank-secondary {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
    }
    
    .rd-content {
        margin-top: 20px;
        min-height: 120px;
    }
    
    .feature-image-wrapper {
        position: relative;
        height: 300px;
        min-height: 300px;
        order: 1;
        width: 100% !important;
        margin: 12px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .feature-image-wrapper .feature-image {
        border-radius: 16px;
    }
    
    .section-light .feature-image-wrapper {
        background: linear-gradient(135deg, 
            rgba(240, 240, 240, 0.95) 0%,
            rgba(230, 230, 230, 0.9) 100%
        );
    }
    
    .feature-image-wrapper.portrait-image {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px !important;
        margin: 12px !important;
    }
    
    .feature-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 12px;
    }
    
    .feature-content-wrapper {
        order: 2;
        padding: 25px 20px !important;
        margin: 12px !important;
        height: auto;
        min-height: auto;
        justify-content: center !important;
        border-radius: 16px;
    }
    
    .feature-content {
        max-width: 100%;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .feature-reverse .feature-content {
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .intro-section {
        padding: 80px 0;
    }
    
    .achievements-section,
    .rd-section {
        padding: 80px 0;
    }
    
    .achievements-container,
    .rd-container {
        padding: 40px 30px;
        border-radius: 24px;
    }
    
    .achievements-content,
    .rd-content {
        margin-top: 30px;
        min-height: 150px;
    }
    
    .gallery-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .feature-content-wrapper {
        padding: 40px 20px;
    }
}

/* ===================================== */
/* == HOMEPAGE SPECIFIC STYLES == */
/* ===================================== */

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

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.homepage-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    letter-spacing: -0.01em;
}

.hero-btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.hero-btn-primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.4);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--dark-text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Product Showcase */
.product-showcase {
    min-height: 500px;
    height: 500px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    margin: 30px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.15);
}

.showcase-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.showcase-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 32px 0 0 32px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 200, 255, 0.1) 0%,
        rgba(0, 113, 227, 0.05) 50%,
        rgba(0, 91, 181, 0.03) 100%
    );
}

.showcase-reverse .showcase-image-wrapper {
    left: auto;
    right: 0;
    border-radius: 0 32px 32px 0;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.1) 0%,
        rgba(75, 0, 130, 0.05) 50%,
        rgba(30, 58, 138, 0.03) 100%
    );
}

.showcase-reverse .showcase-visual {
    border-radius: 32px 0 0 32px;
    background: linear-gradient(135deg, 
        rgba(0, 200, 255, 0.1) 0%,
        rgba(0, 113, 227, 0.05) 50%,
        rgba(0, 91, 181, 0.03) 100%
    );
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    border-radius: inherit;
    transition: opacity 0.4s ease;
}

.product-showcase:hover .showcase-background {
    opacity: 0.8;
}

.showcase-content {
    position: relative;
    z-index: 10;
    max-width: 520px;
    padding: 40px 50px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.showcase-reverse .showcase-content {
    text-align: right;
}

.showcase-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--dark-text-primary);
}

.showcase-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-color);
    letter-spacing: -0.01em;
}

.showcase-description {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark-text-secondary);
}

.showcase-button {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.01em;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.showcase-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.showcase-reverse .showcase-button:hover {
    transform: translateX(-5px);
}

.showcase-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 0 32px 32px 0;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.1) 0%,
        rgba(75, 0, 130, 0.05) 50%,
        rgba(30, 58, 138, 0.03) 100%
    );
}

.showcase-reverse .showcase-visual {
    right: auto;
    left: 0;
}

.showcase-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(20, 20, 30, 0.95) 0%,
        rgba(15, 15, 25, 0.9) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 24px;
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3),
                0 8px 32px rgba(0, 0, 0, 0.2);
}

.showcase-image-placeholder .showcase-image-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-image-placeholder:hover .showcase-image-photo {
    transform: scale(1.05);
}

.showcase-icon {
    width: 60%;
    height: auto;
    max-width: 500px;
    opacity: 0.9;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-icon:hover {
    transform: scale(1.05);
}

/* Fotoğraf görselleri için özel stil */
.showcase-image-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-image-placeholder:hover .showcase-image-photo {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    padding: 120px 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.feature-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--dark-text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8e8e8 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light-text-primary);
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    margin-bottom: 40px;
    color: var(--light-text-secondary);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    letter-spacing: -0.01em;
}

.cta-primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

.cta-primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.4);
}

.cta-secondary {
    background-color: transparent;
    color: var(--light-text-primary);
    border: 2px solid var(--light-border);
}

.cta-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--light-text-primary);
    transform: translateY(-3px);
}

/* Responsive Design for Homepage */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .product-showcase {
        min-height: auto;
        height: auto;
    }

    .showcase-container {
        flex-direction: column;
        height: auto;
        min-height: 400px;
    }

    .showcase-image-wrapper,
    .showcase-visual {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .showcase-content {
        padding: 25px 30px;
        text-align: center;
        max-width: 100%;
    }

    .showcase-reverse .showcase-content {
        text-align: center;
    }

    .showcase-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 8px;
    }

    .showcase-subtitle {
        font-size: clamp(0.85rem, 1.3vw, 1.1rem);
        margin-bottom: 10px;
    }

    .showcase-description {
        font-size: clamp(0.8rem, 1.1vw, 0.95rem);
        margin-bottom: 15px;
    }

    .showcase-badge {
        padding: 5px 12px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .showcase-button {
        font-size: 0.9rem;
    }

    .product-showcase {
        border-radius: 16px;
        margin: 15px 0;
    }

    .showcase-image-wrapper,
    .showcase-visual {
        border-radius: 16px;
    }
    
    .features-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 18px 12px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .feature-card-title {
        font-size: 0.875rem;
    }
    
    .feature-card-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .showcase-content {
        padding: 20px 15px;
    }
    
    .showcase-title {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
        margin-bottom: 6px;
    }
    
    .showcase-subtitle {
        font-size: clamp(0.75rem, 1.2vw, 1rem);
        margin-bottom: 8px;
    }
    
    .showcase-description {
        font-size: clamp(0.75rem, 1vw, 0.85rem);
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .showcase-badge {
        padding: 4px 10px;
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .showcase-button {
        font-size: 0.85rem;
    }
    
    .product-showcase {
        border-radius: 20px;
        margin: 15px 0;
    }
    
    .showcase-container {
        border-radius: 20px;
    }
    
    .showcase-image-wrapper,
    .showcase-visual {
        border-radius: 20px 20px 0 0;
        height: 250px;
    }
    
    .showcase-reverse .showcase-image-wrapper {
        border-radius: 0 0 20px 20px;
    }
    
    .showcase-reverse .showcase-visual {
        border-radius: 20px 20px 0 0;
    }
    
    .showcase-content {
        border-radius: 0 0 20px 20px;
        margin: 0;
        padding: 25px 20px;
    }
    
    .showcase-reverse .showcase-content {
        border-radius: 20px 20px 0 0;
    }
    
    .showcase-image-placeholder {
        border-radius: 16px;
        margin: 12px;
        padding: 15px;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .feature-card-title {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .feature-card-description {
        font-size: 0.65rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .homepage-hero .hero-content {
        padding: 0 20px;
    }
    
    .showcase-icon {
        width: 80%;
    }
    
    .showcase-icon.showcase-image-photo {
        width: 100%;
        height: 100%;
    }
    
    .showcase-image-placeholder {
        padding: 15px;
        height: 100%;
    }
    
    .product-showcase {
        min-height: auto;
        height: auto;
    }
    
    .showcase-container {
        height: auto;
        min-height: 350px;
    }
    
    .showcase-image-wrapper,
    .showcase-visual {
        height: 250px;
    }
    
    .showcase-content {
        padding: 30px 20px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}

/* ===================================== */
/* == HOMEPAGE SPECIAL STYLES == */
/* ===================================== */

/* Homepage Hero Special Effects */
.homepage-hero-special {
    position: relative;
    overflow: hidden;
}

.homepage-hero-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 200, 255, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: homepageHeroPulse 12s ease-in-out infinite;
}

@keyframes homepageHeroPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.homepage-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    animation: floatParticle 20s linear infinite;
}

.floating-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    width: 4px;
    height: 4px;
}

.floating-particle:nth-child(2) {
    left: 30%;
    animation-delay: -3s;
    width: 6px;
    height: 6px;
}

.floating-particle:nth-child(3) {
    left: 50%;
    animation-delay: -6s;
    width: 5px;
    height: 5px;
}

.floating-particle:nth-child(4) {
    left: 70%;
    animation-delay: -9s;
    width: 4px;
    height: 4px;
}

.floating-particle:nth-child(5) {
    left: 85%;
    animation-delay: -12s;
    width: 6px;
    height: 6px;
}

.floating-particle:nth-child(6) {
    left: 20%;
    animation-delay: -15s;
    width: 5px;
    height: 5px;
}

@keyframes floatParticle {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(30px) scale(1.2);
    }
}

.hero-badge-homepage {
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 28px;
    background: rgba(0, 113, 227, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 255, 0.4);
    border-radius: 50px;
    animation: homepageBadgePulse 3s ease-in-out infinite;
}

.badge-text-homepage {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00c8ff;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
    letter-spacing: 0.5px;
}

@keyframes homepageBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 200, 255, 0.5);
    }
}

/* Hero Buttons - Renkli Tasarım */
.hero-btn-rocket {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 50%, #1e3a8a 100%);
    color: #fff;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
}

.hero-btn-rocket::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn-rocket:hover::before {
    left: 100%;
}

.hero-btn-rocket:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.6);
    background: linear-gradient(135deg, #9d3ff0 0%, #5a0fa0 50%, #2d4ba0 100%);
}

.hero-btn-car {
    background: linear-gradient(135deg, #00c8ff 0%, #0071e3 50%, #005bb5 100%);
    color: #fff;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.4);
}

.hero-btn-car::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn-car:hover::before {
    left: 100%;
}

.hero-btn-car:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 200, 255, 0.6);
    background: linear-gradient(135deg, #1dd8ff 0%, #1a8aff 50%, #0070d4 100%);
}

/* Showcase Car Special */
.showcase-car-special {
    position: relative;
    overflow: hidden;
}

.showcase-car-bg {
    background: linear-gradient(135deg, 
        rgba(0, 200, 255, 0.15) 0%,
        rgba(0, 113, 227, 0.1) 50%,
        rgba(0, 91, 181, 0.08) 100%
    ) !important;
    animation: carBgPulse 8s ease-in-out infinite;
}

@keyframes carBgPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.showcase-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.95rem;
    animation: badgeFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-badge:hover {
    transform: translateY(-3px) scale(1.05);
}

.showcase-badge-car {
    background: linear-gradient(135deg, 
        rgba(0, 200, 255, 0.25) 0%,
        rgba(0, 113, 227, 0.2) 100%
    );
    border: 2px solid rgba(0, 200, 255, 0.6);
    color: #00c8ff;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.8),
                 0 0 40px rgba(0, 200, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-badge-car:hover {
    box-shadow: 0 6px 30px rgba(0, 200, 255, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.showcase-badge-rocket {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.25) 0%,
        rgba(75, 0, 130, 0.2) 100%
    );
    border: 2px solid rgba(138, 43, 226, 0.6);
    color: #8a2be2;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8),
                 0 0 40px rgba(138, 43, 226, 0.4);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-badge-rocket:hover {
    box-shadow: 0 6px 30px rgba(138, 43, 226, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.showcase-button-car {
    color: #00c8ff !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    transition: all 0.3s ease;
}

.showcase-button-car:hover {
    color: #fff !important;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.8);
    background: linear-gradient(135deg, 
        rgba(0, 200, 255, 0.3) 0%,
        rgba(0, 113, 227, 0.2) 100%
    );
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-button-rocket {
    color: #8a2be2 !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    transition: all 0.3s ease;
}

.showcase-button-rocket:hover {
    color: #fff !important;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.3) 0%,
        rgba(75, 0, 130, 0.2) 100%
    );
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.showcase-car-visual {
    position: relative;
}

.car-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 200, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: carGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes carGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.showcase-icon-car {
    filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.6));
    /* Kayma animasyonu kaldırıldı - sadece hover efekti */
}

.showcase-icon-car.showcase-image-photo {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 10px 30px rgba(0, 200, 255, 0.3))
            drop-shadow(0 0 20px rgba(0, 200, 255, 0.2));
}

/* Showcase Rocket Special */
.showcase-rocket-special {
    position: relative;
    overflow: hidden;
}

.showcase-rocket-bg {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.15) 0%,
        rgba(75, 0, 130, 0.1) 50%,
        rgba(30, 58, 138, 0.08) 100%
    ) !important;
    animation: rocketBgPulse 8s ease-in-out infinite;
}

@keyframes rocketBgPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.showcase-rocket-visual {
    position: relative;
}

.rocket-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: rocketGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes rocketGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.rocket-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mini-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: miniStarTwinkle 3s ease-in-out infinite;
}

.mini-star:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.mini-star:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: -1s;
}

.mini-star:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: -2s;
}

.mini-star:nth-child(4) {
    top: 60%;
    right: 40%;
    animation-delay: -0.5s;
}

.mini-star:nth-child(5) {
    bottom: 20%;
    right: 15%;
    animation-delay: -1.5s;
}

@keyframes miniStarTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.showcase-icon-rocket {
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.6));
    animation: rocketIconFloat 4s ease-in-out infinite;
}

.showcase-icon-rocket.showcase-image-photo {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    animation: none; /* Fotoğraf olduğu için float animasyonunu kaldır */
    filter: drop-shadow(0 10px 30px rgba(138, 43, 226, 0.3))
            drop-shadow(0 0 20px rgba(138, 43, 226, 0.2));
}

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

/* Features Special */
.features-special {
    position: relative;
    overflow: hidden;
}

.features-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 3s ease-in-out infinite;
}

.feature-card-1 .feature-icon-glow {
    background: radial-gradient(circle, rgba(0, 113, 227, 0.3) 0%, transparent 70%);
}

.feature-card-2 .feature-icon-glow {
    background: radial-gradient(circle, rgba(0, 200, 255, 0.3) 0%, transparent 70%);
}

.feature-card-3 .feature-icon-glow {
    background: radial-gradient(circle, rgba(0, 255, 127, 0.3) 0%, transparent 70%);
}

.feature-card-4 .feature-icon-glow {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.feature-card {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feature-card-1:hover {
    border-color: rgba(0, 113, 227, 0.5);
    box-shadow: 0 25px 50px rgba(0, 113, 227, 0.3);
}

.feature-card-2:hover {
    border-color: rgba(0, 200, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 200, 255, 0.3);
}

.feature-card-3:hover {
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 0 25px 50px rgba(0, 255, 127, 0.3);
}

.feature-card-4:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.3);
}

/* Responsive for Homepage Special */
@media (max-width: 768px) {
    .hero-badge-homepage {
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    
    .badge-text-homepage {
        font-size: 0.85rem;
    }
    
    .showcase-badge {
        padding: 5px 12px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .feature-icon-glow {
        width: 60px;
        height: 60px;
    }
}

/* ===================================== */
/* == VOLTACAR OPENING ANIMATION == */
/* ===================================== */

.car-theme {
    position: relative;
    overflow: hidden;
}

.car-opening-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Road Lines Animation - Yol Çizgileri */
.car-road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.road-line {
    position: absolute;
    width: 4px;
    height: 80px;
    background: linear-gradient(to top, 
        rgba(0, 200, 255, 0.8) 0%,
        rgba(0, 200, 255, 0.4) 50%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6),
                0 0 40px rgba(0, 200, 255, 0.3);
    animation: roadLineMove 2s linear infinite;
    opacity: 0;
}

.road-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 1.5s;
}

.road-line:nth-child(2) {
    left: 35%;
    animation-delay: -0.3s;
    animation-duration: 1.8s;
}

.road-line:nth-child(3) {
    left: 50%;
    animation-delay: -0.6s;
    animation-duration: 2s;
}

.road-line:nth-child(4) {
    left: 65%;
    animation-delay: -0.9s;
    animation-duration: 1.7s;
}

.road-line:nth-child(5) {
    left: 80%;
    animation-delay: -1.2s;
    animation-duration: 1.9s;
}

@keyframes roadLineMove {
    0% {
        bottom: -80px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

/* Energy Particles - Enerji Parçacıkları */
.car-energy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.energy-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 200, 255, 1) 0%, rgba(0, 113, 227, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.9),
                0 0 30px rgba(0, 200, 255, 0.6),
                0 0 50px rgba(0, 200, 255, 0.3);
    animation: energyParticleFloat 4s ease-in-out infinite;
}

.energy-particle:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    width: 4px;
    height: 4px;
}

.energy-particle:nth-child(2) {
    top: 25%;
    right: 20%;
    animation-delay: -0.5s;
    width: 7px;
    height: 7px;
}

.energy-particle:nth-child(3) {
    bottom: 35%;
    left: 30%;
    animation-delay: -1s;
    width: 5px;
    height: 5px;
}

.energy-particle:nth-child(4) {
    top: 50%;
    right: 35%;
    animation-delay: -1.5s;
    width: 6px;
    height: 6px;
}

.energy-particle:nth-child(5) {
    bottom: 20%;
    right: 25%;
    animation-delay: -2s;
    width: 4px;
    height: 4px;
}

.energy-particle:nth-child(6) {
    top: 35%;
    left: 55%;
    animation-delay: -0.3s;
    width: 5px;
    height: 5px;
}

.energy-particle:nth-child(7) {
    bottom: 10%;
    left: 20%;
    animation-delay: -1.2s;
    width: 6px;
    height: 6px;
}

.energy-particle:nth-child(8) {
    top: 70%;
    right: 50%;
    animation-delay: -0.8s;
    width: 4px;
    height: 4px;
}

.energy-particle:nth-child(9) {
    bottom: 55%;
    left: 65%;
    animation-delay: -1.8s;
    width: 5px;
    height: 5px;
}

.energy-particle:nth-child(10) {
    top: 15%;
    right: 65%;
    animation-delay: -0.6s;
    width: 6px;
    height: 6px;
}

.energy-particle:nth-child(11) {
    bottom: 30%;
    right: 15%;
    animation-delay: -1.4s;
    width: 4px;
    height: 4px;
}

.energy-particle:nth-child(12) {
    top: 80%;
    left: 35%;
    animation-delay: -0.9s;
    width: 5px;
    height: 5px;
}

.energy-particle:nth-child(13) {
    bottom: 5%;
    left: 50%;
    animation-delay: -1.6s;
    width: 7px;
    height: 7px;
}

.energy-particle:nth-child(14) {
    top: 60%;
    right: 30%;
    animation-delay: -0.4s;
    width: 4px;
    height: 4px;
}

.energy-particle:nth-child(15) {
    bottom: 70%;
    left: 75%;
    animation-delay: -1.1s;
    width: 6px;
    height: 6px;
}

@keyframes energyParticleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0) scale(1);
        box-shadow: 0 0 10px rgba(0, 200, 255, 0.5),
                    0 0 20px rgba(0, 200, 255, 0.3),
                    0 0 30px rgba(0, 200, 255, 0.1);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.3);
        box-shadow: 0 0 20px rgba(0, 200, 255, 1),
                    0 0 40px rgba(0, 200, 255, 0.8),
                    0 0 60px rgba(0, 200, 255, 0.4);
    }
}

/* Car Opening Animation - Fade In Effects */
.car-badge-animated {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: carBadgeFadeIn 1s ease-out 0.5s forwards;
}

@keyframes carBadgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.car-title-animated {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: carTitleFadeIn 1.2s ease-out 0.8s forwards;
}

@keyframes carTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.car-subtitle-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: carSubtitleFadeIn 1s ease-out 1.2s forwards;
}

@keyframes carSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.car-stats-animated {
    opacity: 0;
    transform: translateY(40px);
    animation: carStatsFadeIn 1s ease-out 1.5s forwards;
}

@keyframes carStatsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.car-hero-content {
    position: relative;
    z-index: 10;
}

/* Car Theme Background Enhancement */
.voltacar-hero.car-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: carThemePulse 12s ease-in-out infinite;
}

@keyframes carThemePulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Responsive for Car Opening Animation */
@media (max-width: 768px) {
    .road-line {
        width: 3px;
        height: 60px;
    }
    
    .energy-particle {
        width: 4px;
        height: 4px;
    }
    
    .car-badge-animated {
        animation-delay: 0.3s;
    }
    
    .car-title-animated {
        animation-delay: 0.6s;
    }
    
    .car-subtitle-animated {
        animation-delay: 0.9s;
    }
    
    .car-stats-animated {
        animation-delay: 1.2s;
    }
}

/* ===================================== */
/* == VOLTAROCKET OPENING ANIMATION == */
/* ===================================== */

/* Rocket Opening Animation - Fade In Effects */
.rocket-badge-animated {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: rocketBadgeFadeIn 1s ease-out 0.5s forwards;
}

@keyframes rocketBadgeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rocket-title-animated {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: rocketTitleFadeIn 1.2s ease-out 0.8s forwards;
}

@keyframes rocketTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rocket-subtitle-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: rocketSubtitleFadeIn 1s ease-out 1.2s forwards;
}

@keyframes rocketSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rocket-stats-animated {
    opacity: 0;
    transform: translateY(40px);
    animation: rocketStatsFadeIn 1s ease-out 1.5s forwards;
}

@keyframes rocketStatsFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.rocket-hero-content {
    position: relative;
    z-index: 10;
}

/* Rocket Theme Background Enhancement for Opening */
.voltarocket-hero.sky-theme::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: rocketOpeningGlow 2s ease-out forwards;
    opacity: 0;
}

@keyframes rocketOpeningGlow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

/* Star Particles Opening Animation */
.hero-stars .star-particle {
    opacity: 0;
    animation: starParticleFadeIn 0.8s ease-out forwards, starTwinkle 4s ease-in-out infinite;
}

.hero-stars .star-particle:nth-child(1) {
    animation-delay: 0.2s, 0s;
}

.hero-stars .star-particle:nth-child(2) {
    animation-delay: 0.3s, -0.5s;
}

.hero-stars .star-particle:nth-child(3) {
    animation-delay: 0.4s, -1s;
}

.hero-stars .star-particle:nth-child(4) {
    animation-delay: 0.5s, -1.5s;
}

.hero-stars .star-particle:nth-child(5) {
    animation-delay: 0.6s, -2s;
}

.hero-stars .star-particle:nth-child(6) {
    animation-delay: 0.7s, -0.3s;
}

.hero-stars .star-particle:nth-child(7) {
    animation-delay: 0.8s, -1.2s;
}

.hero-stars .star-particle:nth-child(8) {
    animation-delay: 0.9s, -0.8s;
}

.hero-stars .star-particle:nth-child(9) {
    animation-delay: 1s, -1.8s;
}

.hero-stars .star-particle:nth-child(10) {
    animation-delay: 1.1s, -0.6s;
}

.hero-stars .star-particle:nth-child(11) {
    animation-delay: 1.2s, -1.4s;
}

.hero-stars .star-particle:nth-child(12) {
    animation-delay: 1.3s, -0.9s;
}

.hero-stars .star-particle:nth-child(13) {
    animation-delay: 1.4s, -1.6s;
}

.hero-stars .star-particle:nth-child(14) {
    animation-delay: 1.5s, -0.4s;
}

.hero-stars .star-particle:nth-child(15) {
    animation-delay: 1.6s, -0.9s;
}

@keyframes starParticleFadeIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive for Rocket Opening Animation */
@media (max-width: 768px) {
    .rocket-badge-animated {
        animation-delay: 0.3s;
    }
    
    .rocket-title-animated {
        animation-delay: 0.6s;
    }
    
    .rocket-subtitle-animated {
        animation-delay: 0.9s;
    }
    
    .rocket-stats-animated {
        animation-delay: 1.2s;
    }
    
    .hero-stars .star-particle {
        animation-delay: 0.1s, 0s;
    }
}

/* ===================================== */
/* == CAR PAGE OPENING OVERLAY == */
/* ===================================== */

#car-page-opening-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, 
        #0a0e27 0%,
        #1a1f3a 25%,
        #16213e 50%,
        #1a1f3a 75%,
        #0a0e27 100%
    );
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.8s ease-out;
}

#car-page-opening-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.car-opening-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.car-opening-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 113, 227, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 255, 0.08) 0%, transparent 70%);
    animation: carOpeningPulse 3s ease-in-out infinite;
}

@keyframes carOpeningPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Opening Road Lines */
.car-opening-road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.opening-road-line {
    position: absolute;
    width: 5px;
    height: 100px;
    background: linear-gradient(to top, 
        rgba(0, 200, 255, 0.9) 0%,
        rgba(0, 200, 255, 0.5) 50%,
        transparent 100%
    );
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.8),
                0 0 50px rgba(0, 200, 255, 0.4);
    animation: openingRoadLineMove 1.5s linear infinite;
}

.opening-road-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.opening-road-line:nth-child(2) {
    left: 40%;
    animation-delay: -0.3s;
}

.opening-road-line:nth-child(3) {
    left: 60%;
    animation-delay: -0.6s;
}

.opening-road-line:nth-child(4) {
    left: 80%;
    animation-delay: -0.9s;
}

.opening-road-line:nth-child(5) {
    left: 50%;
    animation-delay: -1.2s;
}

@keyframes openingRoadLineMove {
    0% {
        bottom: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
    }
}

/* Opening Energy Particles */
.car-opening-energy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.opening-energy-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(0, 200, 255, 1) 0%, rgba(0, 113, 227, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 200, 255, 1),
                0 0 40px rgba(0, 200, 255, 0.6),
                0 0 60px rgba(0, 200, 255, 0.3);
    animation: openingEnergyFloat 3s ease-in-out infinite;
}

.opening-energy-particle:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.opening-energy-particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: -0.5s;
    width: 10px;
    height: 10px;
}

.opening-energy-particle:nth-child(3) {
    bottom: 40%;
    left: 35%;
    animation-delay: -1s;
}

.opening-energy-particle:nth-child(4) {
    top: 55%;
    right: 40%;
    animation-delay: -1.5s;
    width: 9px;
    height: 9px;
}

.opening-energy-particle:nth-child(5) {
    bottom: 25%;
    right: 30%;
    animation-delay: -2s;
}

.opening-energy-particle:nth-child(6) {
    top: 40%;
    left: 60%;
    animation-delay: -0.3s;
}

.opening-energy-particle:nth-child(7) {
    bottom: 15%;
    left: 25%;
    animation-delay: -1.2s;
    width: 7px;
    height: 7px;
}

.opening-energy-particle:nth-child(8) {
    top: 70%;
    right: 55%;
    animation-delay: -0.8s;
}

@keyframes openingEnergyFloat {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0) scale(1);
        box-shadow: 0 0 15px rgba(0, 200, 255, 0.6),
                    0 0 30px rgba(0, 200, 255, 0.4),
                    0 0 45px rgba(0, 200, 255, 0.2);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.4);
        box-shadow: 0 0 25px rgba(0, 200, 255, 1),
                    0 0 50px rgba(0, 200, 255, 0.8),
                    0 0 75px rgba(0, 200, 255, 0.4);
    }
}

/* Opening Content */
.car-opening-content {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: carOpeningContentFadeIn 1s ease-out 0.5s forwards;
    margin-bottom: 100px;
}

@keyframes carOpeningContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Car Driving Animation - Soldan Sağa */
.car-opening-car-drive {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 15;
    pointer-events: none;
}

.car-driving-animation {
    width: 180px;
    height: auto;
    position: absolute;
    left: -200px;
    bottom: 0;
    filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.8)) 
            drop-shadow(0 0 60px rgba(0, 200, 255, 0.4));
    animation: carDriveAcross 2s cubic-bezier(0.32, 0, 0.67, 0) forwards;
    animation-delay: 0.5s;
}

@keyframes carDriveAcross {
    0% {
        left: -200px;
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 110vw;
        opacity: 0;
        transform: scale(1.1);
    }
}


.car-opening-title {
    font-size: 4rem;
    font-weight: 800;
    color: #00c8ff;
    text-shadow: 0 0 30px rgba(0, 200, 255, 0.8),
                 0 0 60px rgba(0, 200, 255, 0.4);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    animation: carOpeningTitlePulse 2s ease-in-out infinite;
}

@keyframes carOpeningTitlePulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 200, 255, 0.8),
                     0 0 60px rgba(0, 200, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 200, 255, 1),
                     0 0 80px rgba(0, 200, 255, 0.6),
                     0 0 120px rgba(0, 200, 255, 0.3);
    }
}

.car-opening-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Responsive for Car Opening Overlay */
@media (max-width: 768px) {
    .car-opening-car-image {
        width: 150px;
    }
    
    .car-opening-title {
        font-size: 2.5rem;
    }
    
    .car-opening-subtitle {
        font-size: 1.2rem;
    }
    
    .opening-road-line {
        width: 4px;
        height: 80px;
    }
    
    .opening-energy-particle {
        width: 6px;
        height: 6px;
    }
}

/* Sponsorlar Bölümü */
.sponsors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
}

.sponsors-section.section-dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.sponsors-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--light-text-primary);
}

.section-dark .sponsors-title {
    color: var(--dark-text-primary);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    height: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-dark .sponsor-item {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-dark .sponsor-item:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.85;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background: transparent;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
}

.section-dark .sponsor-logo {
    filter: grayscale(100%) brightness(1.8) contrast(1.2);
    opacity: 0.9;
}

.section-dark .sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }

    .sponsor-item {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .sponsors-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .sponsor-item {
        height: 120px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .sponsors-title {
        font-size: 1.5rem;
    }

    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .sponsor-item {
        height: 100px;
        padding: 10px;
    }
}

/* İletişim Kartları Bölümü */
.contact-cards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.contact-cards-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-text-primary);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 113, 227, 0.2);
    border-color: rgba(0, 113, 227, 0.3);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card-icon {
    font-size: 2.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
}

.contact-card-position {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text-primary);
    margin: 0;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-text-secondary);
}

.contact-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.contact-info-item a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-cards-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 25px;
    }

    .contact-card-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-card-icon {
        font-size: 2rem;
    }

    .contact-card-name {
        font-size: 1.2rem;
    }

    .contact-info-item {
        font-size: 0.85rem;
    }
}

/* Contact Page Specific Styles */
.contact-cards-wrapper {
    margin: 50px 0 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-cards-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.contact-cards-wrapper .contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards-wrapper .contact-card {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(0, 113, 227, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-cards-wrapper .contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 113, 227, 0.15);
    border-color: rgba(0, 113, 227, 0.4);
}

.contact-cards-wrapper .contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 113, 227, 0.15);
}

.contact-cards-wrapper .contact-card-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.contact-cards-wrapper .contact-card-position {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.contact-cards-wrapper .contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-cards-wrapper .contact-card-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text-primary);
    margin: 0;
}

.contact-cards-wrapper .contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-cards-wrapper .contact-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--light-text-secondary);
}

.contact-cards-wrapper .contact-icon {
    font-size: 1.1rem;
    min-width: 20px;
}

.contact-cards-wrapper .contact-info-item a {
    color: var(--light-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-cards-wrapper .contact-info-item a:hover {
    color: var(--accent-color);
}

/* Responsive for Contact Page Cards */
@media (max-width: 768px) {
    .contact-cards-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .contact-cards-wrapper .contact-card {
        padding: 20px;
    }

    .contact-cards-wrapper .contact-card-position {
        font-size: 1rem;
    }

    .contact-cards-wrapper .contact-card-name {
        font-size: 1.1rem;
    }

    .contact-cards-wrapper .contact-info-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-section-title {
        font-size: 1.3rem;
    }

    .contact-cards-wrapper .contact-card {
        padding: 18px;
    }

    .contact-cards-wrapper .contact-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-cards-wrapper .contact-card-position {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .contact-cards-wrapper .contact-card-name {
        font-size: 1rem;
    }

    .contact-cards-wrapper .contact-info-item {
        font-size: 0.8rem;
    }

    .contact-cards-wrapper .contact-icon {
        font-size: 1rem;
    }
}
