/* =========================================
   CONTENT PAGES — İletişim, Hakkımızda, Transfer, Blog, Sözleşmeler
   ========================================= */

/* ===== PAGE HERO + BREADCRUMB =====
   (Bu sayfalar category.css yüklemiyor — temel stiller burada tanımlı) */
.page-hero {
    position: relative;
    padding: 48px 0 54px;
    background:
        radial-gradient(900px 400px at 85% -10%, rgba(138, 92, 240, 0.42), transparent 60%),
        linear-gradient(135deg, #281a5e 0%, #3e1f90 38%, #5523bf 70%, #6929d4 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.08) 0, transparent 38%),
        radial-gradient(circle at 70% 20%, rgba(255, 181, 68, 0.10) 0, transparent 40%);
}
.page-hero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    position: relative;
}
.page-hero h1 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.14;
    color: #fff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}
.page-hero p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    line-height: 1.6;
    margin-top: 10px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.85); text-decoration: none; transition: color 0.15s ease; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: 0.5; font-size: 11px; }
.breadcrumb__current { color: #fff; font-weight: 600; }
@media (max-width: 600px) {
    .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        gap: 4px 6px;
        font-size: 11.5px;
        line-height: 1.35;
        padding: 8px 12px;
        border-radius: 14px;
        max-width: 100%;
    }
    .breadcrumb__sep { font-size: 10px; }
    .breadcrumb__current { flex-basis: 100%; white-space: normal; }
}

.page-hero--alt {
    background: linear-gradient(135deg, #1c0f44 0%, #3e1f90 50%, #6929d4 100%);
}

/* ===== CMS İÇERİK SAYFASI (Hakkımızda, sözleşmeler vb.) ===== */
.content-page {
    background: var(--color-bg-soft);
    padding: 48px 0 72px;
}
.content-page__inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}
.content-page__body {
    background: #fff;
    border-radius: 18px;
    padding: 44px 48px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 12px 34px rgba(16, 24, 40, 0.06);
    font-size: 15.5px;
    line-height: 1.78;
    color: var(--color-text);
    overflow-wrap: break-word;
}
.content-page__body > :first-child { margin-top: 0; }
.content-page__body > :last-child { margin-bottom: 0; }
.content-page__body h1,
.content-page__body h2,
.content-page__body h3,
.content-page__body h4 {
    color: var(--color-text);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 30px 0 14px;
}
.content-page__body h1 { font-size: 28px; }
.content-page__body h2 { font-size: 23px; }
.content-page__body h3 { font-size: 19px; }
.content-page__body h4 { font-size: 16.5px; }
.content-page__body p { margin: 0 0 16px; }
.content-page__body a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.content-page__body a:hover { color: var(--color-cyan); }
.content-page__body ul,
.content-page__body ol { margin: 0 0 18px; padding-left: 4px; list-style: none; }
.content-page__body ol { counter-reset: cp; }
.content-page__body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}
.content-page__body ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
}
.content-page__body ol li {
    counter-increment: cp;
}
.content-page__body ol li::before {
    content: counter(cp);
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    font-size: 11.5px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--color-green), var(--color-cyan));
    border-radius: 6px;
    display: grid;
    place-items: center;
}
.content-page__body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 14px 0;
}
.content-page__body iframe,
.content-page__body video { max-width: 100%; border-radius: 12px; }
.content-page__body blockquote {
    margin: 20px 0;
    padding: 14px 20px;
    border-left: 4px solid var(--color-green);
    background: var(--color-bg-tint, #f1edfb);
    border-radius: 0 12px 12px 0;
    color: var(--color-text-muted);
    font-style: italic;
}
.content-page__body table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}
.content-page__body th,
.content-page__body td {
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    text-align: left;
}
.content-page__body th {
    background: var(--color-bg-soft);
    font-weight: 800;
}
.content-page__body hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 28px 0;
}

@media (max-width: 640px) {
    .page-hero { padding: 32px 0 38px; }
    .content-page { padding: 28px 0 48px; }
    .content-page__body { padding: 26px 22px; border-radius: 14px; font-size: 15px; }
    .content-page__body h1 { font-size: 24px; }
    .content-page__body h2 { font-size: 20px; }
}

/* ===== İLETİŞİM ===== */
.contact-main {
    background: var(--color-bg-soft);
    padding: 48px 0 80px;
}

.contact-main__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: start;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
}

