/* =============================================
   MEG Teması – PAGE
   Yüklendiği Yer : TÜM PAGE.PHP SAYFALAR
   İçerik         : Genel sayfa şablonu (page.php) ortak stiller
   ============================================= */

/* ── SAYFA HERO BANNER ───────────────────────────────────────── */
.meg-page-hero {
    background: var(--navy);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Arka plan desen katmanı */
.meg-page-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,175,55,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(212,175,55,.06) 0%, transparent 40%);
    pointer-events: none;
}

.meg-page-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* İkon */
.meg-page-hero__icon {
    width: 72px;
    height: 72px;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.meg-page-hero__icon i {
    font-size: 28px;
    color: var(--gold);
}

/* Başlık */
.meg-page-hero__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

/* Alt başlık */
.meg-page-hero__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,.65);
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}

/* Breadcrumb */
.meg-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 4px;
}

.meg-page-hero__breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color .2s;
}

.meg-page-hero__breadcrumb a:hover {
    color: var(--white);
}

.meg-page-hero__breadcrumb span:not(.meg-page-hero__sep) {
    color: rgba(255,255,255,.75);
}

.meg-page-hero__sep {
    color: rgba(255,255,255,.3);
    font-size: 16px;
}

/* ── SAYFA WRAPPER ───────────────────────────────────────────── */
.meg-page-wrap {
    background: #f8fafc;
    padding: 80px 0;
}

/* ── GENEL İÇERİK KARTI ──────────────────────────────────────── */
.meg-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
    border: 1px solid #edf2f7;
    padding: 50px;
}

/* ── MOBİL ───────────────────────────────────────────────────── */