﻿@media (max-width: 768px) {

    html, body {
        overflow: hidden; /* sadece bu sayfa kontrolü main'e verir */
        height: 100%;
    }

    .guvence-page {
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
}


@media screen and (max-width: 768px) {
    .fs-size-20-mobil {
        font-size: 20px;
    }
}

/* iPhone SE için */
@media screen and (max-width: 375px) {
    .fs-size-20-mobil {
        font-size: 18px;
    }
}

.mobile-stat-title {
    font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
    .mobile-stat-title {
        font-size: 2rem;
    }
}

/* Uygulama Adımları */
.application-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

    .application-steps :hover {
        background: var(--primary-white);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.application-step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f7f7f7;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    min-height: 90px;
    border: 1px solid var(--glass-border)
}

    .application-step-item:hover {
        background: var(--primary-white);
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.application-step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #c7d0df;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.application-step-content h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobil */
@media (max-width: 768px) {

    .application-step-item {
        padding: 1rem;
        gap: 0.75rem;
        min-height: 80px;
    }

    .application-step-number {
        font-size: 1.75rem;
        width: 32px;
    }

    .application-step-content {
        flex: 1;
    }

        .application-step-content h4 {
            font-size: 1rem;
            line-height: 1.35;
        }
}

.validity-card-title {
    font-size: 1.05rem !important;
    margin: 0 !important;
    color: var(--text-primary) !important;
    line-height: 1.4 !important;
    font-weight: bold;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: 600;
    unicode-bidi: isolate;
}

@media (max-width: 768px) {
    .validity-card-title {
        font-size: 1rem !important;
        font-weight:600;
    }
}

.guvence-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .guvence-subtitle {
        font-size: 1rem !important;
    }
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: inline;
}

/* Mobil */
@media (max-width: 768px) {
    .mobile-only {
        display: inline;
    }

    .desktop-only {
        display: none;
    }
}

.guvence-yum-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.guvence-yum-content {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem !important;
}

@media (max-width: 768px) {
    .guvence-yum-title {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }

    .guvence-yum-content {
        font-size: 1rem !important;
        color: rgba(255,255,255,0.9);
        margin-bottom: 1rem !important;
    }
}