/* ANA SAYFA */

/* GENEL */
.home-page {
    background: #f6ede3;
    font-family: "Poppins", sans-serif;
}

.home-page .section,
.home-page .section-soft {
    background: #f6ede3;
}

/* ANASAYFA ORTAK BÖLÜM AYARI */
.home-page .section {
    padding: 30px 0;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #d77933;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-top {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 24px;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    color: #080b13;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-desc {
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.75;
}


/* ANASAYFA MODERN HERO */
.modern-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    background: #f6ede3;
    font-family: "Poppins", sans-serif;
    padding: 80px 0 30px;
}

.modern-hero-inner {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr;
    align-items: center;
    gap: 54px;
}

.modern-hero-left h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(62px, 7vw, 108px);
    line-height: 0.96;
    color: #080b13;
    font-weight: 700;
    letter-spacing: -4px;
    margin: 0;
}

.modern-hero-left h1 span {
    display: block;
    color: #de8d31;
    font-weight: 800;
}

.modern-hero-right {
    padding-top: 45px;
}

.modern-hero-right p {
    color: #555b66;
    font-size: 19px;
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-story-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #080b13;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
}

.hero-story-link span {
    width: 52px;
    height: 52px;
    background: #e65349;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transition: 0.28s ease;
}

.hero-story-link:hover span {
    transform: translate(4px, -4px);
    background: #d77933;
}


/* ÖNE ÇIKAN TANITIM */
.focus-promo {
    padding: 30px 0;
    background: #f6ede3;
}

.focus-promo-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 42px;
}

.focus-promo-text {
    max-width: 620px;
}

.focus-promo-text h2 {
    font-family: "Poppins", sans-serif;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
    color: #080b13;
    font-weight: 800;
}

.focus-promo-text p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #5f5f68;
}

.focus-promo-image {
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.focus-promo-image img {
    width: 100%;
    max-width: 470px;
    height: 500px;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    box-shadow: 0 22px 55px rgba(74, 43, 29, 0.12);
}


/* İKİNCİ TANITIM */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.about-photo {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    box-shadow: 0 22px 55px rgba(74, 43, 29, 0.12);
}

.about-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    margin-bottom: 14px;
    color: #080b13;
    font-weight: 800;
}

.about-content p {
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}


/* MEKÂNDAN KARELER */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-box {
    height: 480px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(74, 43, 29, 0.10);
    background: #efe0cf;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    transition: 0.4s ease;
}

.gallery-box:hover img {
    transform: scale(1.05);
}


/* ÇALIŞMA ALANLARI */
.study-rooms-section {
    background: #f6ede3;
    position: relative;
}

.study-room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.study-room-card {
    position: relative;
    min-height: 220px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 240, 0.88));
    border: 1px solid rgba(62, 36, 24, 0.10);
    border-radius: 0;
    padding: 28px;
    box-shadow: 0 16px 38px rgba(74, 43, 29, 0.07);
    transition: 0.28s ease;
    overflow: hidden;
}

.study-room-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 130px;
    height: 130px;
    background: rgba(222, 141, 49, 0.10);
    border-radius: 50%;
    transition: 0.28s ease;
}

.study-room-card:hover {
    transform: translateY(-7px);
    border-color: rgba(222, 141, 49, 0.42);
    box-shadow: 0 22px 50px rgba(74, 43, 29, 0.12);
    background: #ffffff;
}

.study-room-card:hover::after {
    transform: scale(1.18);
    background: rgba(222, 141, 49, 0.16);
}

.study-room-card.featured {
    border-color: rgba(222, 141, 49, 0.55);
    background:
        linear-gradient(145deg, #ffffff, #fff3e3);
}

.study-room-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    background: #de8d31;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.study-room-card h3 {
    position: relative;
    z-index: 2;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    line-height: 1.25;
    color: #080b13;
    font-weight: 800;
    margin-bottom: 10px;
}

.study-room-card p {
    position: relative;
    z-index: 2;
    color: #5f5f68;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}


/* SEN NEREDESİN FOTOĞRAF SLIDER */
.where-slider-section {
    padding: 30px 0;
    background: #f6ede3;
}

.where-slider-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 44px;
}

.where-slider-content h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.08;
    color: #080b13;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 14px;
}

.where-slider-content h2 span {
    color: #e39128;
}

.where-slider-content p {
    max-width: 520px;
    color: #5f5f68;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.where-slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #080b13;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
}

.where-slider-btn span {
    width: 48px;
    height: 48px;
    background: #e65349;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    transition: 0.28s ease;
}

.where-slider-btn:hover span {
    transform: translate(4px, -4px);
    background: #d77933;
}


/* SLIDER */
.where-slider {
    position: relative;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(74, 43, 29, 0.16);
    background: #ead8c8;
}

.where-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s ease, transform 0.8s ease;
    border-radius: 0;
    overflow: hidden;
}

.where-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.where-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
}

.where-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(48, 28, 18, 0.30), transparent 45%);
    z-index: 3;
    pointer-events: none;
}


