/* =========================================
   TAM SAYFA DUWY TASARIMI (ABOUT CSS)
   ========================================= */

/* Ortak Boşluklar ve Araçlar */
.mt-10 { margin-top: 8rem; }
.mb-10 { margin-bottom: 8rem; }
.pb-10 { padding-bottom: 8rem; }

/* 1. HERO BÖLÜMÜ */
.dw-hero-section {
    padding-top: 18vh;
}

.dw-huge-title {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 12vw, 11rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -4px;
    color: var(--text-main);
    margin: 0;
}

.dw-tag {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: #ffffff;
}

/* 2. ORTAK BADGE & BAŞLIKLAR */
.dw-badge {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
}

.dw-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-main);
    margin: 0;
}

/* 3. VİDEO & İSTATİSTİKLER */
.dw-video-wrapper {
    aspect-ratio: 16/9;
    background: #e0e0e0;
    cursor: pointer;
}

.dw-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.dw-video-wrapper:hover .dw-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #e95332; /* Turuncu Vurgu */
}

.dw-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

/* 4. HİZMET KARTLARI (BENTO) */
.dw-service-card {
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.dw-service-card.light { background: #ffffff; }
.dw-service-card.dark { background: #111111; border: none; }

.dw-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.dw-card-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.dw-service-card:hover .dw-card-arrow {
    transform: translate(5px, -5px);
}

.btn-dark-pill {
    display: inline-flex;
    padding: 1.2rem 3rem;
    background: var(--text-main);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}
.btn-dark-pill:hover { background: #333333; color: #ffffff; }

/* 5. DENEYİM (TIMELINE) */
.dw-timeline-item {
    transition: background 0.3s ease, padding 0.3s ease;
    cursor: pointer;
    border-color: rgba(0,0,0,0.1) !important;
}

.dw-timeline-item:hover {
    background: #f4f4f0; /* Üzerine gelince hover efekti */
}

/* Mobil */
@media (max-width: 991px) {
    .dw-hero-section { padding-top: 12vh; }
    .dw-huge-title { letter-spacing: -2px; }
    .dw-connect-title { letter-spacing: -2px; }
    .mt-10 { margin-top: 4rem; }
    .mb-10 { margin-bottom: 4rem; }
}

/* =========================================
   SOSYAL MEDYA İKONLARI (HERO SAĞ ALT)
   ========================================= */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid transparent;
}

.social-icon:hover {
    color: var(--text-main);
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.05);
    transform: translateY(-4px); 
}

.social-icon svg {
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}
