/* ==========================================================================
   Gülen Yüz Temizlik - About Us Stylesheet (about-us.css)
   Contains styles specific to about-us.html (Story, Values, Stats, Page Banner)
   ========================================================================== */

/* ==========================================
   1. PAGE BANNER (HERO / BREADCRUMB)
   ========================================== */
.page-banner {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #153e68 100%);
    padding: 60px 0;
    color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 30%, rgba(35, 155, 65, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.page-banner-content {
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbdbee;
    margin-bottom: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: #cbdbee;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb .current {
    color: var(--accent-yellow);
    font-weight: 600;
}

.page-banner-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-banner-desc {
    font-size: 15px;
    color: #cbdbee;
    line-height: 1.6;
    font-weight: 400;
}


/* ==========================================
   2. ABOUT STORY & MISSION SECTION (2-COL)
   ========================================== */
.about-story-section {
    padding: 80px 0 50px 0;
    background-color: #ffffff;
    width: 100%;
}

.about-story-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Left Media Wrapper */
.about-media-wrapper {
    position: relative;
    width: 100%;
}

.about-main-image {
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 49, 84, 0.12);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Floating Badge */
.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--brand-green);
    color: #ffffff;
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(35, 155, 65, 0.35);
    border: 4px solid #ffffff;
}

.exp-icon-box {
    font-size: 32px;
    line-height: 1;
    color: #ffffff;
}

.exp-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: flex;
    flex-direction: column;
}

.exp-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.exp-sub {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

/* Right Content */
.about-story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-badge {
    display: inline-block;
    background-color: rgba(35, 155, 65, 0.1);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-story-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-story-title .highlight {
    color: var(--brand-green);
}

.about-story-p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-highlights-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.about-highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-blue);
}

.about-highlights-list li i {
    color: var(--brand-green);
    font-size: 16px;
    flex-shrink: 0;
}


/* ==========================================
   3. CORE VALUES SECTION (4 CARDS)
   ========================================== */
.values-section {
    padding: 70px 0 40px 0;
    background-color: #fbfcfd;
    border-top: 1px solid #f0f4f8;
    width: 100%;
}

.values-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-main-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 18px rgba(11, 49, 84, 0.04);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(11, 49, 84, 0.1);
    border-color: #d6e2ee;
}

.value-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.value-icon-box.icon-blue {
    background-color: var(--brand-blue);
}

.value-icon-box.icon-green {
    background-color: var(--brand-green);
}

.value-icon-box.icon-yellow {
    background-color: var(--accent-yellow);
    color: #111111;
}

.value-icon-box.icon-purple {
    background-color: #8e44ad;
}

.value-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.value-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}


/* ==========================================
   4. STATS COUNTER SECTION
   ========================================== */
.stats-section {
    padding: 60px 0;
    background-color: var(--brand-blue);
    width: 100%;
}

.stats-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.stat-icon {
    font-size: 28px;
    color: var(--brand-green);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: #cbdbee;
    font-weight: 500;
}


/* ==========================================
   5. RESPONSIVE ABOUT US STYLES
   ========================================== */

/* Tablet Screens (<= 1024px) */
@media (max-width: 1024px) {
    .page-banner-container,
    .about-story-container,
    .values-container,
    .stats-container {
        margin: 0 3%;
    }

    .about-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-media-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-exp-badge {
        right: 10px;
        bottom: -20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .page-banner {
        padding: 45px 0;
    }

    .page-banner-container,
    .about-story-container,
    .values-container,
    .stats-container {
        margin: 0 16px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .about-story-title {
        font-size: 26px;
    }

    .about-main-image {
        height: 320px;
    }

    .about-exp-badge {
        padding: 12px 18px;
        border-radius: 12px;
        gap: 10px;
        right: 0;
        bottom: -15px;
    }

    .exp-number {
        font-size: 28px;
    }

    .exp-title {
        font-size: 13px;
    }

    .exp-sub {
        font-size: 10px;
    }

    .section-main-title {
        font-size: 26px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 18px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
    .page-banner {
        padding: 35px 0;
    }

    .page-banner-container,
    .about-story-container,
    .values-container,
    .stats-container {
        margin: 0 10px;
    }

    .page-banner-title {
        font-size: 24px;
    }

    .about-story-title {
        font-size: 22px;
    }

    .about-main-image {
        height: 240px;
    }

    .about-exp-badge {
        position: static;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
        border: none;
    }

    .section-main-title {
        font-size: 22px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
