﻿/* 
    PAPIRA BasÄ±mevi - KURUMSAL SAYFASI (YENİ TASARIM)
*/

/* Hero Section */
.about-top-section {
    padding: 60px 0;
}

.about-title-area h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.about-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.about-breadcrumb span {
    opacity: 0.5;
}

.about-text-content .intro-text {
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 30px;
}

.about-text-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Image with Shape */
.about-image-wrapper {
    position: relative;
    padding-left: 70px;
}

.about-hero-img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 200px 0px 50px 0px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.floating-play-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.floating-play-btn i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid var(--text-dark);
}

.floating-play-btn span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.2;
}

.floating-play-btn:hover {
    transform: scale(1.05);
    background: var(--primary-gradient);
}


/* Stats Pill Bar */
.stats-pill-bar {
    background: var(--dark-bg);
    border-radius: 30px;
    padding: 40px 60px;
    margin: 60px 0;
    color: var(--white);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.stat-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.stat-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.6;
}

/* Values Section */
.values-section {
    padding: 60px 0;
}

.values-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.value-card {
    text-align: left;
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border:1px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.value-card:hover .value-icon-box {
    background: var(--primary-gradient);
    color: var(--text-dark);
    border: 1px solid var(--primary-gradient);
    transform: rotateY(360deg);
}

.value-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .about-image-wrapper { padding-left: 0; margin-top: 0; margin-bottom: 30px; }
    .about-hero-img { height: 350px; border-radius: 20px !important; }
    .stats-pill-bar { padding: 40px 20px; border-radius: 25px; }
    .stat-item { flex-direction: column; text-align: center; margin-bottom: 30px; }
    .stat-item:last-child { margin-bottom: 0; }
    .floating-play-btn { width: 100px !important; height: 100px !important; }
}

@media (max-width: 767px) {
    .about-title-area h1 { font-size: 28px !important; line-height: 1.3; }
    .about-text-content .intro-text { font-size: 14px !important; margin-bottom: 20px; }
    .about-text-content p { font-size: 14px !important; line-height: 1.7; }
    .about-hero-img { height: 240px !important; border-radius: 16px !important; }
    .floating-play-btn { 
        width: 90px !important; 
        height: 90px !important; 
        bottom: 10px !important; 
        left: 10px !important; 
    }
    .floating-play-btn i { 
        width: 32px !important; 
        height: 32px !important; 
        margin-bottom: 4px !important; 
        font-size: 11px !important; 
    }
    .floating-play-btn span { font-size: 9px !important; }
    .stats-pill-bar { padding: 25px 15px !important; margin: 30px 0 !important; border-radius: 20px !important; }
    .stat-info h3 { font-size: 18px !important; }
    .about-breadcrumb { margin-bottom: 20px !important; }
}