/* --- DUALSENSE TAMIRI GLOBAL & MODERN DESIGN SYSTEM --- */
:root {
    --ds-primary: #007aff;    /* Apple Blue */
    --ds-success: #34c759;    /* TMR Green */
    --ds-orange: #ff9500;     /* Warning/Action Orange */
    --ds-dark: #1d1d1f;       /* Modern Black */
    --ds-bg-light: #f5f5f7;   /* Soft Gray BG */
    --ds-glass: rgba(255, 255, 255, 0.8);
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fff;
    color: var(--ds-dark);
    overflow-x: hidden;
}

/* Okunabilir metin: justify kelime aralarını açar */
p, .lead, article, .content-box p, .seo-content-area article p {
    text-align: start;
    word-spacing: normal;
    letter-spacing: normal;
    line-height: 1.65;
}

/* --- 1. HERO & SLIDER --- */
.hero-slider .carousel-item {
    height: 80vh;
    min-height: 600px;
    background-color: #000;
}

.slider-image {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.4); /* Yazıların okunması için ideal */
    transition: transform 10s ease-in-out;
}

.carousel-item.active .slider-image { transform: scale(1.1); }

.hero-text-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    max-width: 800px;
}

/* --- 2. BENTO GRID & KEŞİF KARTLARI --- */
.discovery-card, .bento-card, .process-card {
    background: #fff;
    border: none;
    border-radius: 35px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    height: 100%;
}

.discovery-card:hover, .bento-card:hover, .process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,122,255,0.1) !important;
}

/* Analog İnteraktif Efekt */
.analog-interact-box { position: relative; width: 160px; height: 160px; margin: 0 auto; }
.analog-outer { width: 100%; transition: 0.5s ease; }
.analog-inner {
    position: absolute; top: 0; left: 0; width: 100%;
    opacity: 0; transform: scale(0.8) rotate(-20deg);
    transition: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.discovery-card:hover .analog-outer { opacity: 0.1; transform: scale(1.1); }
.discovery-card:hover .analog-inner { opacity: 1; transform: scale(1) rotate(0deg); }

/* --- 3. LIVE STATS & MARQUEE --- */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.marquee-section {
    background: #000;
    padding: 15px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.marquee-item i { color: var(--ds-primary); margin-right: 10px; }

/* --- 4. BUTONLAR & YARDIMCI SINIFLAR --- */
.btn-ds {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s all;
    border: none;
}

.btn-orange-glow {
    background: var(--ds-orange);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 149, 0, 0.3);
}

.btn-orange-glow:hover {
    background: #e68600;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 149, 0, 0.5);
    color: white;
}

.floating-anim { animation: floating 4s ease-in-out infinite; }
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- 5. İÇERİK & MENÜ FIXES --- */
.content-box h2 {
    scroll-margin-top: 120px; /* Menüye çarpmayı önler */
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.small-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 3px; background: var(--ds-primary); border-radius: 2px;
}

/* Mega Menü Fix */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .mega-menu {
        pointer-events: auto;
        display: block;
        opacity: 1;
    }
}