/* HAKKIMIZDA SAYFASI */

/* GENEL */
body,
.about-page,
.section,
.section-soft,
.about-feature-strip,
.about-photo-section,
.why-section {
    background: #f6ede3;
    font-family: "Poppins", sans-serif;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 70px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #d77933;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-top {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-title {
    margin-bottom: 16px;
    color: #080b13;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
}

.section-desc {
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.8;
}


/* HERO */
.about-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
    background: #f6ede3;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(246, 237, 227, 0.70);
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.about-page-hero h1 {
    margin: 0;
    color: #080b13;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 800;
    line-height: 1.05;
}


/* GİRİŞ */
.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-main-image img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: 0 22px 55px rgba(74, 43, 29, 0.12);
}

.about-main-content h2 {
    margin-bottom: 22px;
    color: #080b13;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.12;
}

.about-main-content p {
    margin-bottom: 16px;
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.85;
}


/* ÖNE ÇIKAN METİN */
.about-highlight {
    padding: 20px 10px;
    text-align: center;
}

.about-highlight h2 {
    margin-bottom: 18px;
    color: #080b13;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
}

.about-highlight p {
    max-width: 850px;
    margin: 0 auto;
    color: #5f5f68;
    font-size: 17px;
    line-height: 1.9;
}


/* FOTOĞRAF ALANI - 5 GÖRSELLİ GALERİ */
.about-photo-section {
    padding: 60px 0;
}

.about-photo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-photo-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 24px;
    align-items: stretch;
}

.about-photo-card {
    overflow: hidden;
    background: #efe0cf;
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(74, 43, 29, 0.10);
}

.about-photo-card.large {
    height: 624px;
}

.about-photo-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-photo-mini-grid .about-photo-card {
    aspect-ratio: 1 / 1;
}

.about-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: 0.4s ease;
}

.about-photo-card.large img {
    filter: brightness(1.08) contrast(1.04);
}

.about-photo-card:hover img {
    transform: scale(1.04);
}


/* BİZİ FARKLI KILANLAR */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(62, 36, 24, 0.12);
    border-radius: 0;
    box-shadow: 0 14px 34px rgba(74, 43, 29, 0.055);
    transition: 0.28s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: rgba(215, 121, 51, 0.45);
    box-shadow: 0 18px 42px rgba(74, 43, 29, 0.10);
}

.value-card h3 {
    margin-bottom: 12px;
    color: #171923;
    font-size: 22px;
    font-weight: 700;
}

.value-card p {
    color: #5f5f68;
    font-size: 15px;
    line-height: 1.8;
}


/* MİSYON VİZYON */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card {
    padding: 42px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(62, 36, 24, 0.12);
    border-radius: 0;
    box-shadow: 0 14px 34px rgba(74, 43, 29, 0.055);
}

.mission-card.dark {
    color: #ffffff;
    background: #4a2b1d;
    border-color: #4a2b1d;
}

.mission-card h2 {
    margin-bottom: 16px;
    color: #080b13;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.18;
}

.mission-card p {
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.85;
}

.mission-card.dark h2 {
    color: #ffffff;
}

.mission-card.dark p {
    color: rgba(255, 255, 255, 0.82);
}

.mission-card.dark .eyebrow {
    color: #efb07b;
}


/* KISA TANITIM KARTLARI */
.about-feature-strip {
    padding: 70px 0;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    text-align: center;
}

.about-feature-item {
    max-width: 370px;
    margin: 0 auto;
}

.about-feature-image {
    width: 190px;
    height: 190px;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(74, 43, 29, 0.10);
}

.about-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-feature-item h3 {
    margin-bottom: 18px;
    color: #e65349;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
}

.about-feature-item p {
    max-width: 360px;
    margin: 0 auto;
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.85;
}


/* KAPANIŞ - NEDEN STUDY ANKA */
.why-section {
    padding: 40px 0 90px;
}

.why-study-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 55px;
    text-align: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(215, 121, 51, 0.18);
    border-radius: 0;
    box-shadow: 0 18px 45px rgba(75, 46, 31, 0.08);
}

.why-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #d77933;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.why-study-box h2 {
    max-width: 760px;
    margin: 0 auto 22px;
    color: #4b2e1f;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.25;
}

.why-study-box p {
    max-width: 820px;
    margin: 0 auto 16px;
    color: #5f514b;
    font-size: 18px;
    line-height: 1.9;
}

.why-study-box p:last-child {
    margin-bottom: 0;
    color: #3f3029;
    font-weight: 600;
}


