/* =========================================================
   PAGE DETAIL
   Dinamik içerik sayfası
   ========================================================= */

.page-detail-page {
    background: #ffffff;
    padding: 28px 0 72px;
    color: #111111;
}

.page-detail-page * {
    box-sizing: border-box;
}

.page-detail-page a {
    text-decoration: none;
}

.page-detail-page img {
    max-width: 100%;
    display: block;
}

/* Hero */
.page-detail-hero {
    padding: 42px;
    border: 1px solid #ececec;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(196, 0, 0, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.page-detail-hero__content {
    max-width: 760px;
}

.page-detail-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #ffe8e8;
    color: #c40000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-detail-hero__title {
    margin: 0;
    color: #111111;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

/* Content card */
.page-detail-card {
    margin-top: 24px;
    padding: 28px;
    border: 1px solid #ececec;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.page-detail-content {
    color: #444444;
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.page-detail-content h2,
.page-detail-content h3,
.page-detail-content h4 {
    margin-top: 0;
    color: #111111;
    line-height: 1.25;
    font-weight: 800;
}

.page-detail-content p:last-child {
    margin-bottom: 0;
}

.page-detail-content ul,
.page-detail-content ol {
    padding-left: 20px;
}

.page-detail-content table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
}

.page-detail-content table td,
.page-detail-content table th {
    padding: 12px;
    border: 1px solid #ececec;
}

@media (max-width: 992px) {
    .page-detail-page {
        padding: 22px 0 56px;
    }

    .page-detail-hero {
        padding: 32px 24px;
    }

    .page-detail-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .page-detail-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .page-detail-hero__title {
        font-size: 30px;
    }

    .page-detail-card {
        padding: 18px;
        border-radius: 22px;
    }

    .page-detail-content {
        font-size: 15px;
        line-height: 1.8;
    }
}/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    background: #ffffff;
    padding: 28px 0 72px;
    color: #111111;
}

.contact-page * {
    box-sizing: border-box;
}

.contact-page a {
    text-decoration: none;
}

.contact-hero {
    padding: 42px;
    border: 1px solid #ececec;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(196, 0, 0, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-hero__content {
    max-width: 760px;
}

.contact-hero__eyebrow,
.contact-card__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffe8e8;
    color: #c40000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-hero__eyebrow {
    margin-bottom: 18px;
}

.contact-hero__title {
    margin: 0 0 16px;
    color: #111111;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-hero__text {
    margin: 0;
    max-width: 700px;
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
}

.contact-section {
    margin-top: 24px;
}

.contact-card {
    padding: 28px;
    border: 1px solid #ececec;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.contact-card__header {
    margin-bottom: 20px;
}

.contact-card__eyebrow {
    margin-bottom: 10px;
}

.contact-card__title {
    margin: 0;
    color: #111111;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 16px;
    border: 1px solid #efefef;
    border-radius: 16px;
    background: #fcfcfc;
}

.contact-info-item--full {
    grid-column: 1 / -1;
}

.contact-info-item__label {
    color: #777777;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-info-item__value {
    min-width: 0;
    color: #111111;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 992px) {
    .contact-page {
        padding: 22px 0 56px;
    }

    .contact-hero {
        padding: 32px 24px;
    }

    .contact-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .contact-hero__title {
        font-size: 30px;
    }

    .contact-hero__text {
        font-size: 15px;
        line-height: 1.75;
    }

    .contact-card {
        padding: 18px;
        border-radius: 22px;
    }

    .contact-info-list {
        grid-template-columns: 1fr;
    }

    .contact-info-item--full {
        grid-column: auto;
    }
}