﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO */
.gp-hero {
    height: 450px;
    background: url('../images/documents/documents-slider.jpg') center/cover no-repeat;
    position: relative;
    margin-top: 110px;
}

.gp-hero-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}

.gp-hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.gp-hero-btn {
    background: #e53935;
    border: none;
    padding: 12px 20px;
    color: white;
    border-radius: 25px;
    cursor: pointer;
}

/* CARDS */
.gp-card-area {
    padding: 40px;
    background: #fff;
}

.gp-card-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gp-card {
    flex: 0 0 800px; /* 🔥 kritik satır */
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
}

.gp-card-left {
    background: url('../images/documents/documents-hakkimizda.png') center/cover;
}

.gp-card-right {
    background: url('../images/documents/documents-belgesorgula.png') center/cover;
}

.gp-card::after {
    content: "";
    position: absolute;
    inset: 0;
}

.gp-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

    .gp-card-content h3 {
        margin: 5px 0;
    }

    .gp-card-content button {
        background: #e53935;
        border: none;
        padding: 8px 14px;
        border-radius: 20px;
        color: white;
        cursor: pointer;
    }

/* STATS */
.gp-stats {
    background: #f5f6fa;
    padding: 50px 20px;
    text-align: center;
}

.gp-stats-title {
    font-size: 14px;
    margin-bottom: 30px;
    color: #555;
}

.gp-stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.gp-stat h2 {
    font-size: 32px;
    color: #1a237e;
}

.gp-stat p {
    margin-top: 10px;
    font-size: 14px;
}

.fw-bold {
    font-weight: 600;
}

/* CTA BAR */
.gp-cta-bar {
    background: #c62828; /* kırmızı */
    padding: 40px 20px;
}

/* CONTAINER */
.gp-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXT */
.gp-cta-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
}

/* BUTTON */
.gp-cta-btn {
    border: 2px solid white;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

    .gp-cta-btn:hover {
        background: white;
        color: #c62828;
    }

@media (max-width: 768px) {
    .gp-cta-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.gp-card-hero-btn {
    background: #e53935;
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
}

/* =========================
   TABLET (1024px ve altı)
========================= */
@media (max-width: 1024px) {

    .gp-card {
        flex: 0 0 600px;
        height: 360px;
    }

    .gp-stats-grid {
        gap: 30px;
        flex-wrap: wrap;
    }
    .custom-img-myk-turkak {
        width: 150px;
    }
}

/* =========================
   MOBILE (768px ve altı)
========================= */
@media (max-width: 768px) {

    /* HERO */
    .gp-hero {
        height: 320px;
        margin-top: 80px;
    }

    .gp-hero-overlay {
        left: 5%;
        right: 5%;
        text-align: left;
    }
    .custom-img-myk-turkak{
        width:150px;
    }
    .gp-hero-title {
        font-size: 24px;
    }

    .gp-hero-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    /* CARDS */
    .gp-card-area {
        padding: 20px;
    }

    .gp-card-box {
        flex-direction: column;
        align-items: stretch;
    }

    .gp-card {
        flex: unset; /* 🔥 kritik fix */
        width: 100%;
        max-width: 100%;
        height: 240px;
    }

    .gp-card-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .gp-card-hero-btn {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* STATS */
    .gp-stats-grid {
        flex-direction: column;
        gap: 25px;
    }

    .gp-stat h2 {
        font-size: 26px;
    }

    /* CTA */
    .gp-cta-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gp-cta-text {
        font-size: 20px;
    }

    .gp-cta-btn {
        padding: 12px 18px;
    }
}

/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px) {

    .gp-hero {
        height: 260px;
    }

    .gp-hero-title {
        font-size: 20px;
    }
    .custom-img-myk-turkak {
        width: 150px;
    }
    .gp-card {
        height: 200px;
    }

    .gp-stats-title {
        font-size: 12px;
    }

    .gp-stat h2 {
        font-size: 22px;
    }
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.kvkk-box {
    border-left: 3px solid red;
    padding-left: 10px;
    color: var(--text-secondary);
}

.belgelendirme-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.7;
    color: #333;
}

    .belgelendirme-container h2 {
        font-size: 26px;
        margin: 32px 0 16px;
        font-weight: 700;
        color: #1a1a1a;
        border-left: 5px solid #034a9e;
        padding-left: 12px;
    }

    .belgelendirme-container h3 {
        font-size: 20px;
        margin: 28px 0 12px;
        font-weight: 600;
        color: #034a9e;
    }

    /* PARAGRAFLAR */
    .belgelendirme-container p {
        font-size: 16px;
        margin-bottom: 14px;
    }


.custom-img {
    display: block;
    margin: 25px auto;
    width: 400px;
    max-width: 100%;
    height: auto;
}

/* Mobil */
@media (max-width: 768px) {
    .custom-img {
        width: 200px;
    }
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.revision-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    min-width: 600px; /* mobilde taşma yerine scroll */
}

    /* Tüm hücreler */
    .revision-table td {
        padding: 10px 12px;
        vertical-align: top;
        border: none; /* çizgileri kaldır */
    }

    /* Başlık satırı */
    .revision-table tr:first-child td {
        font-weight: 700;
        text-align: center;
        font-size: 16px;
        padding: 14px 10px;
        background: #f7f7f7;
    }

    /* Kolon başlıkları */
    .revision-table tr:nth-child(2) td {
        font-weight: 600;
        background: #fafafa;
    }

    /* Satır ayrımı (çok hafif çizgi efekti) */
    .revision-table tr + tr td {
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    /* Hover efekti (opsiyonel) */
    .revision-table tr:hover td {
        background: rgba(0,0,0,0.02);
    }

/* Mobil uyum */
@media (max-width: 600px) {
    .revision-table {
        font-size: 13px;
    }

        .revision-table td {
            padding: 8px;
        }
}