.contact-info-card h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 18px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(105,41,212,0.12) 0%, rgba(138, 92, 240,0.12) 100%);
    color: var(--color-green);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item__body strong {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item__body p,
.contact-info-item__body a {
    font-size: 15px;
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
}

.contact-info-item__body a:hover {
    color: var(--color-green);
}

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
}

.contact-form-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 6px;
}

.contact-form-card > p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.contact-map {
    margin-top: 28px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
}

.contact-map__embed {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e3f1f8 0%, #f1faf3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    border: 2px dashed var(--color-border);
}

/* ===== HAKKIMIZDA ===== */
.about-section {
    background: #fff;
    padding: 56px 0;
}

.about-section--alt { background: var(--color-bg-soft); }

.about-section__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-story__content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.about-story__content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.about-story__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.15);
    aspect-ratio: 4/5;
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-stat {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
}

.about-stat__num {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat__label {
    font-size: 13.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.about-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
    text-align: center;
    padding: 28px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

.team-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 14px;
}

.team-card__name { font-size: 16px; font-weight: 800; color: var(--color-text); margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--color-green); font-weight: 700; margin-bottom: 10px; }
.team-card__bio { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.5; }

/* ===== TRANSFER ===== */
.transfer-routes {
    background: var(--color-bg-soft);
    padding: 48px 0 60px;
}

.transfer-routes__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.transfer-form {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
    margin-bottom: 32px;
}

.transfer-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vehicle-card {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 14px;
    padding: 22px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.vehicle-card:hover {
    border-color: var(--color-green);
    transform: translateY(-2px);
}

.vehicle-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.vehicle-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(105,41,212,0.12) 0%, rgba(138, 92, 240,0.12) 100%);
    color: var(--color-green);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vehicle-card__title { font-size: 15px; font-weight: 800; color: var(--color-text); margin-bottom: 2px; }
.vehicle-card__capacity { font-size: 12.5px; color: var(--color-text-muted); }

.vehicle-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.vehicle-card__features li {
    padding: 4px 0 4px 22px;
    position: relative;
    font-size: 13px;
    color: var(--color-text);
}

.vehicle-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 4px;
    color: #00bf63;
    font-weight: 800;
}

.vehicle-card__price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.vehicle-card__price strong { font-size: 22px; color: var(--color-green); font-weight: 800; }
.vehicle-card__price small { font-size: 12.5px; color: var(--color-text-muted); }

.price-table {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
    margin-top: 32px;
}

.price-table h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 18px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table th,
.price-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.price-table th {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-bg-soft);
}

.price-table td strong { color: var(--color-green); font-weight: 800; }

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-bg-soft);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body { padding: 20px; }

.blog-card__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-green);
    background: rgba(105,41,212,0.1);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog-card__excerpt {
    font-size: 13.5px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--color-text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.blog-card__meta span { display: inline-flex; align-items: center; gap: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-main__inner { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; gap: 32px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-team { grid-template-columns: repeat(2, 1fr); }
    .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .transfer-form__row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .about-team { grid-template-columns: 1fr; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .transfer-form__row { grid-template-columns: 1fr; }
    .about-story__content h2 { font-size: 24px; }
    .price-table { overflow-x: auto; }
}

/* =========================================
   404 / HATA SAYFASI
   ========================================= */
.error-page {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 64px var(--container-pad) 40px;
}
.error-page__inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 12px;
}
.error-page__code {
    font-size: clamp(72px, 14vw, 132px);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-green, #6929d4) 0%, var(--color-cyan, #9b6cff) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}
.error-page__title {
    font-size: clamp(22px, 3.4vw, 34px);
    font-weight: 800;
    color: var(--color-text);
    margin: 10px 0 12px;
}
.error-page__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0 auto 26px;
    max-width: 480px;
}
.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}
.error-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    transition: border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.error-page__btn:hover {
    border-color: var(--color-green, #6929d4);
    color: var(--color-green, #6929d4);
    transform: translateY(-1px);
}
.error-page__btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-green, #6929d4) 0%, var(--color-cyan, #9b6cff) 100%);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(105, 41, 212, .28);
}
.error-page__btn--primary:hover {
    color: #fff;
    box-shadow: 0 12px 26px rgba(105, 41, 212, .38);
}
.error-page__cats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}
.error-page__cat {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    background: var(--color-bg-soft, #f3f1fb);
    transition: background .15s ease, color .15s ease;
}
.error-page__cat:hover {
    background: var(--color-green, #6929d4);
    color: #fff;
}
.error-page .deals__inner {
    margin-top: 48px;
}