/* OKLAR */
.where-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: #080b13;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.where-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.where-prev {
    left: 18px;
}

.where-next {
    right: 18px;
}


/* DOTLAR */
.where-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.where-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: 0.25s ease;
}

.where-dots button.active {
    width: 30px;
    border-radius: 999px;
    background: #ffffff;
}


/* MÜŞTERİ YORUMLARI */
.testimonials {
    background: #f6ede3;
    overflow: hidden;
}

.donmedolap-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 0 30px;
}

.kart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 360px;
    width: 100%;
    max-width: 1200px;
    perspective: 1000px;
}

.yorum-karti {
    position: absolute;
    width: 380px;
    min-height: 300px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(62, 36, 24, 0.08);
    border-radius: 28px;
    text-align: left;
    padding: 30px;
    box-shadow: 0 18px 42px rgba(62, 36, 24, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.8);
    z-index: 0;
    pointer-events: none;
}

.yorum-karti::before {
    content: "“";
    position: absolute;
    top: -24px;
    left: 24px;
    font-family: "Poppins", sans-serif;
    font-size: 86px;
    color: rgba(217, 138, 58, 0.22);
    line-height: 1;
    font-weight: 800;
}

.yorum-karti .stars {
    color: #d77933;
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.yorum-karti p {
    color: #5f5f68;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.yorum-karti h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #171923;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.yorum-karti.aktif {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

.yorum-karti.sol {
    transform: translateX(-420px) scale(0.92);
    opacity: 0.75;
    z-index: 2;
}

.yorum-karti.sag {
    transform: translateX(420px) scale(0.92);
    opacity: 0.75;
    z-index: 2;
}

.yorum-karti.gizli {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}


/* TABLET */
@media (max-width: 1100px) {
    .home-page .section {
        padding: 28px 0;
    }

    .section-top {
        margin-bottom: 22px;
    }

    .modern-hero {
        min-height: auto;
        padding: 96px 0 30px;
    }

    .modern-hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .modern-hero-left h1 {
        font-size: clamp(48px, 11vw, 76px);
        letter-spacing: -2px;
    }

    .modern-hero-right {
        padding-top: 0;
    }

    .modern-hero-right p {
        margin: 0 auto 24px;
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-story-link {
        font-size: 23px;
    }

    .focus-promo,
    .where-slider-section {
        padding: 28px 0;
    }

    .focus-promo-wrapper,
    .about-strip,
    .where-slider-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .focus-promo-text,
    .about-content,
    .where-slider-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .where-slider-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .study-room-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-box {
        height: 400px;
    }

    .where-slider {
        height: 420px;
    }
}


/* MOBİL */
@media (max-width: 768px) {
    .home-page .section {
        padding: 26px 0;
    }

    .section-eyebrow {
        margin-bottom: 7px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-top {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 31px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .modern-hero {
        padding: 88px 0 28px;
    }

    .modern-hero-inner {
        gap: 22px;
    }

    .modern-hero-left h1 {
        font-size: 43px;
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .modern-hero-right p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .hero-story-link {
        font-size: 21px;
        gap: 14px;
    }

    .hero-story-link span {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .focus-promo,
    .where-slider-section {
        padding: 26px 0;
    }

    .focus-promo-wrapper,
    .about-strip,
    .where-slider-wrapper {
        gap: 24px;
    }

    .focus-promo-text h2,
    .about-content h2 {
        font-size: 31px;
        line-height: 1.16;
        margin-bottom: 10px;
    }

    .focus-promo-text p,
    .about-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .focus-promo-image {
        width: 100%;
        border-radius: 0 !important;
        overflow: hidden;
    }

    .focus-promo-image img,
    .about-photo {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 0 !important;
    }

    .study-room-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .study-room-card {
        min-height: auto;
        padding: 24px;
        border-radius: 0;
    }

    .study-room-icon {
        margin-bottom: 16px;
        border-radius: 0;
    }

    .study-room-card h3 {
        font-size: 21px;
        margin-bottom: 9px;
    }

    .study-room-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .gallery-box {
        height: 320px;
        border-radius: 0 !important;
    }

    .gallery-box img {
        border-radius: 0 !important;
    }

    .where-slider-content h2 {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .where-slider-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .where-slider-btn {
        font-size: 20px;
        gap: 13px;
    }

    .where-slider-btn span {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .where-slider {
        height: 330px;
        border-radius: 0 !important;
    }

    .where-slide,
    .where-slide img {
        border-radius: 0 !important;
    }

    .kart-container {
        height: 350px;
    }

    .yorum-karti {
        width: min(92vw, 350px);
        min-height: 285px;
        padding: 26px;
    }

    .yorum-karti.sol {
        transform: translateX(-245px) scale(0.86);
        opacity: 0.22;
    }

    .yorum-karti.sag {
        transform: translateX(245px) scale(0.86);
        opacity: 0.22;
    }
}


/* KÜÇÜK TELEFON */
@media (max-width: 576px) {
    .home-page .section {
        padding: 25px 0;
    }

    .section-top {
        margin-bottom: 18px;
    }

    .modern-hero {
        padding: 82px 0 25px;
    }

    .modern-hero-left h1 {
        font-size: 39px;
    }

    .focus-promo,
    .where-slider-section {
        padding: 25px 0;
    }

    .focus-promo-image img,
    .about-photo {
        height: 285px;
        border-radius: 0 !important;
    }

    .gallery-box {
        height: 285px;
        border-radius: 0 !important;
    }

    .gallery-box img {
        border-radius: 0 !important;
    }

    .where-slider-content h2 {
        font-size: 33px;
    }

    .where-slider {
        height: 300px;
        border-radius: 0 !important;
    }

    .where-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .where-prev {
        left: 10px;
    }

    .where-next {
        right: 10px;
    }

    .study-room-card {
        padding: 22px;
        border-radius: 0;
    }
}


/* ÇOK DAR TELEFON */
@media (max-width: 480px) {
    .modern-hero-left h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .focus-promo-text h2,
    .about-content h2 {
        font-size: 28px;
    }

    .focus-promo-image img,
    .about-photo {
        height: 255px;
        border-radius: 0 !important;
    }

    .study-room-card {
        padding: 22px;
        border-radius: 0;
    }

    .study-room-icon {
        border-radius: 0;
    }

    .gallery-box {
        height: 255px;
        border-radius: 0 !important;
    }

    .gallery-box img {
        border-radius: 0 !important;
    }

    .where-slider {
        height: 270px;
        border-radius: 0 !important;
    }

    .where-slide,
    .where-slide img {
        border-radius: 0 !important;
    }

    .yorum-karti {
        width: min(92vw, 330px);
    }
}


/* EN DAR EKRAN */
@media (max-width: 390px) {
    .home-page .section,
    .focus-promo,
    .where-slider-section {
        padding: 25px 0;
    }

    .modern-hero {
        padding: 78px 0 25px;
    }

    .modern-hero-left h1 {
        font-size: 33px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc,
    .focus-promo-text p,
    .about-content p,
    .where-slider-content p {
        font-size: 14px;
    }

    .focus-promo-image img,
    .about-photo,
    .gallery-box {
        height: 235px;
        border-radius: 0 !important;
    }

    .gallery-box img {
        border-radius: 0 !important;
    }

    .where-slider {
        height: 250px;
        border-radius: 0 !important;
    }
}


/* MOBİLDE GÖRSEL KENAR DÜZELTME - GARANTİ */
@media (max-width: 768px) {
    .home-page img,
    .home-page .focus-promo-image,
    .home-page .focus-promo-image img,
    .home-page .about-photo,
    .home-page .about-strip img,
    .home-page .gallery-box,
    .home-page .gallery-box img,
    .home-page .where-slider,
    .home-page .where-slide,
    .home-page .where-slide img {
        border-radius: 0 !important;
    }

    .home-page .focus-promo-image,
    .home-page .gallery-box,
    .home-page .where-slider {
        overflow: hidden;
    }
}
/* MOBİLDE İLK EKRANDA SADECE MODERN HERO GÖRÜNSÜN */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 100vh;
        padding: 105px 0 45px;
        display: flex;
        align-items: center;
        text-align: center;
        background: #f6ede3;
    }

    .modern-hero-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        width: 100%;
    }

    .modern-hero-left h1 {
        max-width: 360px;
        margin: 0 auto;
        font-size: 38px;
        line-height: 1.08;
        letter-spacing: -1.2px;
        font-weight: 800;
    }

    .modern-hero-left h1 span {
        display: block;
        margin-top: 2px;
        color: #de8d31;
    }

    .modern-hero-right {
        padding-top: 0;
    }

    .modern-hero-right p {
        max-width: 345px;
        margin: 0 auto 22px;
        font-size: 14.5px;
        line-height: 1.7;
        color: #555b66;
    }

    .hero-story-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 17px;
        font-weight: 800;
        color: #080b13;
        text-decoration: none;
    }

    .hero-story-link span {
        width: 42px;
        height: 42px;
        background: #e65349;
        color: #ffffff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 23px;
        font-weight: 700;
        line-height: 1;
    }

    .hero-story-link:hover span {
        background: #d77933;
        transform: none;
    }

    /* Hero'dan sonraki bölüm hemen görünmesin diye */
    .focus-promo {
        padding-top: 45px;
    }
}
@media (max-width: 390px) {
    .modern-hero {
        min-height: 100vh;
        padding: 96px 0 38px;
    }

    .modern-hero-left h1 {
        max-width: 315px;
        font-size: 33px;
    }

    .modern-hero-right p {
        max-width: 315px;
        font-size: 14px;
    }

    .hero-story-link {
        font-size: 16px;
    }

    .hero-story-link span {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}
/* MOBİLDE SLIDER GÖRSEL YÜKSEKLİĞİ */
@media (max-width: 768px) {
    .where-slider {
        height: 420px !important;
    }

    .where-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 576px) {
    .where-slider {
        height: 390px !important;
    }
}

@media (max-width: 390px) {
    .where-slider {
        height: 360px !important;
    }
}