/* TABLET */
@media (max-width: 992px) {
    .section,
    .about-feature-strip {
        padding: 30px 0;
    }

    .section-top {
        margin-bottom: 32px;
        padding: 0 18px;
    }

    .section-title {
        font-size: clamp(30px, 5vw, 42px);
    }

    .section-desc {
        font-size: 15px;
    }

    .about-page-hero {
        min-height: 430px;
    }

    .about-page-hero h1 {
        font-size: clamp(44px, 8vw, 64px);
    }

    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-main-image img {
        height: 430px;
    }

    .about-main-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .about-main-content h2 {
        font-size: clamp(30px, 5vw, 42px);
    }

    .about-photo-section {
        padding: 35px 0;
    }

    .about-photo-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-photo-card.large {
        height: 360px;
    }

    .about-photo-mini-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .about-photo-mini-grid .about-photo-card {
        aspect-ratio: 1 / 1;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        text-align: center;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-card {
        text-align: center;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-feature-item {
        max-width: 520px;
    }

    .about-feature-image {
        width: 170px;
        height: 170px;
        margin-bottom: 24px;
    }

    .about-feature-item h3 {
        margin-bottom: 12px;
        font-size: 30px;
    }
}


/* MOBİL */
@media (max-width: 768px) {
    .container {
        width: calc(100% - 32px);
    }

    .section,
    .about-feature-strip {
        padding: 18px 0;
    }

    .eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 1.6px;
    }

    .section-top {
        margin-bottom: 24px;
    }

    .section-title {
        margin-bottom: 12px;
        font-size: 32px;
        line-height: 1.15;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-page-hero {
        min-height: 360px;
        padding: 0;
    }

    .about-page-hero h1 {
        font-size: 44px;
    }

    .about-hero-overlay {
        background: rgba(246, 237, 227, 0.74);
    }

    .about-main-grid {
        gap: 22px;
    }

    .about-main-image img {
        height: 340px;
    }

    .about-main-content h2 {
        margin-bottom: 14px;
        font-size: 32px;
    }

    .about-main-content p {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.75;
    }

    .about-main-content p:last-child {
        margin-bottom: 0;
    }

    .about-highlight {
        padding: 0 12px 8px;
    }

    .about-highlight h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .about-highlight p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* MOBİLDE 5 FOTOĞRAF AYNI BOY */
    .about-photo-section {
        padding: 24px 0;
    }

    .about-photo-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-photo-card.large,
    .about-photo-mini-grid .about-photo-card {
        width: 100%;
        height: 260px;
        aspect-ratio: auto;
    }

    .about-photo-mini-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .value-card {
        padding: 26px 22px;
    }

    .value-card h3 {
        font-size: 21px;
    }

    .value-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    .mission-card {
        padding: 30px 24px;
    }

    .mission-card h2 {
        font-size: 30px;
    }

    .mission-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-feature-grid {
        gap: 40px;
    }

    .about-feature-image {
        width: 155px;
        height: 155px;
        margin-bottom: 22px;
    }

    .about-feature-item h3 {
        margin-bottom: 10px;
        font-size: 28px;
    }

    .about-feature-item p {
        font-size: 15px;
        line-height: 1.75;
    }

    .why-section {
        padding: 28px 0 60px;
    }

    .why-study-box {
        padding: 34px 24px;
    }

    .why-study-box p {
        font-size: 16px;
        line-height: 1.75;
    }
}


/* KÜÇÜK TELEFON */
@media (max-width: 576px) {
    .container {
        width: calc(100% - 28px);
    }

    .section,
    .about-feature-strip {
        padding: 16px 0;
    }

    .section-title {
        font-size: 29px;
    }

    .section-desc {
        font-size: 14.5px;
    }

    .about-page-hero {
        min-height: 320px;
    }

    .about-page-hero h1 {
        font-size: 38px;
    }

    .about-main-image img {
        height: 300px;
    }

    .about-main-content h2 {
        font-size: 29px;
    }

    /* KÜÇÜK MOBİLDE 5 FOTOĞRAF AYNI BOY */
    .about-photo-section {
        padding: 22px 0;
    }

    .about-photo-card.large,
    .about-photo-mini-grid .about-photo-card {
        height: 240px;
    }

    .about-photo-grid,
    .about-photo-mini-grid {
        gap: 14px;
    }

    .value-card,
    .mission-card {
        padding: 24px 20px;
    }

    .mission-card h2 {
        font-size: 27px;
    }

    .about-feature-image {
        width: 145px;
        height: 145px;
        margin-bottom: 20px;
    }

    .about-feature-item h3 {
        font-size: 25px;
    }

    .about-feature-item p {
        font-size: 14.5px;
    }

    .why-study-box h2 {
        font-size: 27px;
    }
}


/* ÇOK DAR EKRAN */
@media (max-width: 390px) {
    .about-page-hero {
        min-height: 290px;
    }

    .about-page-hero h1 {
        font-size: 34px;
    }

    .section-title,
    .about-main-content h2,
    .about-highlight h2 {
        font-size: 26px;
    }

    .about-main-image img {
        height: 260px;
    }

    /* EN DAR MOBİLDE 5 FOTOĞRAF AYNI BOY */
    .about-photo-card.large,
    .about-photo-mini-grid .about-photo-card {
        height: 220px;
    }

    .why-study-box {
        padding: 28px 18px;
    }
}
/* HAKKIMIZDA MOBİL BOŞLUKLARI KESİN DÜZELTME */
@media (max-width: 768px) {

    /* Tüm hakkımızda section boşluklarını azalt */
    .about-page .section {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Giriş yazısından sonra boşluk kalmasın */
    .about-main-content {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .about-main-content p {
        margin-bottom: 10px !important;
    }

    .about-main-content p:last-child {
        margin-bottom: 0 !important;
    }

    /* Study Anka Deneyimi bölümünün üst boşluğunu azalt */
    .about-highlight {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 8px !important;
    }

    .about-highlight .eyebrow {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .about-highlight h2 {
        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }

    .about-highlight p {
        margin-bottom: 0 !important;
    }
}