/* About page scoped styles - Modern & Aesthetic Design */

/* Hero Section */
.about-hero {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 56px 0 40px;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #F59E0B;
}
.about-hero__title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 12px;
}

.about-hero__subtitle {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 24px;
    max-width: 700px;
    font-weight: 400;
}

.about-hero__visual {
    display: flex;
    justify-content: flex-end;
}

.about-hero__img {
    max-width: 360px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.06));
}

/* Breadcrumb */
.about-breadcrumb {
    margin-top: 12px;
    padding: 12px 0 16px;
}

.about-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
}

.about-breadcrumb__item {
    display: flex;
    align-items: center;
    color: #64748b;
}

.about-breadcrumb__separator {
    color: #a3a3a3;
    font-size: 10px;
    margin: 0 4px;
}

.about-breadcrumb__link {
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.about-breadcrumb__link:hover {
    color: #111111;
    border-bottom-color: #F59E0B;
}

.about-breadcrumb__current {
    color: #111111;
    font-weight: 600;
}

/* Content Section */
.about-content {
    padding: 72px 0;
    background: #fff;
}

.about-content__text {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #111111;
}

.about-content__text p {
    margin: 0 0 16px;
}

.about-content__text h2,
.about-content__text h3 {
    font-family: "Inter", system-ui, sans-serif;
    color: #111111;
    font-weight: 700;
    margin: 24px 0 12px;
}

.about-content__text a {
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.about-content__text a:hover {
    color: #111111;
    border-bottom-color: #F59E0B;
}

/* Side Card */
.about-sidecard {
    position: relative;
}

.about-sidecard__image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.about-sidecard__img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-sidecard__overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(245, 158, 11, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.about-sidecard__icon {
    color: #fff;
    font-size: 14px;
}

.about-sidecard__title {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

/* Values Section */
.about-values {
    padding: 72px 0;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

.section-title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #111111;
    margin: 0 0 32px;
    text-align: center;
}

.about-values__card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.about-values__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245,158,11,.15);
}

.about-values__icon {
    margin-bottom: 16px;
    color: #111111;
    font-size: 24px;
}

.about-values__title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    color: #111111;
    font-size: 16px;
    margin: 0 0 8px;
}

.about-values__text {
    font-family: "Inter", system-ui, sans-serif;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.about-stats {
    padding: 72px 0;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

.about-stats__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.about-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 16px;
}

.about-stats__item::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #F59E0B;
    border-radius: 2px;
}

.about-stats__value {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #111111;
    margin-bottom: 4px;
}

.about-stats__label {
    font-family: "Inter", system-ui, sans-serif;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.about-stats__divider {
    width: 1px;
    height: 32px;
    background: #eaeaea;
    flex-shrink: 0;
}

/* Timeline Section */
.about-timeline {
    padding: 72px 0;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

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


.about-timeline__step {
    position: relative;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-timeline__step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.about-timeline__dot {
    width: 40px;
    height: 40px;
    background: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    transition: all 0.2s ease;
}

.about-timeline__dot i {
    color: #fff;
    font-size: 16px;
}

.about-timeline__dot--active {
    background: #F59E0B;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #F59E0B;
}

.about-timeline__title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 600;
    color: #111111;
    font-size: 16px;
    margin: 0 0 8px;
}

.about-timeline__desc {
    font-family: "Inter", system-ui, sans-serif;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* KVKK Section */
.about-kvkk {
    padding: 72px 0;
    border-top: 1px solid #eaeaea;
    background: #fff;
}

.about-kvkk .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-kvkk__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 16px;
}

.about-kvkk__item {
    font-family: "Inter", system-ui, sans-serif;
    color: #111111;
    font-size: 15px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-kvkk__check {
    line-height: 0;
    display: inline-flex;
    margin-top: 2px;
    color: #F59E0B;
    font-size: 16px;
}

.about-kvkk__link {
    color: #64748b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

.about-kvkk__link:hover {
    color: #111111;
    border-bottom-color: #F59E0B;
}

.about-kvkk__img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}


/* Focus States */
.about-breadcrumb__link:focus,
.about-content__text a:focus,
.about-kvkk__link:focus,

/* Responsive Design */
@media (max-width: 1280px) {
    .about-hero__img {
        max-width: 320px;
    }
    .about-stats__track {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 40px 0 28px;
    }
    .about-hero__title {
        font-size: 34px;
    }
    .about-timeline__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 56px 0;
    }
    .about-values {
        padding: 56px 0;
    }
    .about-stats {
        padding: 56px 0;
    }
    .about-timeline {
        padding: 56px 0;
    }
    .about-kvkk {
        padding: 56px 0;
    }
    .about-stats__track {
        flex-direction: column;
        gap: 16px;
    }
    .about-stats__item::before {
        display: none;
    }
    .about-stats__divider {
        display: none;
    }
    .about-timeline__track {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-content .row {
        flex-direction: column-reverse;
    }
    .about-sidecard {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .about-hero__title {
        font-size: 30px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .about-sidecard,
    .about-values__card,
    .about-timeline__step,
    .about-breadcrumb__link,
    .about-content__text a,
    .about-kvkk__link {
        transition: none;
    }
    
    .about-sidecard:hover,
    .about-values__card:hover,
    .about-timeline__step:hover {
        transform: none;
    }
}

