/* ==========================================================================
   Dijital Market Pro — Bootstrap 5 üzerine premium özelleştirmeler
   ========================================================================== */

:root {
    --dmp-primary: #0d6efd;
    --dmp-dark: #0d1b2a;
    --dmp-radius: 0.9rem;
    --dmp-font: 'Inter', sans-serif;
}

body.dmp-body {
    font-family: var(--dmp-font);
    background-color: #f5f7fb;
    color: #1e293b;
}

/* --- Navbar --- */
.dmp-navbar { border-bottom: 1px solid #eef1f6; }
.dmp-navbar .navbar-nav .nav-link { font-weight: 500; margin: 0 8px; }

/* --- Ürün Kartları --- */
.dmp-product-card {
    border-radius: var(--dmp-radius);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}
.dmp-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08) !important;
}
.dmp-product-thumb img { transition: transform .4s ease; }
.dmp-product-thumb:hover img { transform: scale(1.05); }

/* --- Ürün Sayfası Sekmeleri --- */
.dmp-product-tabs .nav-tabs .nav-link {
    border: none;
    color: #64748b;
    font-weight: 500;
    padding: 12px 20px;
}
.dmp-product-tabs .nav-tabs .nav-link.active {
    color: var(--dmp-primary);
    border-bottom: 2px solid var(--dmp-primary);
    background: transparent;
}

/* --- Hızlı Bilgi Kartları --- */
.dmp-quick-facts .border { border-color: #eef1f6 !important; background: #fafbfe; }

/* --- Müşteri Paneli --- */
.dmp-account-nav-list .nav-link {
    color: #475569;
    font-weight: 500;
    padding: 10px 14px;
}
.dmp-account-nav-list .nav-link:hover { background: #f1f5f9; }
.dmp-account-nav-list .nav-link.active {
    background: var(--dmp-primary);
    color: #fff;
}

.dmp-stat-card { border: 1px solid #eef1f6; }

.dmp-license-key {
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* --- Genel Kart Yumuşatma --- */
.rounded-3 { border-radius: var(--dmp-radius) !important; }

/* --- Hero --- */
.dmp-hero h1 { letter-spacing: -0.5px; }

/* ==========================================================================
   PREMIUM HERO SLIDER - MODERN DESIGN
   ========================================================================== */
.dmp-hero-premium {
    position: relative;
    overflow: hidden;
}

.min-vh-70 {
    min-height: 70vh;
}

.dmp-hero-slide {
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px 0;
}

/* Animated Particles */
.dmp-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatHeroParticle 20s infinite ease-in-out;
}

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

.hero-particle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 75%;
    animation-delay: 5s;
}

.hero-particle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 85%;
    animation-delay: 10s;
}

.hero-particle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 5%;
    animation-delay: 15s;
}

@keyframes floatHeroParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05) rotate(270deg);
        opacity: 0.4;
    }
}

/* Hero Content */
.dmp-hero-content {
    position: relative;
    z-index: 10;
}

