/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SECTIONS - Hakkımızda Sayfası
═══════════════════════════════════════════════════════════════ */

:root {
    --ab-black: #0a0a0a;
    --ab-charcoal: #1a1a1a;
    --ab-dark: #121212;
    --ab-gold: #c9a962;
    --ab-gold-light: #e0c98a;
    --ab-white: #ffffff;
    --ab-cream: #f8f6f3;
    --ab-gray: #8a8a8a;
    --ab-gray-light: #b5b5b5;
    --ab-font-display: 'Cormorant Garamond', serif;
    --ab-font-body: 'Montserrat', sans-serif;
    --ab-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT HERO
═══════════════════════════════════════════════════════════════ */

#ab-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--ab-dark) 0%, var(--ab-charcoal) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

#ab-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

#ab-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--ab-cream), transparent);
}

.ab-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ab-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ab-hero__tag-line {
    width: 40px;
    height: 2px;
    background: var(--ab-gold);
}

.ab-hero__tag-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ab-gold);
}

.ab-hero__title {
    font-family: var(--ab-font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 600;
    color: var(--ab-white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.ab-hero__title span {
    color: var(--ab-gold);
}

.ab-hero__desc {
    font-size: 16px;
    color: var(--ab-gray-light);
    line-height: 1.9;
    margin-bottom: 40px;
}

.ab-hero__stats {
    display: flex;
    gap: 48px;
}

.ab-hero__stat {
    text-align: center;
}

.ab-hero__stat-num {
    font-family: var(--ab-font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--ab-gold);
    display: block;
}

.ab-hero__stat-text {
    font-size: 12px;
    color: var(--ab-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ab-hero__image {
    position: relative;
    height: 550px;
}

.ab-hero__img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.ab-hero__img-accent {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 220px;
    height: 280px;
    background: var(--ab-gold);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ab-hero__img-accent i {
    font-size: 36px;
    color: var(--ab-dark);
    margin-bottom: 16px;
}

.ab-hero__img-accent span {
    font-family: var(--ab-font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ab-dark);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT STORY
═══════════════════════════════════════════════════════════════ */

#ab-story {
    padding: 120px 0;
    background: var(--ab-cream);
}

.ab-story__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.ab-story__images {
    position: relative;
    height: 600px;
}

.ab-story__img1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    object-fit: cover;
}

.ab-story__img2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    object-fit: cover;
    border: 8px solid var(--ab-cream);
}

.ab-story__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--ab-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.4);
}

.ab-story__badge-num {
    font-family: var(--ab-font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--ab-dark);
}

.ab-story__badge-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ab-charcoal);
}

.ab-story__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: 16px;
}

.ab-story__title {
    font-family: var(--ab-font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--ab-charcoal);
    margin-bottom: 24px;
    line-height: 1.2;
}

.ab-story__title span {
    color: var(--ab-gold);
}

.ab-story__text {
    font-size: 15px;
    color: var(--ab-gray);
    line-height: 1.9;
    margin-bottom: 24px;
}

.ab-story__list {
    margin-top: 32px;
}

.ab-story__list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.ab-story__list-icon {
    width: 28px;
    height: 28px;
    background: var(--ab-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-story__list-icon i {
    font-size: 12px;
    color: var(--ab-dark);
}

.ab-story__list-text {
    font-size: 14px;
    color: var(--ab-charcoal);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT VALUES
═══════════════════════════════════════════════════════════════ */

#ab-values {
    padding: 100px 0;
    background: var(--ab-charcoal);
}

.ab-values__header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-values__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: 16px;
}

.ab-values__title {
    font-family: var(--ab-font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--ab-white);
}

.ab-values__title span {
    color: var(--ab-gold);
}

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

.ab-value {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.1);
    text-align: center;
    transition: var(--ab-transition);
    position: relative;
    overflow: hidden;
}

.ab-value::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--ab-gold);
    transform: scaleX(0);
    transition: var(--ab-transition);
}

.ab-value:hover {
    background: rgba(201, 169, 98, 0.08);
    transform: translateY(-8px);
}

.ab-value:hover::before {
    transform: scaleX(1);
}

.ab-value__icon {
    font-size: 40px;
    color: var(--ab-gold);
    margin-bottom: 24px;
}

.ab-value__title {
    font-family: var(--ab-font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ab-white);
    margin-bottom: 12px;
}

.ab-value__text {
    font-size: 13px;
    color: var(--ab-gray-light);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT TEAM
═══════════════════════════════════════════════════════════════ */

#ab-team {
    padding: 100px 0;
    background: var(--ab-cream);
}

.ab-team__header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-team__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: 16px;
}

.ab-team__title {
    font-family: var(--ab-font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--ab-charcoal);
}

.ab-team__title span {
    color: var(--ab-gold);
}

