/* LUVENCIA Bilimsel Verimlilik Sayfası - CSS */

/* Bilimsel Verimlilik Hero Bölümü */
.efficiency-hero-section {
    height: 70vh;
    background: linear-gradient(135deg, #0a5f35 0%, #071f12 50%, #021a0f 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.efficiency-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

/* Ana Bilimsel Verimlilik Bölümü */
.efficiency-main-section {
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    min-height: 80vh;
}

/* Bilim Kartları */
.science-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.science-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

.science-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* İstatistikler */
.stats-section {
    background: linear-gradient(135deg, #0a5f35 0%, #071f12 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(251,191,36,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
}

.stats-section>div {
    position: relative;
    z-index: 1;
}

/* Araştırma Bölümü */
.research-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Teknoloji Timeline */
.tech-timeline {
    position: relative;
}

.tech-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b, #d97706);
    transform: translateX(-50%);
}

.tech-item {
    position: relative;
    margin-bottom: 4rem;
}

.tech-item:nth-child(odd) {
    text-align: right;
    padding-right: 50%;
}

.tech-item:nth-child(even) {
    text-align: left;
    padding-left: 50%;
}

.tech-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fbbf24;
    border-radius: 50%;
    border: 4px solid #0a5f35;
    top: 0;
    z-index: 2;
}

.tech-item:nth-child(odd)::before {
    right: -8px;
}

.tech-item:nth-child(even)::before {
    left: -8px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .tech-timeline::before {
        left: 20px;
    }

    .tech-item:nth-child(odd),
    .tech-item:nth-child(even) {
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
    }

    .tech-item::before {
        left: 12px !important;
        right: auto !important;
    }

    .efficiency-hero-section {
        height: 60vh;
    }

    .science-card {
        margin-bottom: 2rem;
    }
}

/* Animasyonlar */
@keyframes scienceGlow {
    0% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
    }

    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
}

.science-card:hover {
    animation: scienceGlow 2s ease-in-out infinite;
}

/* Özel Scroll Animasyonları */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Metin Efektleri */
.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover Efektleri */
.hover-lift {
    transition: transform 0.3s ease;
}

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

/* Özel Buton Stilleri */
.btn-science {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-science:hover {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* Kart Gölge Efektleri */
.card-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* İkon Animasyonları */
.icon-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Özel Grid Düzeni */
.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Metin Vurguları */
.highlight-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Özel Border Efektleri */
.border-glow {
    border: 1px solid transparent;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a) padding-box,
        linear-gradient(45deg, #fbbf24, #f59e0b) border-box;
}

/* Loading Animasyonu */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}