.dmp-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.dmp-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.dmp-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.dmp-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dmp-btn-primary {
    background: #ffffff;
    color: var(--dmp-primary);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dmp-btn-primary:hover {
    background: #f8f9fa;
    color: var(--dmp-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.dmp-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dmp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Hero Visual - Right Side */
.dmp-hero-visual {
    position: relative;
    z-index: 10;
}

.dmp-hero-illustration {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: 0 auto;
}

.illustration-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blobMove 8s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes blobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

/* Character */
.hero-character {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #ffffff;
    animation: characterFloat 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.character-devices {
    position: absolute;
    width: 100%;
    height: 100%;
}

.device {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    animation: deviceFloat 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.device.laptop {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.device.phone {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

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

/* Feature Cards */
.dmp-hero-features {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: cardFloat 3s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.feature-card i {
    font-size: 1.5rem;
    color: #667eea;
}

.feature-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
}

.feature-card-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.feature-card-2 {
    top: 45%;
    right: 0;
    animation-delay: 1s;
}

.feature-card-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

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

/* Security Badges */
.dmp-hero-badges {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.security-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

.security-badge i {
    font-size: 1.2rem;
}

/* Wave Bottom */
.dmp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.dmp-hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    fill: #ffffff;
}

/* Indicators */
.dmp-hero-indicators {
    bottom: 30px;
    z-index: 100;
}

.dmp-hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.dmp-hero-indicators button.active {
    width: 40px;
    border-radius: 6px;
    background: #ffffff;
}

/* Navigation Buttons */
.dmp-hero-nav {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.dmp-hero-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.dmp-hero-nav i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .dmp-hero-title {
        font-size: 2.5rem;
    }
    
    .dmp-hero-text {
        font-size: 1rem;
    }
    
    .dmp-hero-illustration {
        max-width: 350px;
        height: 350px;
    }
    
    .character-icon {
        width: 150px;
        height: 150px;
        font-size: 4.5rem;
    }
    
    .device {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 10px 14px;
    }
    
    .feature-card span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .dmp-hero-slide {
        padding: 60px 0 80px 0;
    }
    
    .min-vh-70 {
        min-height: auto;
    }
    
    .dmp-hero-title {
        font-size: 2rem;
    }
    
    .dmp-hero-text {
        font-size: 0.95rem;
    }
    
    .dmp-hero-buttons {
        flex-direction: column;
    }
    
    .dmp-btn-primary,
    .dmp-btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .dmp-hero-illustration {
        max-width: 280px;
        height: 280px;
        margin-top: 30px;
    }
    
    .character-icon {
        width: 120px;
        height: 120px;
        font-size: 3.5rem;
    }
    
    .device {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 8px 12px;
    }
    
    .feature-card i {
        font-size: 1.2rem;
    }
    
    .feature-card span {
        font-size: 0.7rem;
    }
    
    .dmp-hero-wave svg {
        height: 40px;
    }
}

/* --- Kategori Kartları --- */
.dmp-category-card { transition: transform .2s ease; background:#fff; }
.dmp-category-card:hover { transform: translateY(-4px); }

/* ==========================================================================
   PREMIUM KATEGORİLER
   ========================================================================== */
.dmp-categories-premium {
    background: #ffffff;
}

.dmp-category-card-premium {
    display: block;
    text-decoration: none;
    height: 100%;
}

.category-card-inner {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.dmp-category-card-premium:hover .category-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dmp-category-card-premium:hover .category-image img {
    transform: scale(1.1);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.3);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dmp-category-card-premium:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 3rem;
    color: #ffffff;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dmp-category-card-premium:hover .category-overlay i {
    transform: scale(1);
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.dmp-category-card-premium:hover .category-title {
    color: #667eea;
}

.category-count {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.category-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.dmp-category-card-premium:hover .category-shine {
    transform: translateX(100%) rotate(45deg);
}

/* ==========================================================================
   PREMIUM ÜRÜN LİSTELERİ (ÖNE ÇIKAN & YENİ EKLENENLER)
   ========================================================================== */
.dmp-featured-products-premium {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.dmp-new-products-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.dmp-badge-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.dmp-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dmp-view-all-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.dmp-view-all-link:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.dmp-view-all-link:hover::after {
    width: 100%;
}

.dmp-view-all-link i {
    transition: transform 0.3s ease;
}

.dmp-view-all-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .category-image {
        height: 150px;
    }
    
    .category-placeholder {
        font-size: 3rem;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.85rem;
    }
    
    .dmp-view-all-link {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   PREMIUM HEADER
   ========================================================================== */
.dmp-topbar { background: var(--dmp-dark); }
.dmp-topbar-link { opacity: .85; transition: opacity .2s; }
.dmp-topbar-link:hover { opacity: 1; color: #fff; }

.dmp-navbar { border-bottom: 1px solid #eef1f6; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.dmp-logo { letter-spacing: -0.5px; }
.dmp-logo img,
.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}
.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.dmp-main-nav .nav-link { font-weight: 500; margin: 0 10px; color: #1e293b; position: relative; }
.dmp-main-nav .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
    background: var(--dmp-primary); transition: width .25s ease;
}
.dmp-main-nav .nav-link:hover::after,
.dmp-main-nav .current-menu-item > .nav-link::after { width: 100%; }

.dmp-nav-search { max-width: 360px; width: 100%; }
.dmp-nav-search input { background: #f1f5f9; border-radius: 50px 0 0 50px !important; padding-left: 16px; }
.dmp-nav-search input:focus { box-shadow: none; background: #eef1f6; }
.dmp-nav-search .btn { background: #f1f5f9; border-radius: 0 50px 50px 0; color: #64748b; }

.dmp-btn-glow { box-shadow: 0 6px 16px rgba(13,110,253,.28); transition: box-shadow .2s, transform .2s; }
.dmp-btn-glow:hover { box-shadow: 0 8px 20px rgba(13,110,253,.4); transform: translateY(-1px); }

.dmp-mini-cart-panel { width: 300px; }

/* ==========================================================================
   PREMIUM HİZMETLER BÖLÜMÜ - TAB MENÜLÜ MODERN TASARIM
   ========================================================================== */
.dmp-services-premium {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Section Başlıkları */
.dmp-section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.dmp-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.dmp-section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
}

/* Tab Navigation */
.dmp-services-nav-wrapper {
    position: relative;
}

.dmp-services-nav-scroll {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dmp-services-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dmp-services-nav::-webkit-scrollbar {
    display: none;
}

.dmp-service-tab {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.dmp-service-tab i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.dmp-service-tab:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.dmp-service-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.dmp-service-tab.active i {
    transform: scale(1.1);
}

/* Scroll Buttons */
.dmp-nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dmp-nav-prev {
    left: 0;
}

.dmp-nav-next {
    right: 0;
}

.dmp-nav-scroll-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

/* Tab Content */
.dmp-services-content {
    position: relative;
}

.dmp-service-panel {
    display: none;
    animation: fadeInPanel 0.5s ease;
}

.dmp-service-panel.active {
    display: block;
}

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

/* Service Content */
.dmp-service-content {
    padding: 30px;
}

.dmp-service-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.dmp-service-content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #64748b;
}

/* Feature Items */
.dmp-service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dmp-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.dmp-feature-item:hover {
    background: #ffffff;
    border-color: #667eea;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.dmp-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
}

/* CTA Button */
.dmp-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.dmp-service-cta:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.dmp-service-cta i {
    transition: transform 0.3s ease;
}

.dmp-service-cta:hover i {
    transform: translateX(5px);
}

/* Mockup Area */
.dmp-service-mockup {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Mockup Screens */
.mockup-screens {
    position: relative;
    z-index: 10;
}

.screen-laptop {
    width: 420px;
    height: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    animation: laptopFloat 4s ease-in-out infinite;
}

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

.screen-header {
    height: 25px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
}

.screen-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

.screen-header span:nth-child(1) {
    background: #ef4444;
}

.screen-header span:nth-child(2) {
    background: #f59e0b;
}

.screen-header span:nth-child(3) {
    background: #10b981;
}

.screen-content {
    height: calc(100% - 25px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.screen-mobile {
    width: 180px;
    height: 360px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: -50px;
    right: -30px;
    overflow: hidden;
    border: 8px solid #1e293b;
    animation: mobileFloat 4s ease-in-out infinite 2s;
}

@keyframes mobileFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-20px) rotateZ(-5deg);
    }
}

.mobile-notch {
    width: 100px;
    height: 20px;
    background: #1e293b;
    border-radius: 0 0 15px 15px;
    margin: 0 auto;
}

.screen-content-mobile {
    height: calc(100% - 20px);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content-mobile i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .screen-laptop {
        width: 350px;
        height: 230px;
    }
    
    .screen-content i {
        font-size: 4rem;
    }
    
    .screen-mobile {
        width: 150px;
        height: 300px;
    }
    
    .screen-content-mobile i {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .dmp-section-title {
        font-size: 2rem;
    }
    
    .dmp-service-features {
        grid-template-columns: 1fr;
    }
    
    .dmp-service-mockup {
        height: 400px;
        margin-top: 30px;
    }
    
    .screen-laptop {
        width: 300px;
        height: 200px;
    }
    
    .screen-mobile {
        width: 130px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .dmp-section-title {
        font-size: 1.75rem;
    }
    
    .dmp-service-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .dmp-service-content {
        padding: 20px 0;
    }
    
    .dmp-service-content-title {
        font-size: 1.5rem;
    }
    
    .dmp-service-content-text {
        font-size: 0.95rem;
    }
    
    .dmp-feature-item {
        padding: 10px 12px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .dmp-feature-item span {
        font-size: 0.85rem;
    }
    
    .dmp-nav-scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .screen-laptop {
        width: 250px;
        height: 170px;
    }
    
    .screen-content i {
        font-size: 3rem;
    }
    
    .screen-mobile {
        width: 110px;
        height: 220px;
        right: -20px;
    }
    
    .screen-content-mobile i {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   PREMIUM ÇALIŞMA SÜRECİ - MODERN TIMELINE TASARIM
   ========================================================================== */
.dmp-process-premium {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
}

/* Arka Plan Animasyonları */
.dmp-process-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.process-particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    animation: processParticleFloat 20s ease-in-out infinite;
}

.p1 {
    width: 300px;
    height: 300px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.p2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.p3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 15%;
    animation-delay: 10s;
}

.p4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes processParticleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.4;
    }
}

.process-grid-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Timeline Container */
.dmp-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Center Line */
.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(102, 126, 234, 0.5) 50%, 
        rgba(102, 126, 234, 0.1) 100%
    );
    transform: translateX(-50%);
}

/* Step Wrapper */
.dmp-process-step-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.step-left {
    justify-content: flex-end;
    padding-right: calc(50% + 60px);
}

.step-right {
    justify-content: flex-start;
    padding-left: calc(50% + 60px);
}

/* Step Number Badge */
.step-number-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.badge-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
    border: 4px solid #ffffff;
}

.badge-inner span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.badge-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    animation: badgePulseAnimation 2s ease-out infinite;
}

@keyframes badgePulseAnimation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Process Card */
.dmp-process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 420px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.dmp-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.dmp-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.process-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dmp-process-card:hover .process-card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1) rotate(5deg);
}

.process-card-icon i {
    font-size: 2rem;
    color: #667eea;
    transition: color 0.3s ease;
}

.dmp-process-card:hover .process-card-icon i {
    color: #ffffff;
}

.process-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.process-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.card-decoration {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.deco-dot {
    width: 8px;
    height: 8px;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dmp-process-card:hover .deco-dot {
    background: #667eea;
}

.deco-dot:nth-child(2) {
    animation: dotBounce 1s ease-in-out infinite 0.2s;
}

.deco-dot:nth-child(3) {
    animation: dotBounce 1s ease-in-out infinite 0.4s;
}

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

/* Goal Section */
.dmp-process-goal {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.dmp-process-goal::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: goalFloat 8s ease-in-out infinite;
}

.dmp-process-goal::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: goalFloat 8s ease-in-out infinite 4s;
}

@keyframes goalFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

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

.goal-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: rocketBounce 2s ease-in-out infinite;
}

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

.goal-icon i {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.goal-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringExpand 2s ease-out infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ring-2 {
    width: 140px;
    height: 140px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

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

.goal-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.goal-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.goal-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.goal-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.goal-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .timeline-center-line {
        left: 30px;
    }
    
    .step-left,
    .step-right {
        justify-content: flex-start;
        padding-left: 90px;
        padding-right: 0;
    }
    
    .step-number-badge {
        left: 30px;
        transform: none;
    }
    
    .badge-inner {
        width: 50px;
        height: 50px;
    }
    
    .badge-inner span {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .dmp-process-premium {
        padding: 60px 0;
    }
    
    .dmp-process-card {
        padding: 25px 20px;
    }
    
    .process-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-card-icon i {
        font-size: 1.7rem;
    }
    
    .process-card-title {
        font-size: 1.2rem;
    }
    
    .process-card-text {
        font-size: 0.9rem;
    }
    
    .goal-icon {
        width: 80px;
        height: 80px;
    }
    
    .goal-icon i {
        font-size: 2.5rem;
    }
    
    .goal-title {
        font-size: 1.8rem;
    }
    
    .goal-text {
        font-size: 1rem;
    }
    
    .goal-badges {
        gap: 10px;
    }
    
    .goal-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   ANİMASYONLU TREN İLE REFERANS LOGOLARI
   ========================================================================== */
.dmp-client-logos-section {
    min-height: 280px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
}

/* Raylar */
.dmp-train-rails {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #8b4513 0px,
        #8b4513 8px,
        transparent 8px,
        transparent 20px
    );
    z-index: 1;
}

.dmp-train-rails::before,
.dmp-train-rails::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #696969;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.dmp-train-rails::before {
    top: 0;
}

.dmp-train-rails::after {
    bottom: 0;
}

/* Tren Wrapper */
.dmp-train-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    animation: dmpTrainMove 25s linear infinite;
    will-change: transform;
}

/* Duman Efekti */
.dmp-train-smoke {
    position: absolute;
    left: 30px;
    top: -40px;
    z-index: 5;
}

.smoke-puff {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.7) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: dmpSmokeRise 2s ease-out infinite;
}

.smoke-puff:nth-child(1) {
    animation-delay: 0s;
}

.smoke-puff:nth-child(2) {
    animation-delay: 0.7s;
}

.smoke-puff:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes dmpSmokeRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-60px) scale(1.5);
        opacity: 0;
    }
}

/* Lokomotif */
.dmp-train-locomotive {
    position: relative;
    z-index: 10;
    margin-right: 8px;
}

.locomotive-body {
    position: relative;
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 8px 8px 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.locomotive-cabin {
    position: absolute;
    top: -25px;
    left: 10px;
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 6px 6px 0 0;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2);
}

.locomotive-cabin::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 15px;
    background: rgba(135, 206, 250, 0.4);
    border-radius: 3px;
    border: 2px solid #2c3e50;
}

.locomotive-chimney {
    position: absolute;
    top: -35px;
    left: 60px;
    width: 15px;
    height: 15px;
    background: #2c3e50;
    border-radius: 3px 3px 0 0;
}

.locomotive-front {
    position: absolute;
    right: -15px;
    top: 15px;
    width: 20px;
    height: 40px;
    background: linear-gradient(90deg, #34495e 0%, #2c3e50 100%);
    border-radius: 0 8px 8px 0;
}

.locomotive-front::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 3px;
    width: 8px;
    height: 8px;
    background: #f39c12;
    border-radius: 50%;
    box-shadow: 0 0 8px #f39c12;
}

.locomotive-wheels {
    display: flex;
    gap: 30px;
    margin-left: 15px;
    margin-top: 5px;
}

.locomotive-wheels .wheel {
    width: 22px;
    height: 22px;
    background: #2c3e50;
    border-radius: 50%;
    border: 3px solid #7f8c8d;
    animation: dmpWheelRotate 0.8s linear infinite;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

@keyframes dmpWheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Vagonlar */
.dmp-train-wagons {
    display: flex;
    gap: 8px;
    z-index: 8;
}

.dmp-train-wagon {
    position: relative;
    display: flex;
    flex-direction: column;
}

.wagon-connector {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 4px;
    background: #7f8c8d;
    border-radius: 2px;
}

.wagon-body {
    width: 140px;
    height: 90px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2c3e50;
    position: relative;
    overflow: hidden;
}

.wagon-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.wagon-content {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.wagon-content img {
    max-width: 90px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(1.1);
}

.wagon-logo-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.wagon-wheels {
    display: flex;
    gap: 80px;
    margin-left: 15px;
    margin-top: 5px;
}

.wagon-wheels .wheel {
    width: 18px;
    height: 18px;
    background: #2c3e50;
    border-radius: 50%;
    border: 2px solid #7f8c8d;
    animation: dmpWheelRotate 0.8s linear infinite;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Tren Hareketi */
@keyframes dmpTrainMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100vw);
    }
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .locomotive-body {
        width: 80px;
        height: 60px;
    }
    
    .locomotive-cabin {
        width: 35px;
        height: 25px;
        top: -20px;
    }
    
    .wagon-body {
        width: 110px;
        height: 75px;
    }
    
    .wagon-content img {
        max-width: 70px;
        max-height: 40px;
    }
    
    .wagon-logo-text {
        font-size: 0.75rem;
    }
    
    .wagon-wheels {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .dmp-client-logos-section {
        min-height: 220px;
    }
    
    .locomotive-body {
        width: 70px;
        height: 50px;
    }
    
    .locomotive-cabin {
        width: 30px;
        height: 20px;
        top: -18px;
        left: 8px;
    }
    
    .locomotive-cabin::before {
        width: 20px;
        height: 12px;
    }
    
    .locomotive-chimney {
        width: 12px;
        height: 12px;
        left: 45px;
    }
    
    .locomotive-wheels {
        gap: 20px;
        margin-left: 10px;
    }
    
    .locomotive-wheels .wheel {
        width: 18px;
        height: 18px;
    }
    
    .wagon-body {
        width: 90px;
        height: 65px;
    }
    
    .wagon-content {
        padding: 10px;
    }
    
    .wagon-content img {
        max-width: 55px;
        max-height: 30px;
    }
    
    .wagon-logo-text {
        font-size: 0.65rem;
    }
    
    .wagon-wheels {
        gap: 45px;
        margin-left: 10px;
    }
    
    .wagon-wheels .wheel {
        width: 15px;
        height: 15px;
    }
    
    .dmp-train-smoke {
        left: 25px;
    }
    
    .smoke-puff {
        width: 15px;
        height: 15px;
    }
    
    .dmp-train-rails {
        bottom: 60px;
    }
}

@media (max-width: 480px) {
    .dmp-client-logos-section {
        min-height: 180px;
    }
    
    .locomotive-body {
        width: 60px;
        height: 45px;
    }
    
    .locomotive-cabin {
        width: 25px;
        height: 18px;
        top: -15px;
    }
    
    .wagon-body {
        width: 75px;
        height: 55px;
        border: 2px solid #2c3e50;
    }
    
    .wagon-content img {
        max-width: 45px;
        max-height: 25px;
    }
    
    .wagon-logo-text {
        font-size: 0.55rem;
    }
    
    .wagon-wheels {
        gap: 35px;
    }
    
    .dmp-train-wrapper {
        animation-duration: 20s;
    }
}

/* ==========================================================================
   MÜŞTERİ YORUMLARI — PREMİUM KART
   ========================================================================== */
.dmp-testimonial-card { border: 1px solid #eef1f6; display: flex; flex-direction: column; transition: transform .2s ease; }
.dmp-testimonial-card:hover { transform: translateY(-4px); }
.dmp-testimonial-quote { position: absolute; top: 14px; right: 18px; font-size: 2rem; color: rgba(13,110,253,.12); }
.dmp-testimonial-stars i { color: #f5a623; font-size: .85rem; margin-right: 2px; }
.dmp-testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.dmp-testimonial-initials {
    background: var(--dmp-primary); color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .85rem;
}

/* ==========================================================================
   PREMIUM ANIMASYONLU FOOTER
   ========================================================================== */

/* Newsletter Section */
.dmp-newsletter-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
}

.dmp-newsletter-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.dmp-newsletter-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.dmp-newsletter-particles .particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dmp-newsletter-particles .particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.dmp-newsletter-particles .particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.dmp-newsletter-particles .particle:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.dmp-newsletter-particles .particle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 70%;
    animation-delay: 8s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(30px, 10px) scale(1.05);
        opacity: 0.4;
    }
}

.dmp-newsletter-icon i {
    font-size: 3rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

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

.dmp-newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dmp-newsletter-form .form-control:focus {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.dmp-newsletter-form .btn {
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.dmp-newsletter-form .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Main */
.dmp-footer-premium {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.dmp-footer-logo {
    transition: all 0.3s ease;
    display: inline-block;
}

.dmp-footer-logo:hover {
    transform: translateY(-3px);
    color: #667eea !important;
}

.dmp-footer-logo-img img,
.dmp-footer-logo-img .custom-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.dmp-footer-logo-img:hover img,
.dmp-footer-logo-img:hover .custom-logo {
    filter: none;
    transform: translateY(-3px);
}

/* Social Media Icons */
.dmp-social-icon-premium {
    position: relative;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.dmp-social-icon-premium::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}

.dmp-social-icon-premium:hover::before {
    transform: translateY(0);
}

.dmp-social-icon-premium i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.dmp-social-icon-premium:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    color: #ffffff;
}

.social-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.dmp-social-icon-premium:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer Links */
.dmp-footer-links-premium {
    margin: 0;
    padding: 0;
}

.dmp-footer-links-premium li {
    margin-bottom: 12px;
}

.dmp-footer-links-premium a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.dmp-footer-links-premium a i {
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
}

.dmp-footer-links-premium a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.dmp-footer-links-premium a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Items */
.dmp-footer-contact-premium li {
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 8px;
    margin-right: 12px;
    color: #667eea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
}

.contact-item:hover i {
    background: #667eea;
    color: #ffffff;
    transform: scale(1.1);
}

/* Payment Methods */
.dmp-payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-badge {
    width: 50px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.payment-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Bottom */
.dmp-footer-bottom {
    animation: fadeInUp 1s ease;
}

.dmp-footer-badges .badge {
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Scroll to Top Button */
.dmp-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.dmp-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.dmp-scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* WhatsApp Floating Button */
.dmp-whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.dmp-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    color: #ffffff;
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.dmp-whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .dmp-newsletter-icon i {
        font-size: 2rem;
    }
    
    .dmp-footer-brand {
        text-align: center;
    }
    
    .dmp-social-links-premium {
        text-align: center;
    }
    
    .dmp-social-links-premium .d-flex {
        justify-content: center;
    }
    
    .dmp-scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .dmp-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

/* --- Footer --- */
.dmp-footer a { color: rgba(255,255,255,.65); text-decoration: none; }
.dmp-footer a:hover { color: #fff; }

/* --- Responsive düzeltmeler --- */
@media (max-width: 768px) {
    .dmp-hero { padding-top: 3rem; padding-bottom: 3rem; }
    .dmp-account-nav { position: static !important; }
}
/* CSS Test - Version 1.0.5 - Loaded Successfully */

/* ==========================================================================
   SEPETE EKLEME ANİMASYONLARI - ADD TO CART ANIMATIONS
   ========================================================================== */

/* Button Loading State */
.dmp-add-to-cart-btn.loading {
    position: relative;
    pointer-events: none;
}

.dmp-add-to-cart-btn.loading i {
    animation: buttonSpinning 1s linear infinite;
}

@keyframes buttonSpinning {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Button Success State */
.dmp-add-to-cart-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-color: #10b981 !important;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.dmp-add-to-cart-btn.success i {
    animation: successBounce 0.6s ease;
}

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

/* Flying Cart Icon Animation */
.flying-cart-icon {
    position: fixed;
    font-size: 24px;
    color: #667eea;
    pointer-events: none;
    z-index: 9999;
    animation: flyingCartGlow 0.8s ease;
}

@keyframes flyingCartGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 1));
    }
}

/* Cart Shake Animation */
.cart-shake {
    animation: cartShakeAnimation 0.5s ease;
}

@keyframes cartShakeAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

/* Cart Notification Toast */
.cart-notification {
    position: fixed;
    top: 80px;
    right: -400px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 10000;
    transition: right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-notification.show {
    right: 20px;
}

.cart-notification i {
    font-size: 1.3rem;
    margin-right: 10px;
}

/* Responsive Notification */
@media (max-width: 768px) {
    .cart-notification {
        top: 70px;
        right: -350px;
        font-size: 0.85rem;
        padding: 14px 20px;
    }
    
    .cart-notification.show {
        right: 10px;
    }
    
    .cart-notification i {
        font-size: 1.1rem;
    }
}

/* Cart Count Badge Pulse */
.cart-count {
    animation: cartCountPulse 0.3s ease;
}

@keyframes cartCountPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================================================
   BLACK HOLE ANIMATION SECTION - 3D KARA DELİK EFEKTİ
   ========================================================================== */

.dmp-black-hole-section {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    padding: 80px 0;
}

.dmp-black-hole-section .dmp-section-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dmp-black-hole-section .dmp-section-badge i {
    color: #ffd700;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.dmp-black-hole-section .dmp-section-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.dmp-black-hole-section .dmp-section-description {
    color: rgba(255, 255, 255, 0.8);
}

.dmp-black-hole-canvas {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(102, 126, 234, 0.3),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
    background: radial-gradient(circle at center, #0a0e27 0%, #000000 100%);
}

.dmp-black-hole-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Loading State (Three.js yüklenirken) */
.dmp-black-hole-canvas::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(102, 126, 234, 0.3);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: canvasLoading 1s linear infinite;
}

.dmp-black-hole-canvas:has(canvas)::before {
    display: none;
}

@keyframes canvasLoading {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dmp-black-hole-section {
        padding: 60px 0;
    }
    
    .dmp-black-hole-canvas {
        height: 400px !important;
    }
    
    .dmp-black-hole-section .dmp-section-title {
        font-size: 1.75rem;
    }
    
    .dmp-black-hole-section .dmp-section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .dmp-black-hole-canvas {
        height: 350px !important;
    }
}

/* ==========================================================================
   EŞSIZ ÇALIŞMA SÜRECİ - YATAY KAYDIRMALI 3D KART SİSTEMİ
   ========================================================================== */
.dmp-process-unique {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 80px 0;
    position: relative;
}

.process-unique-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Scroll Wrapper */
.process-scroll-wrapper {
    max-width: 100%;
    overflow: hidden;
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    color: #64748b;
    font-weight: 600;
    animation: bounceHorizontal 2s ease-in-out infinite;
}

.scroll-hint i {
    font-size: 1.5rem;
    color: var(--dmp-primary);
}

@keyframes bounceHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Cards Container - Yatay Scroll with 3D Perspective */
.process-cards-container {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    perspective: 1000px;
    scrollbar-width: thin;
    scrollbar-color: var(--dmp-primary) #f1f5f9;
}

.process-cards-container::-webkit-scrollbar {
    height: 8px;
}

.process-cards-container::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.process-cards-container::-webkit-scrollbar-thumb {
    background: var(--dmp-primary);
    border-radius: 10px;
}

.process-cards-container::-webkit-scrollbar-thumb:hover {
    background: var(--dmp-secondary);
}

/* Process Card - 3D Flip Effect */
.process-card-unique {
    position: relative;
    min-width: 320px;
    height: 450px;
    scroll-snap-align: center;
    perspective: 1000px;
    flex-shrink: 0;
}

.card-inner-unique {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.process-card-unique:hover .card-inner-unique {
    transform: rotateY(180deg);
}

/* Front Face */
.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 30px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backface-visibility: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-card-unique:hover .card-front {
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.15);
}

.step-number-big {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.step-icon-big {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }
}

.step-icon-big i {
    font-size: 3rem;
    color: #ffffff;
}

.step-title-unique {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.step-arrow {
    margin-top: auto;
    color: var(--dmp-primary);
    font-size: 1.5rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Back Face */
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    border-radius: 30px;
    padding: 40px 30px;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.back-content {
    text-align: center;
    color: #ffffff;
}

.back-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.back-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.back-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.back-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Progress Connector */
.progress-connector {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.connector-line {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    position: relative;
}

.connector-dot {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--dmp-primary);
    border-radius: 50%;
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

/* Final Card - Special Design */
.final-card .card-inner-unique {
    transform: none !important;
}

.final-front {
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%) !important;
    border: none !important;
}

.final-front .step-title-unique {
    color: #ffffff;
    font-size: 2rem;
}

.rocket-animation {
    position: relative;
    margin-bottom: 30px;
}

.rocket-animation i {
    font-size: 5rem;
    color: #ffffff;
    animation: rocketLaunch 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.rocket-trail {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(10px);
    animation: trailPulse 1s ease-in-out infinite;
}

@keyframes trailPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleY(1.2);
    }
}

.final-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.final-badges span {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.final-badges span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
}

/* Navigation Arrows */
.scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-nav:hover {
    background: var(--dmp-primary);
    border-color: var(--dmp-primary);
    transform: translateY(-50%) scale(1.1);
}

.scroll-nav i {
    font-size: 1.5rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.scroll-nav:hover i {
    color: #ffffff;
}

.scroll-nav-left {
    left: 10px;
}

.scroll-nav-right {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .dmp-process-unique {
        padding: 60px 0;
    }
    
    .process-card-unique {
        min-width: 280px;
        height: 400px;
    }
    
    .step-number-big {
        font-size: 4rem;
    }
    
    .step-icon-big {
        width: 80px;
        height: 80px;
    }
    
    .step-icon-big i {
        font-size: 2.5rem;
    }
    
    .step-title-unique {
        font-size: 1.3rem;
    }
    
    .back-title {
        font-size: 1.2rem;
    }
    
    .back-text {
        font-size: 0.9rem;
    }
    
    .scroll-nav {
        width: 40px;
        height: 40px;
    }
    
    .scroll-nav i {
        font-size: 1.2rem;
    }
    
    .scroll-hint {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .process-card-unique {
        min-width: 260px;
        height: 380px;
    }
    
    .card-front,
    .card-back {
        padding: 30px 20px;
    }
    
    .scroll-nav {
        display: none;
    }
}

/* ==========================================================================
   3D ORBITAL TIMELINE - YÖRÜNGELİ ÇALIŞMA SÜRECİ
   ========================================================================== */
.dmp-process-orbital {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Canvas Background */
.orbital-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Section Badge & Title Styling */
.orbital-badge {
    background: rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.orbital-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(102, 126, 234, 0.5); }
    50% { text-shadow: 0 0 60px rgba(102, 126, 234, 0.8), 0 0 80px rgba(118, 75, 162, 0.6); }
}

.orbital-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Orbital System Wrapper */
.orbital-system-wrapper {
    position: relative;
    z-index: 1;
    perspective: 2000px;
    perspective-origin: 50% 50%;
}

.orbital-system {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 800px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

/* Central Core (Merkez Küre) */
.orbital-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    animation: coreFloat 4s ease-in-out infinite;
}

@keyframes coreFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.core-sphere {
    width: 180px;
    height: 180px;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    box-shadow: 
        0 0 60px rgba(102, 126, 234, 0.8),
        0 0 100px rgba(118, 75, 162, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
    animation: spherePulse 3s ease-in-out infinite;
}

@keyframes spherePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 
            0 0 60px rgba(102, 126, 234, 0.8),
            0 0 100px rgba(118, 75, 162, 0.6),
            inset 0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.1); 
        box-shadow: 
            0 0 80px rgba(102, 126, 234, 1),
            0 0 120px rgba(118, 75, 162, 0.8),
            inset 0 0 60px rgba(255, 255, 255, 0.3);
    }
}

.core-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.ring-2 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation-delay: 2s;
}

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

.core-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.core-icon i {
    font-size: 4rem;
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    animation: rocketLaunch 3s ease-in-out infinite;
}

@keyframes rocketLaunch {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    25% { transform: rotate(-10deg) translateY(-15px); }
    50% { transform: rotate(-20deg) translateY(-5px); }
    75% { transform: rotate(-15deg) translateY(-12px); }
}

.core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.4; }
}

.core-label {
    text-align: center;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 200px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Orbital Paths Container */
.orbital-paths {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Orbital Step */
.orbital-step {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    transform-style: preserve-3d;
    animation: orbitRotation 30s linear infinite;
}

@keyframes orbitRotation {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(400px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(400px) rotate(-360deg); }
}

.orbital-step:nth-child(1) {
    animation-delay: 0s;
}

.orbital-step:nth-child(2) {
    animation-delay: -5s;
}

.orbital-step:nth-child(3) {
    animation-delay: -10s;
}

.orbital-step:nth-child(4) {
    animation-delay: -15s;
}

.orbital-step:nth-child(5) {
    animation-delay: -20s;
}

.orbital-step:nth-child(6) {
    animation-delay: -25s;
}

/* Orbit Trail */
.orbit-trail {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

/* Step Card */
.step-card {
    position: relative;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(102, 126, 234, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-card:hover {
    transform: scale(1.15) translateZ(50px);
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(102, 126, 234, 0.6),
        0 0 100px rgba(118, 75, 162, 0.4);
}

/* Step Number */
.step-number {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.step-number span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    border: 3px solid #10b981;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 30px rgba(16, 185, 129, 0.4);
    }
}

.number-circle {
    display: none; /* Basitleştir */
}

/* Step Icon */
.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.icon-orbit-ring {
    display: none; /* Basitleştir */
}

.step-icon {
    font-size: 2.5rem;
    color: var(--dmp-primary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.icon-particles {
    display: none; /* Basitleştir */
}

/* Step Title & Detail */
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Step Detail - AÇIKLAMALAR HER ZAMAN GÖRÜNSÜN */
.step-detail {
    margin-top: 10px;
    opacity: 1;
    max-height: none;
}

.step-detail p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.detail-badge {
    display: none; /* Basitleştir */
}

.step-detail {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-card:hover .step-detail {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.step-detail p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    padding: 8px 16px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-badge i {
    font-size: 1rem;
}

/* Connection Line to Core */
.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step-card:hover .connection-line {
    opacity: 1;
}

.animated-line {
    animation: lineFlow 2s linear infinite;
}

@keyframes lineFlow {
    0% { stroke-dashoffset: 10; }
    100% { stroke-dashoffset: 0; }
}

/* Data Points (Floating Dots) */
.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.data-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--dmp-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(118, 75, 162, 0.8);
    animation: dataDotFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.data-dot:nth-child(1) {
    top: 20%;
    left: 10%;
}

.data-dot:nth-child(2) {
    top: 60%;
    right: 15%;
}

.data-dot:nth-child(3) {
    bottom: 20%;
    left: 50%;
}

@keyframes dataDotFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.3; }
}

/* Orbital Hint (Control Text) */
.orbital-hint {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    animation: hintBounce 2s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.orbital-hint i {
    font-size: 1.5rem;
    animation: mouseShake 1s ease-in-out infinite;
}

@keyframes mouseShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Process Stats Orbital */
.process-stats-orbital {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item-orbital {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(26, 31, 58, 0.9);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 20px 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: statSlideIn 1s ease-out backwards;
}

.stat-item-orbital:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item-orbital:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item-orbital:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-item-orbital:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(102, 126, 234, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.stat-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-content strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Orbital CTA Button */
.btn-orbital-cta {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    padding: 0;
    overflow: hidden;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-orbital-cta:hover {
    transform: translateY(-5px) scale(1.05);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dmp-primary) 0%, var(--dmp-secondary) 100%);
    animation: ctaBgShift 3s ease-in-out infinite;
}

@keyframes ctaBgShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    z-index: 1;
}

.cta-content i {
    animation: iconBounce 1s ease-in-out infinite;
}

.cta-content i.bi-rocket-takeoff {
    animation: rocketShake 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Section Color Overrides */
.dmp-process-orbital .dmp-section-badge,
.dmp-process-orbital .dmp-section-title,
.dmp-process-orbital .dmp-section-description {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .orbital-system {
        height: 700px;
    }
    
    .orbital-step {
        width: 260px;
    }
    
    @keyframes orbitRotation {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(350px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(350px) rotate(-360deg); }
    }
}

@media (max-width: 992px) {
    .dmp-process-orbital {
        padding: 80px 0;
    }
    
    .orbital-system {
        height: 600px;
    }
    
    .orbital-step {
        width: 240px;
    }
    
    @keyframes orbitRotation {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(280px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(280px) rotate(-360deg); }
    }
    
    .core-sphere {
        width: 150px;
        height: 150px;
    }
    
    .core-icon i {
        font-size: 3rem;
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .process-stats-orbital {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .dmp-process-orbital {
        padding: 60px 0;
    }
    
    .orbital-title {
        font-size: 2rem;
    }
    
    .orbital-desc {
        font-size: 1rem;
    }
    
    .orbital-system {
        height: 500px;
    }
    
    .orbital-step {
        width: 200px;
    }
    
    @keyframes orbitRotation {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(220px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(220px) rotate(-360deg); }
    }
    
    .step-card {
        padding: 20px 15px;
        min-height: 240px;
    }
    
    .step-card:hover {
        transform: scale(1.1) translateZ(30px);
    }
    
    .core-sphere {
        width: 120px;
        height: 120px;
    }
    
    .core-icon i {
        font-size: 2.5rem;
    }
    
    .core-label {
        font-size: 1rem;
        margin-top: 150px;
    }
    
    .step-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .step-number span {
        font-size: 1.6rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-detail p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .process-stats-orbital {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-item-orbital {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .orbital-hint {
        font-size: 0.8rem;
        bottom: -60px;
    }
    
    .btn-orbital-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .dmp-process-orbital {
        padding: 50px 0;
    }
    
    .orbital-title {
        font-size: 1.75rem;
    }
    
    .orbital-system {
        height: 450px;
    }
    
    .orbital-step {
        width: 170px;
    }
    
    @keyframes orbitRotation {
        0% { transform: translate(-50%, -50%) rotate(0deg) translateX(180px) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg) translateX(180px) rotate(-360deg); }
    }
    
    .step-card {
        padding: 15px 12px;
        min-height: 200px;
    }
    
    .step-title {
        font-size: 0.85rem;
    }
    
    .step-detail p {
        font-size: 0.75rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
    }
    
    .step-number span {
        font-size: 1.4rem;
    }
    
    .core-sphere {
        width: 100px;
        height: 100px;
    }
    
    .core-icon i {
        font-size: 2rem;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .btn-orbital-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}



/* ==========================================================================
   EASTER EGG GAME - CATCH THE FLOATING GEMS
   ========================================================================== */

/* Game Trigger Button */
.gem-game-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

.gem-game-trigger.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.gem-game-trigger:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 50px rgba(245, 87, 108, 0.6);
}

.gem-game-trigger i {
    font-size: 2rem;
    color: #ffffff;
    animation: gemSpin 3s ease-in-out infinite;
}

@keyframes gemSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(0.9); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

.trigger-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(245, 87, 108, 0.8);
    animation: triggerPulse 2s ease-out infinite;
}

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

.trigger-text {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #f5576c;
    font-size: 1.2rem;
    animation: questionBounce 1s ease-in-out infinite;
}

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

/* Game Modal */
.gem-game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.5s ease-out;
}

.gem-game-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gem-game-container {
    width: 90%;
    max-width: 900px;
    height: 90vh;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    animation: containerZoomIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes containerZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Game Header */
.game-header {
    padding: 20px 30px;
    background: rgba(26, 31, 58, 0.9);
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--dmp-primary);
}

.stat-item span {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    min-width: 40px;
    text-align: center;
}

.combo-stat {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.combo-stat.active {
    animation: comboShake 0.3s ease-in-out;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes comboShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    75% { transform: translateX(5px) rotate(2deg); }
}

.game-close-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 75, 75, 0.2);
    border: 2px solid rgba(255, 75, 75, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-close-btn:hover {
    background: rgba(255, 75, 75, 0.4);
    transform: rotate(90deg);
}

.game-close-btn i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Game Info Screen */
.game-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 80%;
    max-width: 500px;
}

.game-info.hidden {
    display: none;
}

.game-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.game-title i {
    font-size: 3rem;
    color: #f093fb;
    animation: gemFloat 2s ease-in-out infinite;
}

.game-title h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.game-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.game-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.legend-item {
    background: rgba(26, 31, 58, 0.6);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.legend-item span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.game-start-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.game-start-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Game Canvas */
.game-canvas {
    position: relative;
    width: 100%;
    height: calc(100% - 90px);
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Floating Gem */
.floating-gem {
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 3rem;
    cursor: pointer;
    z-index: 5;
    animation: gemFloatAnim 3s ease-in-out infinite;
    transition: all 0.2s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.floating-gem:hover {
    transform: scale(1.3) rotate(20deg);
}

@keyframes gemFloatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.floating-gem.caught {
    animation: gemCatch 0.5s ease-out forwards;
}

@keyframes gemCatch {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5) rotate(360deg); }
    100% { transform: scale(0) rotate(720deg); opacity: 0; }
}

.floating-gem.explode {
    animation: bombExplode 0.5s ease-out forwards;
}

@keyframes bombExplode {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2) rotate(180deg); opacity: 0.5; }
    100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

/* Particle Effect */
.gem-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    animation: particleBurst 1s ease-out forwards;
}

@keyframes particleBurst {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* Score Popup */
.score-popup {
    position: absolute;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    pointer-events: none;
    z-index: 15;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: scorePopup 1s ease-out forwards;
}

@keyframes scorePopup {
    0% { transform: translateY(0) scale(0); opacity: 1; }
    50% { transform: translateY(-50px) scale(1.5); }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Screen Shake */
@keyframes screenShake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-10px, 5px); }
    20% { transform: translate(10px, -5px); }
    30% { transform: translate(-10px, -5px); }
    40% { transform: translate(10px, 5px); }
    50% { transform: translate(-10px, 5px); }
    60% { transform: translate(10px, -5px); }
    70% { transform: translate(-10px, -5px); }
    80% { transform: translate(10px, 5px); }
    90% { transform: translate(-10px, 5px); }
}

.game-canvas.shake {
    animation: screenShake 0.5s ease-in-out;
}

/* Game Over Screen */
.game-over-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    animation: fadeIn 0.5s ease-out;
}

.game-over-screen.active {
    display: flex;
}

.game-over-content {
    text-align: center;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.game-over-icon {
    font-size: 5rem;
    color: #ffd700;
    margin-bottom: 20px;
    animation: iconSpin 2s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.game-over-content h3 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.final-score {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.score-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.score-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(240, 147, 251, 0.5);
}

.score-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 40px;
}

.game-over-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.game-restart-btn, .game-exit-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
}

.game-restart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.game-restart-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.game-exit-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.game-exit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .gem-game-trigger {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .game-stats {
        gap: 10px;
    }
    
    .stat-item {
        padding: 8px 15px;
    }
    
    .stat-item i {
        font-size: 1.2rem;
    }
    
    .stat-item span {
        font-size: 1rem;
    }
    
    .game-title h3 {
        font-size: 2rem;
    }
    
    .game-legend {
        grid-template-columns: 1fr;
    }
    
    .floating-gem {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   EASTER EGG INTERACTIVE ELEMENTS - Gizli İnteraktif Elementler
   ========================================================================== */

/* 1. Draggable Line Breaker - Hizmetlerimiz Bölümü */
.line-breaker {
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, #ff00ff 20%, #00ffff 50%, #ff00ff 80%, transparent 100%);
    cursor: grab;
    z-index: 100;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    filter: blur(1px);
    animation: lineGlow 2s ease-in-out infinite;
}

.line-breaker.active {
    opacity: 1;
    pointer-events: all;
}

.line-breaker:active {
    cursor: grabbing;
}

@keyframes lineGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.4);
        filter: blur(1px) brightness(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 0, 255, 0.9), 0 0 60px rgba(0, 255, 255, 0.7);
        filter: blur(2px) brightness(1.5);
    }
}

/* Cracked/Broken Element Effect */
.element-cracked {
    position: relative;
    animation: crackShake 0.3s ease-in-out, elementFade 0.5s ease-out 0.3s forwards;
}

@keyframes crackShake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -5px) rotate(-5deg); }
    50% { transform: translate(10px, 5px) rotate(5deg); }
    75% { transform: translate(-5px, 10px) rotate(-3deg); }
}

@keyframes elementFade {
    0% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.5; filter: brightness(2); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Crack Lines Effect */
.crack-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
    height: 2px;
    width: 100%;
    opacity: 0;
    animation: crackAppear 0.3s ease-out forwards;
    pointer-events: none;
    z-index: 99;
}

@keyframes crackAppear {
    0% { opacity: 0; transform: scaleX(0); }
    100% { opacity: 1; transform: scaleX(1); }
}

/* 2. Clickable Secret Dots - Kategoriler */
.secret-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ffd700 0%, #ff6b00 100%);
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
    opacity: 0.3;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.secret-dot:hover {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.secret-dot.clicked {
    animation: dotExplode 0.5s ease-out forwards;
}

@keyframes dotExplode {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(3); opacity: 0.5; }
    100% { transform: scale(0); opacity: 0; }
}

/* 3. Floating Bubble Pop - Stats Section */
.pop-bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(102, 126, 234, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 50;
    animation: bubbleFloat 6s ease-in-out infinite;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pop-bubble:hover {
    transform: scale(1.2);
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

.pop-bubble.popped {
    animation: bubblePop 0.4s ease-out forwards;
}

@keyframes bubblePop {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Pop Particles */
.pop-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #667eea, #764ba2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 60;
    animation: particleShoot 0.6s ease-out forwards;
}

@keyframes particleShoot {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* 4. Glitch Text - Footer */
.glitch-trigger {
    display: inline-block;
    position: relative;
    cursor: crosshair;
    transition: all 0.1s ease;
}

.glitch-trigger:hover {
    animation: glitchAnim 0.3s infinite;
}

@keyframes glitchAnim {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.glitch-trigger::before,
.glitch-trigger::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-trigger:hover::before {
    animation: glitchBefore 0.3s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-trigger:hover::after {
    animation: glitchAfter 0.3s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitchBefore {
    0% { clip-path: inset(40% 0 30% 0); transform: translate(-2px, -2px); opacity: 0.8; }
    100% { clip-path: inset(50% 0 20% 0); transform: translate(2px, 2px); opacity: 0; }
}

@keyframes glitchAfter {
    0% { clip-path: inset(30% 0 40% 0); transform: translate(2px, 2px); opacity: 0.8; }
    100% { clip-path: inset(20% 0 50% 0); transform: translate(-2px, -2px); opacity: 0; }
}

/* 5. Matrix Rain - Client Logos */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
}

.matrix-rain.active {
    opacity: 1;
}

.matrix-drop {
    position: absolute;
    top: -20px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    animation: matrixFall 3s linear;
    pointer-events: none;
}

@keyframes matrixFall {
    0% { top: -20px; opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Score Display */
.easter-egg-score {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.5);
    border-radius: 15px;
    padding: 15px 25px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.easter-egg-score.visible {
    opacity: 1;
    transform: translateY(0);
}

.easter-egg-score .score-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.easter-egg-score .score-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .line-breaker {
        height: 150px;
        width: 2px;
    }
    
    .secret-dot {
        width: 10px;
        height: 10px;
    }
    
    .pop-bubble {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   FLOATING BUBBLE LOGOS - Yüzen Balon Logolar
   ========================================================================== */
.dmp-floating-logos-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 100px 0;
}

.floating-logos-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.floating-bubble {
    position: absolute;
    opacity: 0;
    animation: bubbleFadeIn 1s ease forwards;
}

@keyframes bubbleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bubble-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.15),
        inset 0 -4px 8px rgba(0, 0, 0, 0.05),
        inset 0 4px 8px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Bubble Shine Effect - Top left highlight */
.bubble-shine {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Bubble Content - Logo Container */
.bubble-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20%;
    z-index: 2;
}

.bubble-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.bubble-content a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Hover Effects */
.floating-bubble:hover .bubble-glass {
    transform: scale(1.15);
    box-shadow: 
        0 16px 48px rgba(102, 126, 234, 0.3),
        inset 0 -4px 8px rgba(0, 0, 0, 0.05),
        inset 0 4px 8px rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.6);
}

.floating-bubble:hover .bubble-content img {
    transform: scale(1.1);
}

/* Floating Animation - Sine wave movement */
@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatBubbleHorizontal {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

@keyframes floatBubbleDiagonal {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -25px);
    }
}

/* Pulse Animation - Scale effect */
@keyframes bubblePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Fade In/Out Animation for lifecycle */
@keyframes bubbleLifecycle {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    10%, 90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

/* Responsive Sizes */
@media (max-width: 1400px) {
    .floating-logos-container {
        min-height: 450px;
    }
}

@media (max-width: 1200px) {
    .floating-logos-container {
        min-height: 400px;
    }
    
    .bubble-content {
        padding: 18%;
    }
}

@media (max-width: 992px) {
    .dmp-floating-logos-section {
        padding: 80px 0;
    }
    
    .floating-logos-container {
        min-height: 350px;
    }
    
    .bubble-content {
        padding: 15%;
    }
}

@media (max-width: 768px) {
    .dmp-floating-logos-section {
        padding: 60px 0;
    }
    
    .floating-logos-container {
        min-height: 300px;
    }
    
    .dmp-section-title {
        font-size: 1.75rem;
    }
    
    .dmp-section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .floating-logos-container {
        min-height: 250px;
    }
}
