/* ──────────────────────────────────────
   Hero — Slider
────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    min-height: 744px;
    overflow: hidden;
    display: flex;
}

.hero-section .eg-container {
    width: 100%;
}

.hero-top-mobile{
    display:none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    bottom: 10px;
}

.hero-overlay {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 85px;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 500px;
}

.hero-logo {
    align-self: center;
}

.hero-title {
    color: #000000;
    font-weight: 700;
    font-size: var(--text-3xl);
    line-height: 120%;
    letter-spacing: 0.5%;
}

.hero-subtitle {
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: 140%;
    letter-spacing: 0.5%;
    color: var(--color-text);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Hero Responsive */
@media (max-width: 1500px) {
    .hero-section {
        min-height: 640px;
    }

    .hero-title {
        font-size: var(--text-2xl-lg);
    }

    .hero-subtitle {
        font-size: var(--text-md);
    }

    .hero-content {
        max-width: 460px;
    }
}

@media (max-width: 1280px) {
    .hero-section {
        min-height: 580px;
    }

    .hero-title {
        font-size: var(--text-2xl-md);
    }

    .hero-subtitle {
        font-size: var(--text-sm-2);
    }

    .hero-content {
        max-width: 420px;
        gap: 16px;
    }
}

@media (max-width: 1050px) {
    .hero-section {
        min-height: 480px;
    }
    
    .hero-content-div{
        margin-top:50px;
    }

    .hero-bg {
        background-size: cover;
        background-position: center bottom;
        background-image: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-title {
        font-size: var(--text-2xl-xxs);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
        padding: 0 20px;
    }

    .hero-overlay {
        height: 60px;
    }

    .hero-logo {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 420px;
    }

    .hero-title {
        font-size: var(--text-2xl-xxs);
    }

    .hero-subtitle {
        font-size: var(--text-sm-2);
    }

    .hero-content {
        max-width: 100%;
        gap: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-overlay {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 60svh;
        align-items: flex-start;
        padding-top: 60px;
    }
    
    .hero-content-div{
        margin:0;
    }

    .hero-top-mobile{
        position:absolute;
        display:block;
        height:20px;
        width:100%;
        top:0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    }

    .hero-bg {
        background-image: url('../images/mobile_banner.png') !important;
        background-size: cover;
        background-position: center center;
    }

    .hero-section .eg-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: var(--text-mobile-5);
        color: #000000;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        gap: 24px;
        padding: 0 24px;
        align-items: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60svh;
    }

    .hero-bg {
        background-size: cover;
        background-position: center center;
    }

    .hero-title {
        font-size: var(--text-mobile-5);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .hero-overlay {
        height: 40px;
    }
}

/* ──────────────────────────────────────
   Hakkında
────────────────────────────────────── */
.about-section {
    padding: var(--section-padding-xxs);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1105px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-weight: 700;
    font-size: var(--text-xl);
    line-height: 140%;
    letter-spacing: 0.5%;
    color: #000000;
}

.about-text {
    color: var(--color-text);
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: 140%;
    letter-spacing: 0.5%;
}

/* Hakkında Responsive */
@media (max-width: 1500px) {
    .about-section {
        padding: var(--section-padding-xxs);
    }

    .about-title {
        font-size: var(--text-xl);
    }

    .about-text {
        font-size: var(--text-md);
    }
}

@media (max-width: 1280px) {
    .about-title {
        font-size: var(--text-lg);
    }

    .about-text {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: var(--section-padding-xxs);
    }

    .about-title {
        font-size: var(--text-md);
    }

    .about-text {
        font-size: var(--text-base);
    }

    .about-content {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: var(--section-padding-xxs);
    }

    .about-title {
        font-size: var(--text-base);
    }

    .about-text {
        font-size: var(--text-sm-2);
    }

    .about-content {
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: var(--text-mobile-3);
    }

    .about-text {
        font-size: var(--text-mobile-2);
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: var(--section-padding-xxs);
    }

    .about-title {
        font-size: var(--text-mobile-3);
    }

    .about-text {
        font-size: var(--text-mobile-2);
    }

    .about-content {
        gap: 12px;
    }
}

/* ──────────────────────────────────────
   Amacımız
────────────────────────────────────── */
.aim-section {
    padding: var(--section-padding-xxs);
    align-self:baseling;
    height:100%;
}

.aim-right{
    height:100%;
}

.grid-image-1-1{
    height:100%;
}

.aim-title {
    font-weight: 700;
    font-size: var(--text-xl);
    line-height: 140%;
    letter-spacing: 0.5%;
    color: #000000;
    padding: 0 0 15px 0;
}

.aim-text {
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: 140%;
    letter-spacing: 0.5%;
    color: var(--color-text);
}

.aim-text p {
    margin-bottom: 24px;
}

.aim-text ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

/* Amacımız Responsive */
@media (max-width: 1500px) {
    .aim-section {
        padding: var(--section-padding-xxs);
    }

    .aim-title {
        font-size: var(--text-xl);
    }

    .aim-text {
        font-size: var(--text-md);
    }
}

@media (max-width: 1280px) {
    .aim-title {
        font-size: var(--text-lg);
    }

    .aim-text {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1024px) {
    .aim-section {
        padding: var(--section-padding-xxs);
    }

    .aim-title {
        font-size: var(--text-md);
    }

    .aim-text {
        font-size: var(--text-base);
    }
}

@media (max-width: 768px) {
    .aim-section {
        padding: var(--section-padding-xxs);
    }

    .aim-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .aim-title {
        font-size: var(--text-base);
        padding: 0 0 12px 0;
    }

    .aim-text {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 576px) {
    .aim-title {
        font-size: var(--text-mobile-3);
    }

    .aim-text {
        font-size: var(--text-mobile-2);
    }
}

@media (max-width: 480px) {
    .aim-section {
        padding: var(--section-padding-xxs);
    }

    .aim-title {
        font-size: var(--text-mobile-3);
        padding: 0 0 10px 0;
    }

    .aim-text {
        font-size: var(--text-mobile-2);
    }
}

/* ──────────────────────────────────────
   Programa Nasıl Başvururum
────────────────────────────────────── */
.apply-section {
    padding: var(--section-padding);
}

.apply-left img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.apply-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apply-title {
    font-weight: 600;
    font-size: var(--text-xl);
    line-height: 140%;
    letter-spacing: 0.5%;
    color: #000000;
}

.apply-text {
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--color-text);
}

.apply-card {
    margin: 30px 0;
    background: var(--color-bg-soft);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
}

.apply-card-label {
    font-size: var(--text-xl);
    font-weight: 600;
    color: #000000;
    line-height: 100%;
    letter-spacing: 0.5%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.apply-card-body {
    display: flex;
    align-items: center;
    gap: 20px;
}

.apply-count {
    font-weight: 700;
    font-size: var(--text-3xl);
    line-height: 120%;
    letter-spacing: 0.5%;
    color: var(--color-primary);
    white-space: nowrap;
}

.apply-divider {
    width: 1px;
    height: 50px;
    background: var(--color-primary);
    flex-shrink: 0;
}

.apply-cities {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: #4a4a4a;
}

/* Başvuru Responsive */
@media (max-width: 1500px) {
    .apply-section {
        padding: var(--section-padding-md);
    }

    .apply-count {
        font-size: var(--text-2xl-lg);
    }

    .apply-title {
        font-size: var(--text-xl);
    }

    .apply-text {
        font-size: var(--text-md);
    }

    .apply-card-label {
        font-size: var(--text-lg);
    }
}

@media (max-width: 1280px) {
    .apply-count {
        font-size: var(--text-2xl-md);
    }

    .apply-title {
        font-size: var(--text-lg);
    }

    .apply-text {
        font-size: var(--text-sm-2);
    }

    .apply-card {
        padding: 20px 24px;
    }
}

@media (max-width: 1024px) {
    .apply-section {
        padding: var(--section-padding-sm);
    }

    .apply-count {
        font-size: var(--text-2xl-sm);
    }

    .apply-title {
        font-size: var(--text-md);
    }

    .apply-text {
        font-size: var(--text-base);
    }

    .apply-card-label {
        font-size: var(--text-md);
        margin-bottom: 16px;
    }

    .apply-card {
        margin: 20px 0;
        padding: 18px 20px;
    }
}

@media (max-width: 768px) {
    .apply-section {
        padding: var(--section-padding-xs);
    }

    .apply-right {
        gap: 14px;
    }

    .apply-count {
        font-size: var(--text-2xl-xxs);
    }

    .apply-title {
        font-size: var(--text-base);
    }

    .apply-text {
        font-size: var(--text-sm);
    }

    .apply-card-label {
        font-size: var(--text-base);
        margin-bottom: 12px;
    }

    .apply-card-body {
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .apply-count {
        font-size: var(--text-2xl-lg);
        line-height: 1;
    }

    .apply-title {
        font-size: var(--text-mobile-3);
    }

    .apply-text {
        font-size: var(--text-mobile-2);
    }

    .apply-card {
        padding: 24px;
        margin: 20px 0;
        text-align: center;
    }

    .apply-card-label {
        font-size: var(--text-mobile-3);
        margin-bottom: 20px;
    }

    .apply-card-body {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .apply-divider {
        display: none;
    }

    .apply-cities {
        text-align: center;
        font-size: var(--text-mobile-2);
    }
}

@media (max-width: 480px) {
    .apply-section {
        padding: var(--section-padding-xxs);
    }

    .apply-count {
        font-size: var(--text-2xl-lg);
    }

    .apply-card-label {
        font-size: var(--text-mobile-3);
    }

    .apply-cities {
        font-size: var(--text-mobile-2);
    }
}

/* ──────────────────────────────────────
   Neyi Hedefliyoruz
────────────────────────────────────── */
.goals-section {
    background: var(--color-bg-soft);
    padding: var(--section-padding);
}

.goals-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 48px;
    line-height: 140%;
    letter-spacing: 0.5%;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}

.goals-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.goals-item img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 6 / 3;
    height:385px;
}

.goals-item p {
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 140%;
    color: #000000;
    letter-spacing: 0.5%;
}

/* Hedefler Responsive */
@media (max-width: 1500px) {
    .goals-section {
        padding: var(--section-padding-md);
    }

    .goals-title {
        font-size: var(--text-2xl);
        margin-bottom: 36px;
    }

    .goals-item p {
        font-size: var(--text-md);
    }

    .goals-grid {
        gap: 48px 24px;
    }
}

@media (max-width: 1280px) {
    .goals-title {
        font-size: var(--text-xl);
    }

    .goals-item p {
        font-size: var(--text-base);
    }

    .goals-grid {
        gap: 40px 20px;
    }
}

@media (max-width: 1024px) {
    .goals-section {
        padding: var(--section-padding-sm);
    }

    .goals-title {
        font-size: var(--text-xl);
        margin-bottom: 28px;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

    .goals-item p {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 768px) {
    .goals-section {
        padding: var(--section-padding-xs);
    }

    .goals-title {
        font-size: var(--text-xl);
        margin-bottom: 24px;
    }

    .goals-item p {
        font-size: var(--text-sm-2);
    }

    .goals-grid {
        gap: 24px 16px;
    }
}

@media (max-width: 576px) {
    .goals-scroll-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .goals-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .goals-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        grid-template-columns: unset;
        padding-bottom: 4px;
    }

    .goals-item {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }

    .goals-title {
        font-size: var(--text-lg);
    }

    .goals-item p {
        font-size: var(--text-sm);
    }
}

.goals-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .goals-dots {
        display: flex;
    }
    
    .goals-title {
        font-size: var(--text-mobile-4);
        margin-bottom: 20px;
    }

    .goals-item p {
        font-size: var(--text-mobile-2);
    }
}

.goals-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D5D4D3;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.goals-dot.active {
    background: var(--color-primary);
}

@media (max-width: 480px) {
    .goals-section {
        padding: var(--section-padding-xxs);
    }

    .goals-title {
        font-size: var(--text-mobile-4);
        margin-bottom: 20px;
    }

    .goals-item p {
        font-size: var(--text-mobile-2);
    }
}

/* ──────────────────────────────────────
   Kimler Katılabilir
────────────────────────────────────── */
.who-section {
    padding: 60px 0 0 0;
    overflow: visible;
}

.who-card {
    background-color: var(--color-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 20px 30px 240px;
    height: 267px;
    overflow: visible;
}

.who-card-person {
    position: absolute;
    left: -20px;
    bottom: 0px;
    height: 115%;
    width: auto;
    object-fit: contain;
    object-position: left bottom;
}

.who-grid {
    align-items: stretch;
    overflow: visible;
}

.who-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-title {
    font-weight: 600;
    font-size: var(--text-xl);
    line-height: 140%;
    color: #FFFFFF;
    letter-spacing: 0.5%;
}

.who-list {
    list-style: disc;
    padding-left: 20px;
}

.who-list li {
    font-weight: 500;
    font-size: var(--text-base);
    line-height: 160%;
    color: #FFFFFF;
}

.who-right {
    position: relative;
    width: 100%;
    height: 267px;
}

.who-right-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Kimler Katılabilir Responsive */
@media (max-width: 1500px) {
    .who-section {
        padding: 50px 0 0 0;
    }

    .who-card {
        flex-direction: row;
        margin-top: 0;
    }

    .who-card-person {
        height: 115%;
        left: -15px;
        bottom: 0;
        top: auto;
        transform: none;
        width: auto;
    }

    .who-title {
        font-size: var(--text-xl);
    }
}

@media (max-width: 1280px) {
    .who-card-person {
        height: 115%;
        left: -10px;
        bottom: 0;
        top: auto;
        transform: none;
        width: auto;
    }

    .who-title {
        font-size: var(--text-lg);
    }

    .who-list li {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1024px) {
    .who-section {
        padding: 40px 0 0 0;
    }

    .who-card-person {
        height: 115%;
        left: -10px;
    }

    .who-title {
        font-size: var(--text-md);
    }

    .who-list li {
        font-size: var(--text-sm);
    }
}

@media (max-width: 850px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .who-card {
        padding: 130px 24px 30px 24px;
        margin-top: 100px;
        flex-direction: column;
        align-items: flex-start;
    }

    .who-card-person {
        width: 170px;
        height: auto;
        bottom: auto;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .who-title {
        font-size: var(--text-lg);
        margin-bottom: 12px;
    }

    .who-list li {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 576px) {
    .who-card {
        padding: 110px 20px 24px 20px;
        margin-top: 90px;
        align-items: flex-start;
    }

    .who-card-person {
        display: block;
        width: 150px;
        top: -90px;
    }

    .who-title {
        font-size: var(--text-mobile-3);
    }
    
    .who-list li {
        font-size: var(--text-mobile-2);
    }
}

@media (max-width: 480px) {
    .who-section {
        padding: 30px 0 0 0;
    }

    .who-card {
        padding: 100px 16px 20px 16px;
        margin-top: 80px;
        min-height: 387px;
    }

    .who-card-person {
        width: 140px;
        top: -85px;
    }

    .who-title {
        font-size: var(--text-mobile-3);
    }

    .who-list li {
        font-size: var(--text-mobile-2);
    }
}

/* ──────────────────────────────────────
   Kaynaklar
────────────────────────────────────── */
.resources-section {
    margin: 1em;
}

.resources-grid {
    background: var(--color-bg-soft);
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px;
    border-radius: var(--radius);
}

.resources-title {
    font-weight: 700;
    font-size: var(--text-2xl);
    line-height: 140%;
    letter-spacing: 0.5%;
    color: #36428B;
    max-width: 300px;
    margin-left: 80px;
    text-align:center;
}

.resources-divider {
    width: 1px;
    height: 80px;
    background-color: #000000;
    flex-shrink: 0;
}

.resources-items {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #FFFFFF;
    border-radius: var(--radius);
    padding: 16px 24px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: var(--text-lg);
    line-height: 140%;
    letter-spacing: 0.5%;
    transition: box-shadow 0.2s;
    max-width: 400px;
    text-align: left;
}

.resource-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Kaynaklar Responsive */
@media (max-width: 1500px) {
    .resources-grid {
        padding: 48px;
        gap: 32px;
    }

    .resources-title {
        font-size: var(--text-xl);
        max-width: 260px;
        margin-left: 40px;
    }

    .resource-card {
        font-size: var(--text-md);
        padding: 14px 20px;
    }
}

@media (max-width: 1280px) {
    .resources-grid {
        padding: 40px;
        gap: 24px;
    }

    .resources-title {
        font-size: var(--text-lg);
        align-self: center;
        max-width: 240px;
        margin-left: 20px;
    }

    .resource-card {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1024px) {
    .resources-grid {
        flex-direction: column;
        align-items: center;
        padding: 32px;
        gap: 24px;
        text-align: center;
    }

    .resources-title {
        font-size: var(--text-xl);
        white-space: normal;
        max-width: 500px;
        margin-left: 0;
        text-align: center;
    }

    .resources-divider {
        display: none;
    }

    .resources-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .resource-card {
        font-size: var(--text-sm);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .resources-grid {
        padding: 24px;
        gap: 16px;
    }

    .resources-title {
        font-size: var(--text-base);
        max-width: 100%;
        margin-left: 0;
    }

    .resource-card {
        font-size: var(--text-sm);
        padding: 12px 16px;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .resources-items {
        gap: 12px;
    }

    .resource-card {
        font-size: var(--text-mobile-2);
        max-width: 100%;
        width: 100%;
    }
    
    .resource-card img{
        height:38px;
    }

    .resources-title {
        font-size: var(--text-mobile-4);
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .resources-grid {
        padding: 20px;
        gap: 14px;
    }

    .resource-card {
        font-size: var(--text-mobile-2);
        padding: 10px 14px;
    }
}

/* ──────────────────────────────────────
   Eğitim
────────────────────────────────────── */
.education-section {
    padding: var(--section-padding);
}

.education-title {
    text-align: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 48px;
    line-height: 140%;
    letter-spacing: 0.5%;
}

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

.education-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid #D5D4D3;
    border-radius: var(--radius);
    padding: 16px;
}

.education-card {
    background: var(--color-bg-soft);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 120px;
}

.education-icon-box {
    flex-shrink: 0;
}

.education-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #000000;
    line-height: 140%;
    letter-spacing: 0.5%;
    text-transform: capitalize;
}

.education-list {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.education-list li {
    font-size: var(--text-md);
    font-weight: 400;
    line-height: 140%;
    color: var(--color-text);
}

/* Eğitim Responsive */
@media (max-width: 1500px) {
    .education-section {
        padding: var(--section-padding-md);
    }

    .education-title {
        font-size: var(--text-2xl);
        margin-bottom: 36px;
    }

    .education-card-title {
        font-size: var(--text-lg);
    }

    .education-list li {
        font-size: var(--text-sm);
    }
}

@media (max-width: 1280px) {
    .education-title {
        font-size: var(--text-lg);
    }

    .education-card-title {
        font-size: var(--text-md);
    }

    .education-card {
        padding: 18px;
        gap: 12px;
    }
}

@media (max-width: 1024px) {
    .education-section {
        padding: var(--section-padding-sm);
    }

    .education-title {
        font-size: var(--text-lg);
        margin-bottom: 28px;
    }

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

    .education-card-title {
        font-size: var(--text-base);
    }

    .education-list li {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 768px) {
    .education-section {
        padding: var(--section-padding-xs);
    }

    .education-title {
        font-size: var(--text-xl);
        margin-bottom: 24px;
    }

    .education-item {
        gap: 16px;
        padding: 14px;
    }

    .education-card {
        padding: 16px;
    }

    .education-card-title {
        font-size: var(--text-base);
    }

    .education-list li {
        font-size: var(--text-sm);
    }
}

@media (max-width: 576px) {
    .education-scroll-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .education-scroll-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .education-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        grid-template-columns: unset;
        padding-bottom: 4px;
    }

    .education-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .education-title {
        font-size: var(--text-mobile-4);
    }

    .education-card-title {
        font-size: var(--text-mobile-3);
    }

    .education-list li {
        font-size: var(--text-mobile-2);
    }
}

.education-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .education-dots {
        display: flex;
    }
}

.education-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D5D4D3;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.education-dot.active {
    background: var(--color-primary);
}

@media (max-width: 480px) {
    .education-section {
        padding: var(--section-padding-xxs);
    }

    .education-title {
        font-size: var(--text-mobile-4);
        margin-bottom: 20px;
    }

    .education-card {
        padding: 14px;
        gap: 10px;
    }
}

/* ──────────────────────────────────────
   Haberler
────────────────────────────────────── */
.news-section {
    padding: var(--section-padding);
}

.news-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.news-title {
    font-weight: 700;
    font-size: var(--text-2xl);
    line-height: 25px;
    letter-spacing: 0.5%;
    color: #171731;
}

.news-all {
    font-weight: 300;
    font-size: var(--text-md);
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-primary);
    text-decoration: none;
}

.news-all:hover {
    text-decoration: underline;
}

.news-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.news-slider-overflow {
    overflow: hidden;
    flex: 1;
}

.news-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.news-card {
    flex-shrink: 0;
    width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-card img {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.news-date {
    font-weight: 400;
    font-size: var(--text-sm);
    line-height: 25px;
    letter-spacing: 0%;
    color: #C2C2C2;
}

.news-card-title {
    font-weight: 700;
    font-size: var(--text-xl);
    line-height: 100%;
    letter-spacing: 0%;
}

.news-card-text {
    font-weight: 300;
    font-size: var(--text-base);
    line-height: 25px;
    letter-spacing: 0%;
    color: #000000;
}

.news-more {
    font-weight: 400;
    font-size: var(--text-md);
    line-height: 100%;
    text-decoration: underline;
    color: var(--color-primary);
    margin-top: auto;
}

.news-more:hover {
    text-decoration: underline;
}

.news-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: var(--text-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    margin-bottom: 80px;
    position: absolute;
}

.news-btn.prev {
    left: -65px;
}

.news-btn.next {
    right: -65px;
}

.news-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}


.news-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-dot.active {
    width: 28px;
    background-color: var(--color-primary);
    border-radius: 10px;
}

/* Haberler Responsive */
@media (max-width: 1500px) {
    .news-section {
        padding: var(--section-padding-md);
    }

    .news-header {
        padding: 0 40px;
    }

    .news-title {
        font-size: var(--text-2xl);
    }

    .news-card {
        width: calc(33.333% - 16px);
    }

    .news-card-title {
        font-size: var(--text-lg);
    }

    .news-btn.prev {
        left: -20px;
    }

    .news-btn.next {
        right: -20px;
    }

    .news-slider-overflow {
        padding: 0 40px;
    }

    .news-slider-container {
        gap: 0;
    }
}

@media (max-width: 1280px) {
    .news-title {
        font-size: var(--text-xl);
    }

    .news-all {
        font-size: var(--text-base);
    }
}

@media (max-width: 1024px) {
    .news-section {
        padding: var(--section-padding-sm);
    }

    .news-header {
        padding: 0 40px;
    }

    .news-title {
        font-size: var(--text-xl);
    }

    .news-card {
        width: calc(50% - 12px);
    }

    .news-card-title {
        font-size: var(--text-md);
    }

    .news-card-text {
        font-size: var(--text-sm);
    }

    .news-slider-overflow {
        padding: 0 40px;
    }

    .news-btn {
        top: 90px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: var(--section-padding-xs);
    }

    .news-header {
        margin-bottom: 24px;
        padding: 0;
    }

    .news-title {
        font-size: var(--text-xl);
    }

    .news-all {
        font-size: var(--text-sm);
    }

    .news-card-title {
        font-size: var(--text-base);
    }

    .news-more {
        font-size: var(--text-sm-2);
    }

    .news-slider-overflow {
        padding: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .news-slider-overflow::-webkit-scrollbar {
        display: none;
    }

    .news-card {
        scroll-snap-align: center;
        width: calc(100% - 32px);
        margin: 0 16px;
    }

    .news-btn {
        display: none;
    }

    .news-dots {
        display: flex;
    }
}

@media (max-width: 576px) {
    .news-card {
        width: calc(100% - 0px);
    }

    .news-header {
        padding: 0;
        display:flex;
        justify-content:center;
    }

    .news-title {
        font-size: var(--text-mobile-6);
    }

    .news-card-title {
        font-size: var(--text-mobile-2-1);
    }
    
    .news-all{
        display:none;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: var(--section-padding-xxs);
    }

    .news-header {
        padding: 0;
    }

    .news-title {
        font-size: var(--text-mobile-6);
    }

    .news-card-title {
        font-size: var(--text-mobile-2-1);
    }

    .news-card-text {
        font-size: var(--text-mobile-1);
    }

    .news-more {
        font-size: var(--text-base);
    }
}

/* ──────────────────────────────────────
   Sıkça Sorulan Sorular
────────────────────────────────────── */
.faq-section {
    background-color: var(--color-bg-soft);
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 40px;
    align-self: center;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blue);
    color: #FFFFFF;
    font-weight: 400;
    font-size: var(--text-base);
    line-height: 140%;
    letter-spacing: 0%;
    padding: 10px 25px;
    border-radius: 43px;
    width: fit-content;
}

.faq-right {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 24px 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: var(--text-lg);
    color: #000000;
    gap: 16px;
}

.faq-icon {
    font-size: var(--text-2xl);
    color: black;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease,
        transform 0.4s ease,
        padding 0.5s ease;
}

.faq-answer p {
    font-weight: 100;
    font-size: var(--text-base);
    line-height: 130%;
    letter-spacing: 0.5%;
    color: #000000;
    padding: 0 0 13px 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* SSS Responsive */
@media (max-width: 1500px) {
    .faq-section {
        padding: var(--section-padding-md);
    }

    .faq-grid {
        gap: 40px;
    }

    .faq-question {
        font-size: var(--text-md);
    }

    .faq-answer p {
        font-size: var(--text-sm-2);
    }
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 50px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-left {
        position: static;
    }

    .faq-badge {
        font-size: var(--text-sm);
        padding: 8px 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px;
    }

    .faq-left {
        gap: 12px;
    }

    .faq-question {
        font-size: var(--text-base);
        padding: 18px 0;
    }

    .faq-icon {
        font-size: var(--text-xl);
    }

    .faq-answer p {
        font-size: var(--text-sm);
    }
}

@media (max-width: 576px) {
    .faq-section{
        max-width: var(--container);
        padding-right: 1rem;
        padding-left: 1rem;
    }
    
    .faq-question {
        font-size: var(--text-mobile-2);
        padding: 16px 0;
        gap: 12px;
    }

    .faq-icon {
        font-size: var(--text-lg);
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-badge {
        font-size: var(--text-mobile-1);
        padding: 7px 16px;
    }
    
    .faq-title{
        font-size:var(--text-mobile-7);
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .faq-question {
        font-size: var(--text-mobile-2);
        padding: 14px 0;
    }

    .faq-icon {
        font-size: var(--text-md);
    }
}