/*
 * HAKKIMIZDA SAYFASI - MOBILE RESPONSIVE (v4.0)
 * Mobile-first yaklaşım, tüm cihazlara uyumlu
*/

/* ===================================
   1. FULL SCREEN SPLIT HERO
=================================== */
.about-hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

/* Sol taraf - İçerik */
.hero-content-side {
    background: var(--color-primary);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-content-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.hero-pretitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sağ taraf - Görsel */
.hero-image-side {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 50vh;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-image-text {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
}

/* ===================================
   2. STORY SECTION - OVERLAP LAYOUT
=================================== */
.about-story {
    position: relative;
    padding: 60px 0;
    background: #FFFFFF;
}

.story-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.story-content {
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(30, 77, 43, 0.08);
    color: var(--color-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.story-title {
    font-size: 1.8rem;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.story-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-quote {
    margin-top: 30px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 12px 12px 0;
}

.story-quote p {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 600;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.story-images {
    display: grid;
    gap: 20px;
}

.story-image-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}

.story-image-box:hover {
    transform: scale(1.02);
}

.story-image-box img {
    width: 100%;
    display: block;
}

/* ===================================
   3. VALUES - BENTO GRID LAYOUT
=================================== */
.about-values {
    padding: 60px 0;
    background: var(--color-secondary);
}

.values-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.values-header {
    text-align: center;
    margin-bottom: 40px;
}

.values-title {
    font-size: 1.8rem;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.values-subtitle {
    font-size: 1rem;
    color: var(--color-text);
    max-width: 100%;
    margin: 0 auto;
}

/* Bento Grid - Mobile */
.values-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.value-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.value-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-box:hover::before {
    transform: scaleX(1);
}

.value-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.value-icon-wrapper i {
    font-size: 1.5rem;
    color: #FFFFFF;
}

.value-box h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   4. TIMELINE - HORIZONTAL SCROLL
=================================== */
.about-timeline {
    padding: 60px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.timeline-scroll {
    display: flex;
    gap: 20px;
    padding: 0 20px 30px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f0f0f0;
    -webkit-overflow-scrolling: touch;
}

.timeline-scroll::-webkit-scrollbar {
    height: 6px;
}

.timeline-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.timeline-item {
    min-width: 220px;
    background: var(--color-secondary);
    border-radius: 16px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-year-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(30, 77, 43, 0.3);
}

.timeline-item h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   5. TEAM - CARDS GRID
=================================== */
.about-team {
    padding: 60px 0;
    background: var(--color-secondary);
}

.team-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px 20px;
}

.team-name {
    font-size: 1.3rem;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.team-title {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-tag {
    padding: 5px 12px;
    background: rgba(30, 77, 43, 0.08);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 77, 43, 0.3);
}

/* ===================================
   6. CTA - FULL WIDTH
=================================== */
.about-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    text-align: center;
}

.cta-content {
    max-width: 100%;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-white {
    display: inline-block;
    padding: 14px 35px;
    background: #FFFFFF;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ===================================
   7. RESPONSIVE - TABLET & DESKTOP
=================================== */

/* Tablet - 768px+ */
@media (min-width: 768px) {
    .hero-content-side {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .story-container,
    .values-container,
    .team-container {
        padding: 0 40px;
    }

    .story-title,
    .values-title,
    .cta-title {
        font-size: 2.5rem;
    }

    .values-bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-cta {
        padding: 80px 40px;
    }
}

/* Desktop Small - 1024px+ */
@media (min-width: 1024px) {
    .about-hero-split {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content-side {
        padding: 80px 60px;
        min-height: 100vh;
    }

    .hero-image-side {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .about-story {
        padding: 100px 0;
    }

    .story-layout {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }

    .story-content {
        position: sticky;
        top: 120px;
    }

    .values-bento {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Desktop Large - 1200px+ */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .story-container,
    .values-container,
    .team-container {
        max-width: 1400px;
        padding: 0 60px;
    }

    .story-layout {
        gap: 80px;
    }

    .about-values {
        padding: 120px 0;
    }

    .about-team {
        padding: 120px 0;
    }

    .values-bento {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    /* Grid özel boyutlar - sadece desktop'ta */
    .value-box:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .value-box:nth-child(2) {
        grid-column: span 2;
    }

    .value-box:nth-child(3) {
        grid-column: span 2;
    }

    .value-box:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .value-box:nth-child(5) {
        grid-column: span 2;
    }

    .value-box:nth-child(6) {
        grid-column: span 2;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .cta-content {
        max-width: 800px;
    }

    .cta-title {
        font-size: 3rem;
    }

    .about-cta {
        padding: 100px 60px;
    }
}