/* ===================================
   Uniq Türkiye - About Sayfası CSS (about.css)
   ===================================
*/

/* --- About page refresh overrides --- */
.about-page {
    --about-primary: #1f3c88;
    --about-heading: #101828;
    --about-text: #475467;
    --about-muted: #667085;
    --about-border: #e4e7ec;
    --about-soft: #f5f7fb;
    --about-surface: #ffffff;
    overflow-x: hidden;
}

.about-page .page-wrapper {
    overflow-x: hidden;
}

.about-page .page-title {
    background: url('../images/code.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 45%;
    padding: 150px 0 150px;
    min-height: 250px;
}

.about-page .page-title .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 17px;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeInUp 1s ease 0.3s forwards;
}

@keyframes titleFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-page .page-title p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
}

.about-page .page-title .title-outer {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-page .page-title .page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 16px 0 0;
}

.section-block {
    padding: 50px 0;
    background: var(--about-surface);
}

.section-block.section-muted {
    background: var(--about-soft);
}


.about-page .section-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000000;
}

.about-page .section-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000000;
}

.about-page .section-block p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 100;
    color: #9e9e9e;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--about-primary);
    margin-bottom: 16px;
}

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

.about-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.about-badge i {
    font-size: 16px;
    color: #4A7BC0;
}

.about-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A7BC0;
}

.section-intro .about-badge {
    align-items: center;
    margin: 0 auto 14px;
}

.intro-section .about-badge {
    align-items: center;
    margin-bottom: 24px;
}

.intro-section.two-column {
    padding: 110px 0 80px;
}

.about-overview {
    padding-top: 0;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 56px;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-split__content {
    flex: 1 1 50%;
}

.about-page .about-split__content h2,
.about-page .about-split__content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 24px;
}

.about-page .about-split__content h2 {
    font-size: 2rem;
}

.about-page .about-split__content h3 {
    font-size: 1.6rem;
}

.about-page .about-split__content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    color: #9e9e9e;
    margin-bottom: 18px;
}

.about-page .about-split__content p:last-of-type {
    margin-bottom: 0;
}

.about-split__media {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
    transition: transform 0.8s ease, box-shadow 0.8s ease;
}

.about-split__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.18), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.8s ease;
}

.about-split__media img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
    transition: transform 0.9s ease, filter 0.9s ease;
}

.about-split__media:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.2);
}

.about-split__media:hover::after {
    opacity: 1;
}

.about-split__media:hover img {
    transform: scale(1.08);
    filter: brightness(1.08);
}

.about-split.reveal-left .about-split__content,
.about-split.reveal-left .about-split__media,
.about-split.reveal-right .about-split__content,
.about-split.reveal-right .about-split__media {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.about-split.reveal-left .about-split__media {
    transform: translateX(-80px);
}

.about-split.reveal-left .about-split__media,
.about-split.reveal-right .about-split__media {
    transition-delay: 0s;
}

.about-split.reveal-left .about-split__content,
.about-split.reveal-right .about-split__content {
    transition-delay: 0.2s;
}

.about-split.reveal-left.revealed .about-split__media,
.about-split.reveal-left.revealed .about-split__content,
.about-split.reveal-right.revealed .about-split__media,
.about-split.reveal-right.revealed .about-split__content {
    opacity: 1;
    transform: translateX(0);
}

.about-split[data-reveal] .about-split__content > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-split[data-reveal] .about-split__content > *:nth-child(1) {
    transition-delay: 0.25s;
}

.about-split[data-reveal] .about-split__content > *:nth-child(2) {
    transition-delay: 0.45s;
}

.about-split[data-reveal] .about-split__content > *:nth-child(3) {
    transition-delay: 0.6s;
}

.about-split[data-reveal] .about-split__content > *:nth-child(4) {
    transition-delay: 0.75s;
}

.about-split[data-reveal] .about-split__content > *:nth-child(5) {
    transition-delay: 0.9s;
}

.about-split.revealed .about-split__content > * {
    opacity: 1;
    transform: translateY(0);
}

.vision-mission-section .section-intro p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 1rem;
    color: #9e9e9e;
    max-width: 640px;
    margin: 0 auto 32px;
}

@media (max-width: 991px) {
    .about-page .page-title {
        padding: 80px 0 60px;
    }

    .section-block {
        padding: 72px 0;
    }

    .about-split,
    .about-split.reverse {
        flex-direction: column;
    }

    .about-split {
        gap: 32px;
    }

    .about-split__media img {
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    }
}

@media (max-width: 767px) {
    .vision-mission-section {
        padding-top: 60px;
    }
}

@media (max-width: 575px) {
    .vision-mission-section {
        padding-top: 50px;
    }
}

.about-split.revealed .about-split__media {
    animation: aboutFloat 14s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