.ab-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ab-member {
    background: var(--ab-white);
    overflow: hidden;
    transition: var(--ab-transition);
}

.ab-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.ab-member__img {
    height: 320px;
    background: var(--ab-charcoal);
    position: relative;
    overflow: hidden;
}

.ab-member__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ab-transition);
    filter: grayscale(20%);
}

.ab-member:hover .ab-member__img img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.ab-member__social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--ab-transition);
}

.ab-member:hover .ab-member__social {
    opacity: 1;
    transform: translateY(0);
}

.ab-member__social a {
    width: 36px;
    height: 36px;
    background: var(--ab-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-dark);
    font-size: 14px;
    text-decoration: none;
    transition: var(--ab-transition);
}

.ab-member__social a:hover {
    background: var(--ab-white);
}

.ab-member__info {
    padding: 24px;
    text-align: center;
}

.ab-member__name {
    font-family: var(--ab-font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ab-charcoal);
    margin-bottom: 4px;
}

.ab-member__role {
    font-size: 12px;
    color: var(--ab-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT TIMELINE
═══════════════════════════════════════════════════════════════ */

#ab-timeline {
    padding: 100px 0;
    background: var(--ab-white);
}

.ab-timeline__header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-timeline__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ab-gold);
    margin-bottom: 16px;
}

.ab-timeline__title {
    font-family: var(--ab-font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--ab-charcoal);
}

.ab-timeline__title span {
    color: var(--ab-gold);
}

.ab-timeline__line {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.ab-timeline__line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ab-gold);
    transform: translateX(-50%);
}

.ab-tl-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.ab-tl-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.ab-tl-item__content {
    width: 45%;
    padding: 32px;
    background: var(--ab-cream);
    transition: var(--ab-transition);
}

.ab-tl-item:hover .ab-tl-item__content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ab-tl-item__year {
    font-family: var(--ab-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ab-gold);
    margin-bottom: 8px;
}

.ab-tl-item__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ab-charcoal);
    margin-bottom: 8px;
}

.ab-tl-item__text {
    font-size: 14px;
    color: var(--ab-gray);
    line-height: 1.7;
}

.ab-tl-item__dot {
    width: 24px;
    height: 24px;
    background: var(--ab-gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px var(--ab-white);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT CERTIFICATES
═══════════════════════════════════════════════════════════════ */

#ab-certs {
    padding: 80px 0;
    background: var(--ab-charcoal);
}

.ab-certs__title {
    font-family: var(--ab-font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--ab-white);
    text-align: center;
    margin-bottom: 48px;
}

.ab-certs__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.ab-certs__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ab-white);
    transition: var(--ab-transition);
}

.ab-certs__item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.ab-certs__item i {
    font-size: 32px;
    color: var(--ab-gold);
}

.ab-certs__item span {
    font-size: 14px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT CTA
═══════════════════════════════════════════════════════════════ */

#ab-cta {
    padding: 100px 0;
    background: var(--ab-gold);
    text-align: center;
}

.ab-cta__title {
    font-family: var(--ab-font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--ab-dark);
    margin-bottom: 16px;
}

.ab-cta__text {
    font-size: 16px;
    color: var(--ab-charcoal);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ab-cta__btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ab-btn--dark {
    background: var(--ab-charcoal);
    color: var(--ab-white);
    padding: 18px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--ab-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ab-btn--dark:hover {
    background: var(--ab-dark);
    transform: translateY(-3px);
}

.ab-btn--white {
    background: var(--ab-white);
    color: var(--ab-charcoal);
    padding: 18px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--ab-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ab-btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {

    .ab-values__grid,
    .ab-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .ab-hero__grid,
    .ab-story__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ab-hero__image {
        height: 400px;
    }

    .ab-tl-item,
    .ab-tl-item:nth-child(odd) {
        flex-direction: column;
        text-align: center;
    }

    .ab-tl-item__content {
        width: 100%;
    }

    .ab-timeline__line::before {
        left: 20px;
    }

    .ab-tl-item__dot {
        left: 20px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .ab-wrap {
        padding: 0 24px;
    }

    .ab-values__grid,
    .ab-team__grid {
        grid-template-columns: 1fr;
    }

    .ab-hero__stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    #ab-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .ab-hero__title {
        font-size: 36px;
    }

    .ab-hero__image {
        height: 350px;
    }

    .ab-hero__img-accent {
        width: 160px;
        height: 200px;
        padding: 16px;
    }

    .ab-hero__img-accent i {
        font-size: 28px;
    }

    .ab-hero__img-accent span {
        font-size: 18px;
    }

    .ab-story__images {
        height: 400px;
    }

    .ab-story__title,
    .ab-values__title,
    .ab-team__title,
    .ab-timeline__title {
        font-size: 32px;
    }

    .ab-cta__title {
        font-size: 36px;
    }

    .ab-member__img {
        height: 280px;
    }
}