/* =========================================================================
   CV AKADEMİ - STITCH TASARIM SİSTEMİ
   Bu dosya public site için tek stil kaynağıdır. Metronic (assets_) yalnızca
   Areas/Manage yönetim panelinde yüklenir; public tarafta yüklenmez.
   ========================================================================= */

/* ===== TASARIM TOKEN'LARI ===== */
:root {
    /* Renkler */
    --cv-primary: #010216;
    --cv-primary-container: #181c32;
    --cv-ink-deep: #0E1121;
    --cv-secondary: #795900;
    --cv-secondary-fixed: #f9bd22;
    --cv-secondary-container: #ffc329;
    --cv-gold-hover: #D97706;
    --cv-surface-base: #FFFFFF;
    --cv-surface-alt: #F9F9F9;
    --cv-surface-container-low: #f3f2ff;
    --cv-on-surface: #161b2d;
    --cv-on-surface-variant: #46464d;
    --cv-outline-variant: #c7c5cd;
    --cv-surface-dim: #d5d9f2;
    --cv-primary-fixed-dim: #c2c5e2;
    --cv-tertiary-fixed: #d5e3ff;
    --cv-on-tertiary-fixed-variant: #004786;
    --cv-on-secondary-fixed: #261a00;

    /* Köşe yarıçapı */
    --cv-radius-sm: 2px;
    --cv-radius-lg: 4px;
    --cv-radius-xl: 8px;
    --cv-radius-full: 12px;

    /* Boşluk */
    --cv-gutter: 24px;
    --cv-section-gap: 80px;
    --cv-margin-desktop: 48px;
    --cv-container-max: 1280px;

    /* Ölçüler */
    --cv-header-height: 76px;

    /* Bootstrap köprüsü */
    --bs-primary: #010216;
    --bs-primary-rgb: 1, 2, 22;
    --bs-body-font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --bs-body-color: #161b2d;
    --bs-link-color: #795900;
    --bs-link-hover-color: #D97706;
    --bs-border-radius: 8px;
}

/* ===== TEMEL ===== */
* { -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

body,
.cv-body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--cv-surface-base);
    color: var(--cv-on-surface);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* Tipografi ölçeği */
.cv-display-lg { font-size: 48px; line-height: 56px; letter-spacing: -0.02em; font-weight: 700; }
.cv-headline-xl { font-size: 32px; line-height: 40px; letter-spacing: -0.01em; font-weight: 600; }
.cv-headline-md { font-size: 24px; line-height: 32px; font-weight: 600; }
.cv-body-lg { font-size: 18px; line-height: 28px; font-weight: 400; }
.cv-body-md { font-size: 16px; line-height: 24px; font-weight: 400; }
.cv-label-md { font-size: 14px; line-height: 20px; letter-spacing: 0.05em; font-weight: 600; }
.cv-caption { font-size: 12px; line-height: 16px; font-weight: 500; }

@media (max-width: 767px) {
    .cv-display-lg { font-size: 32px; line-height: 40px; }
    .cv-headline-xl { font-size: 24px; line-height: 32px; }
}

.material-symbols-outlined {
    font-family: "Material Symbols Outlined", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -moz-osx-font-smoothing: grayscale;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
}

.cv-container {
    width: 100%;
    max-width: var(--cv-container-max);
    margin: 0 auto;
    padding-left: var(--cv-margin-desktop);
    padding-right: var(--cv-margin-desktop);
}

@media (max-width: 991px) {
    .cv-container { padding-left: 20px; padding-right: 20px; }
}

.cv-main { padding-top: 32px; padding-bottom: 32px; }

/* Tam genişlik bölüm: cv-container içinde olup kenarlardan taşan bloklar için */
.cv-bleed {
    margin-left: calc(-1 * var(--cv-margin-desktop));
    margin-right: calc(-1 * var(--cv-margin-desktop));
}

@media (max-width: 991px) {
    .cv-bleed { margin-left: -20px; margin-right: -20px; }
}

/* ===== HEADER ===== */
.cv-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--cv-header-height);
}

.cv-header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cv-logo img { height: 44px; width: auto; display: block; }

@media (max-width: 991px) {
    :root { --cv-header-height: 64px; }
    .cv-logo img { height: 32px; }
}

.cv-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--cv-primary);
    border-radius: var(--cv-radius-lg);
}

.cv-burger:hover { background: var(--cv-surface-alt); }

.cv-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

/* Header ikon butonu (sepet, hesap, duyuru) */
.cv-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--cv-on-surface-variant);
    border-radius: var(--cv-radius-lg);
    transition: background 0.15s ease, color 0.15s ease;
    text-decoration: none;
}

.cv-icon-btn:hover,
.cv-icon-btn:focus,
.cv-icon-btn.show {
    background: var(--cv-surface-alt);
    color: var(--cv-primary);
}

.cv-icon-btn .material-symbols-outlined { font-size: 24px; }

.cv-icon-btn::after { display: none !important; }

.cv-icon-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--cv-secondary-fixed);
    color: var(--cv-on-secondary-fixed);
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

/* ===== ÜST MENÜ ===== */
.cv-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1 1 auto;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cv-nav-item { position: relative; }

.cv-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cv-on-surface-variant);
    text-decoration: none;
    border: 0;
    background: transparent;
    border-radius: var(--cv-radius-lg);
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease;
}

.cv-nav-link:hover { color: var(--cv-primary); background: var(--cv-surface-alt); }

.cv-nav-item.active > .cv-nav-link,
.cv-nav-link.active {
    color: var(--cv-primary);
    font-weight: 700;
    box-shadow: inset 0 -2px 0 0 var(--cv-secondary);
}

.cv-nav-link .material-symbols-outlined { font-size: 18px; }

.cv-nav-link::after { display: none !important; }

/* Masaüstünde hover ile açılan alt menü */
@media (min-width: 992px) {
    .cv-nav-item.dropdown:hover > .dropdown-menu { display: block; }
}

/* Mobil offcanvas menü */
.cv-mobile-nav { padding: 0; margin: 0; list-style: none; }

.cv-mobile-nav > li { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }

.cv-mobile-nav a,
.cv-mobile-nav .cv-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--cv-primary);
    text-decoration: none;
    background: transparent;
    border: 0;
    text-align: left;
}

.cv-mobile-nav .cv-mobile-sub { padding: 0 0 8px 16px; margin: 0; list-style: none; }

.cv-mobile-nav .cv-mobile-sub > li { border: 0; }

.cv-mobile-nav .cv-mobile-sub a {
    padding: 10px 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cv-on-surface-variant);
}

/* ===== DROPDOWN (Bootstrap üzerine) ===== */
.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--cv-radius-xl);
    box-shadow: 0 16px 40px rgba(1, 2, 22, 0.12);
    padding: 8px;
    font-size: 15px;
}

.dropdown-item {
    border-radius: var(--cv-radius-lg);
    padding: 9px 12px;
    font-weight: 500;
    color: var(--cv-on-surface-variant);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--cv-surface-container-low);
    color: var(--cv-primary);
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--cv-primary);
    color: #fff;
}

.cv-dropdown-panel {
    width: 320px;
    max-width: calc(100vw - 24px);
    padding: 0;
}

.cv-dropdown-head {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 16px;
    font-weight: 700;
    color: var(--cv-primary);
}

.cv-dropdown-body { padding: 8px 18px; max-height: 300px; overflow-y: auto; }

.cv-dropdown-foot {
    padding: 14px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===== SCROLLTOP ===== */
.cv-scrolltop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--cv-radius-xl);
    background: var(--cv-primary);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.cv-scrolltop.cv-scrolltop-on { opacity: 1; visibility: visible; transform: none; }

.cv-scrolltop:hover { background: var(--cv-secondary-fixed); color: var(--cv-on-secondary-fixed); }

#TempMessage,
#TempError { display: none; }

/* ===== FORM ÖĞELERİ ===== */
.form-control,
.form-select {
    border-radius: var(--cv-radius-lg);
    border-color: rgba(0, 0, 0, 0.12);
    padding: 11px 14px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--cv-primary);
    box-shadow: 0 0 0 3px rgba(1, 2, 22, 0.08);
}

.form-control-solid { background: var(--cv-surface-alt); }

.form-label { font-size: 14px; font-weight: 600; color: var(--cv-primary); margin-bottom: 6px; }

.btn { border-radius: var(--cv-radius-lg); font-weight: 600; }

.btn-primary {
    --bs-btn-bg: var(--cv-primary);
    --bs-btn-border-color: var(--cv-primary);
    --bs-btn-hover-bg: #12142c;
    --bs-btn-hover-border-color: #12142c;
    --bs-btn-active-bg: #12142c;
    --bs-btn-active-border-color: #12142c;
    --bs-btn-disabled-bg: var(--cv-primary);
    --bs-btn-disabled-border-color: var(--cv-primary);
}

.link-primary {
    color: var(--cv-secondary) !important;
    text-decoration: none;
}

.link-primary:hover { color: var(--cv-gold-hover) !important; }

/* ===== ALT SAYFA BAŞLIK BÖLÜMÜ (cv-page-hero) ===== */
.cv-page-hero {
    background: var(--cv-primary);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.cv-page-hero-icon svg {
    color: rgba(255, 255, 255, 0.9);
}

.cv-page-hero-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cv-page-hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}

.cv-page-hero-crumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.cv-page-hero-crumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.15s ease;
}

.cv-page-hero-crumb .breadcrumb-item a:hover {
    color: var(--cv-secondary-fixed);
}

.cv-page-hero-crumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.65);
}

.cv-page-hero-crumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

/* Kategori filtre sekmeleri */
.cv-page-tab {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cv-on-surface-variant);
    background: #ffffff;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cv-page-tab:hover {
    background: var(--cv-surface-alt);
    border-color: rgba(0, 0, 0, 0.25);
    color: var(--cv-primary);
}

.cv-page-tab.active {
    background: var(--cv-secondary-fixed);
    border-color: var(--cv-secondary-fixed);
    color: #261a00;
    font-weight: 700;
}

.cv-page-tab.active:hover {
    background: var(--cv-gold-hover);
    border-color: var(--cv-gold-hover);
    color: #ffffff;
}

@media (max-width: 767px) {
    .cv-page-hero { padding: 28px 20px; }
    .cv-page-hero-title { font-size: 24px; }
}

/* ===== İÇERİK KARTI (cv-content-card) ===== */
.cv-content-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--cv-on-surface-variant);
    line-height: 1.7;
    font-size: 15px;
}

.cv-content-card h1,
.cv-content-card h2,
.cv-content-card h3,
.cv-content-card h4,
.cv-content-card h5,
.cv-content-card h6 {
    color: var(--cv-primary);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.cv-content-card > :first-child {
    margin-top: 0;
}

.cv-content-card a {
    color: var(--cv-secondary);
    text-decoration: none;
}

.cv-content-card a:hover {
    color: var(--cv-gold-hover);
}

.cv-content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cv-content-card table {
    width: 100%;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .cv-content-card { padding: 24px 20px; }
}

/* ===== BOŞ DURUM (cv-empty) ===== */
.cv-empty {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 56px 24px;
    text-align: center;
}

.cv-empty-title {
    color: var(--cv-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.cv-empty-desc {
    color: var(--cv-on-surface-variant);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== KOYU BUTON (cv-btn-dark) ===== */
.cv-btn-dark {
    display: inline-block;
    background: var(--cv-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border: 0;
    border-radius: 6px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.cv-btn-dark:hover {
    opacity: 0.88;
    color: #ffffff;
}

/* ===== İLETİŞİM BİLGİLERİ (cv-contact) ===== */
.cv-contact-card {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px 28px;
    height: 100%;
}

.cv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.cv-contact-item:last-child {
    margin-bottom: 0;
}

.cv-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--cv-primary);
}

.cv-contact-label {
    color: var(--cv-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.cv-contact-value {
    color: var(--cv-on-surface-variant);
    font-size: 14px;
    margin-bottom: 0;
    word-break: break-word;
}

/* ===== EĞİTMEN KARTI (cv-instructor) ===== */
.cv-instructor-card {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px 24px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cv-instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(24, 28, 50, 0.10);
}

.cv-instructor-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 18px rgba(1, 2, 22, 0.12);
}

.cv-instructor-photo-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--cv-primary);
}

.cv-instructor-name {
    color: var(--cv-primary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.cv-instructor-institution {
    color: var(--cv-secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
}

.cv-instructor-cv {
    color: var(--cv-on-surface-variant);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== KURS DETAY (cv-detail) ===== */
.cv-detail-title {
    color: var(--cv-primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.cv-detail-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 32px;
    color: var(--cv-on-surface-variant);
    line-height: 1.7;
}

.cv-detail-lead {
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 600;
}

.cv-detail-subtitle {
    color: var(--cv-primary);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.cv-detail-sidebar {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.cv-detail-image {
    width: 100%;
    border-radius: 8px;
}

.cv-detail-price-box {
    background: var(--cv-primary);
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
}

.cv-detail-price-old {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.cv-detail-price-current {
    display: block;
    color: var(--cv-secondary-fixed);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cv-detail-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.cv-detail-cta {
    width: 100%;
    background: var(--cv-secondary-fixed);
    border: 0;
    border-radius: 6px;
    color: #261a00;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 20px;
    transition: background 0.2s ease, color 0.2s ease;
}

.cv-detail-cta:hover,
.cv-detail-cta:focus,
.cv-detail-cta:active {
    background: var(--cv-gold-hover);
    color: #ffffff;
}

.cv-detail-cta-dark {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--cv-primary);
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 20px;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.cv-detail-cta-dark:hover {
    opacity: 0.88;
    color: #ffffff;
}

/* ===== HERO SECTION ===== */
.cv-hero {
  background: var(--cv-primary);
  border-radius: 16px;
  padding: 48px 40px;
  overflow: hidden;
}

.cv-hero-inner {
  gap: 40px;
}

.cv-hero-left {
  flex: 0 0 45%;
  max-width: 45%;
}

.cv-hero-badge {
  display: inline-block;
  background: var(--cv-secondary-container);
  color: #261a00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.cv-hero-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.cv-hero-accent {
  color: var(--cv-secondary-fixed);
}

.cv-hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cv-btn-gold {
  display: inline-block;
  background: var(--cv-secondary-fixed);
  color: #261a00;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.cv-btn-gold:hover { background: var(--cv-gold-hover); color: #fff; }

.cv-btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.cv-btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

.cv-hero-right {
  flex: 1;
  min-width: 0;
}

.cv-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cv-banner-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.cv-banner-item:hover { transform: translateY(-4px); }

.cv-banner-item.cv-banner-offset-down { margin-top: 24px; }
.cv-banner-item.cv-banner-offset-up  { margin-top: -24px; }

.cv-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cv-banner-item:hover .cv-banner-img { transform: scale(1.06); }

.cv-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* ===== TICKER ===== */
.cv-ticker {
  background: #00040f;
  border-radius: 8px;
  overflow: hidden;
  padding: 14px 0;
}

/* Sol boşluk track üzerinde değil kapsayıcıda durur; böylece translateX(-50%)
   tam iki blok için kusursuz döngü verir ve ilk öğe soldan kırpılmaz. */
.cv-ticker-inner {
  overflow: hidden;
  padding-left: 60px;
}

.cv-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: cv-marquee 30s linear infinite;
}

@keyframes cv-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cv-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  /* Boşluk gap yerine öğe içinde; toplam genişlik tam olarak iki bloğa bölünür. */
  padding-right: 60px;
}

.cv-ticker-item a,
.cv-ticker-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cv-ticker-item a:hover,
.cv-ticker-link:hover {
  color: var(--cv-secondary-fixed);
  text-decoration: none;
}

.cv-ticker-dot {
  width: 8px;
  height: 8px;
  background: var(--cv-secondary-fixed);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== KATEGORİ KARTLARI ===== */
.cv-cat-card {
  background: var(--cv-surface-alt);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.cv-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(24,28,50,0.10);
}

.cv-cat-icon-box {
  width: 100%;
  aspect-ratio: 16/9;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cv-cat-icon-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,2,22,0.04) 0%, transparent 100%);
}

.cv-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cv-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cv-link-gold { color: var(--cv-secondary); }
.cv-link-gold:hover { color: var(--cv-gold-hover); }

/* Responsive */
@media (max-width: 767px) {
  .cv-hero { padding: 32px 20px; }
  .cv-hero-left { flex: 0 0 100%; max-width: 100%; }
  .cv-hero-right { width: 100%; }
  .cv-banner-grid { grid-template-columns: 1fr 1fr; }
  .cv-banner-item.cv-banner-offset-down,
  .cv-banner-item.cv-banner-offset-up { margin-top: 0; }
}
/* ===== EĞİTİM TALEBİ (cv-req) ===== */
.cv-req {
  background: var(--cv-surface-alt);
  border-radius: 16px;
  padding: 56px 40px;
  margin-bottom: 40px;
}

.cv-req-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .cv-req-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.cv-req-heading {
  color: var(--cv-primary);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cv-req-lead {
  color: var(--cv-on-surface-variant);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cv-req-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.cv-req-benefit-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--cv-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-req-benefit-title {
  color: var(--cv-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cv-req-benefit-text {
  color: var(--cv-on-surface-variant);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.cv-req-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 24px 48px rgba(1, 2, 22, 0.12);
}

.cv-req-field {
  margin-bottom: 20px;
}

.cv-req-label {
  display: block;
  color: var(--cv-primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.cv-req-input {
  display: block;
  width: 100%;
  background: var(--cv-surface-alt);
  border: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--cv-primary);
  outline: none;
  transition: box-shadow 0.15s ease;
}

.cv-req-input::placeholder {
  color: #9a9aa1;
}

.cv-req-input:focus {
  box-shadow: inset 0 0 0 2px var(--cv-primary);
}

textarea.cv-req-input {
  resize: vertical;
  min-height: 110px;
}

.cv-req-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--cv-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  transition: opacity 0.15s ease;
}

.cv-req-submit:hover {
  opacity: 0.88;
}

/* ===== FOOTER (cv-footer) ===== */
.cv-footer-payments {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.cv-footer {
  display: block;
  background: var(--cv-ink-deep);
  border-radius: 16px;
  padding: 56px 40px 32px;
  margin-bottom: 24px;
}

.cv-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .cv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cv-footer-grid {
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 48px;
  }
}

.cv-footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.cv-footer-about {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cv-footer-social {
  display: flex;
  gap: 12px;
}

.cv-footer-social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.cv-footer-social-item:hover {
  border-color: var(--cv-secondary);
  color: var(--cv-secondary-fixed);
}

.cv-footer-title {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.cv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-footer-links li {
  margin-bottom: 12px;
}

.cv-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.cv-footer-links a:hover {
  color: var(--cv-secondary-fixed);
}

.cv-footer-newsletter {
  display: flex;
  gap: 8px;
}

.cv-footer-input {
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.cv-footer-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cv-footer-input:focus {
  border-color: var(--cv-secondary);
}

.cv-footer-submit {
  flex: 0 0 auto;
  border: 0;
  border-radius: 6px;
  background: var(--cv-secondary-fixed);
  color: var(--cv-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  transition: background-color 0.15s ease;
}

.cv-footer-submit:hover {
  background: var(--cv-gold-hover);
}

.cv-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 24px;
}

.cv-footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

/* =========================================================================
   METRONIC UYUMLULUK KATMANI (SHIM)
   Public sitede Metronic CSS/JS artık yüklenmiyor. Henüz Stitch sınıflarına
   taşınmamış görünümlerin bozulmaması için Metronic'e özgü yardımcı sınıflar
   burada minimal karşılıklarla tanımlanır. Bootstrap 5'in zaten sağladığı
   sınıflar (row, col, d-flex, btn, card, mb-0..5 vb.) tekrarlanmaz.
   ========================================================================= */

/* --- Kart varyantları --- */
.card-flush {
    border: 0;
    box-shadow: none;
    background: transparent;
}

.card-flush > .card-header,
.card-flush > .card-body,
.card-flush > .card-footer {
    background: transparent;
    border: 0;
}

.card-rounded { border-radius: var(--cv-radius-xl) !important; }
.card-rounded-top { border-top-left-radius: var(--cv-radius-xl) !important; border-top-right-radius: var(--cv-radius-xl) !important; }
.card-rounded-bottom { border-bottom-left-radius: var(--cv-radius-xl) !important; border-bottom-right-radius: var(--cv-radius-xl) !important; }

.card-title { font-size: 18px; font-weight: 700; color: var(--cv-primary); margin: 0; }

/* --- Ayraçlar --- */
.separator {
    display: block;
    height: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.separator-dashed { border-bottom-style: dashed; }
.separator-dotted { border-bottom-style: dotted; }
.separator-content { border: 0; }

/* --- Metronic flex yardımcıları --- */
.flex-stack { justify-content: space-between; align-items: center; }
.flex-center { justify-content: center; align-items: center; }
.flex-root { flex: 1; }
.flex-column-fluid { flex: 1 0 auto; }
.flex-row-fluid { flex: 1 auto; min-width: 0; }
.flex-equal { flex: 1 0 0px; }

/* --- Avatar / sembol kutusu --- */
.symbol {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    border-radius: var(--cv-radius-xl);
}

.symbol > img,
.symbol .symbol-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--cv-radius-xl);
    background: var(--cv-surface-alt);
    color: var(--cv-primary);
    font-weight: 600;
    overflow: hidden;
}

.symbol.symbol-circle,
.symbol.symbol-circle > img,
.symbol.symbol-circle .symbol-label { border-radius: 50%; }

.symbol-20px { width: 20px; height: 20px; }
.symbol-25px { width: 25px; height: 25px; }
.symbol-30px { width: 30px; height: 30px; }
.symbol-35px { width: 35px; height: 35px; }
.symbol-40px { width: 40px; height: 40px; }
.symbol-45px { width: 45px; height: 45px; }
.symbol-50px { width: 50px; height: 50px; }
.symbol-60px { width: 60px; height: 60px; }
.symbol-65px { width: 65px; height: 65px; }
.symbol-70px { width: 70px; height: 70px; }
.symbol-75px { width: 75px; height: 75px; }
.symbol-100px { width: 100px; height: 100px; }
.symbol-125px { width: 125px; height: 125px; }
.symbol-150px { width: 150px; height: 150px; }

/* --- Gri tonları --- */
.text-gray-100 { color: #f9f9f9 !important; }
.text-gray-200 { color: #f1f1f4 !important; }
.text-gray-300 { color: #dbdfe9 !important; }
.text-gray-400 { color: #c4cada !important; }
.text-gray-500 { color: #99a1b7 !important; }
.text-gray-600 { color: #78829d !important; }
.text-gray-700 { color: #4b5675 !important; }
.text-gray-800 { color: #252f4a !important; }
.text-gray-900 { color: var(--cv-primary) !important; }
.text-muted { color: #99a1b7 !important; }
.text-dark { color: var(--cv-primary) !important; }
.text-primary { color: var(--cv-primary) !important; }

.bg-gray-100 { background-color: #f9f9f9 !important; }
.bg-gray-200 { background-color: #f1f1f4 !important; }
.bg-gray-300 { background-color: #dbdfe9 !important; }

.bg-light-primary { background-color: var(--cv-surface-container-low) !important; }
.bg-light-success { background-color: #e8fff3 !important; }
.bg-light-warning { background-color: #fff8dd !important; }
.bg-light-danger { background-color: #fff5f8 !important; }
.bg-light-info { background-color: #f8f5ff !important; }
.bg-light-secondary { background-color: var(--cv-surface-alt) !important; }
.bg-light { background-color: var(--cv-surface-alt) !important; }

.text-hover-primary { transition: color 0.15s ease; }
.text-hover-primary:hover { color: var(--cv-secondary) !important; }

/* --- Metronic font ölçeği --- */
.fs-1 { font-size: 1.75rem !important; }
.fs-2 { font-size: 1.5rem !important; }
.fs-3 { font-size: 1.35rem !important; }
.fs-4 { font-size: 1.25rem !important; }
.fs-5 { font-size: 1.15rem !important; }
.fs-6 { font-size: 1.075rem !important; }
.fs-7 { font-size: 0.95rem !important; }
.fs-8 { font-size: 0.85rem !important; }
.fs-9 { font-size: 0.75rem !important; }
.fs-10 { font-size: 0.7rem !important; }
.fs-base { font-size: 1rem !important; }
.fs-2x { font-size: 2rem !important; }
.fs-2qx { font-size: 2.25rem !important; }
.fs-3x { font-size: 3rem !important; }
.fs-4x { font-size: 4rem !important; }
.fs-5x { font-size: 5rem !important; }

.fs-lg-1 { }
@media (min-width: 992px) {
    .fs-lg-1 { font-size: 1.75rem !important; }
    .fs-lg-2 { font-size: 1.5rem !important; }
    .fs-lg-3 { font-size: 1.35rem !important; }
    .fs-lg-4 { font-size: 1.25rem !important; }
    .fs-lg-2x { font-size: 2rem !important; }
}

.fw-bolder { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }

/* --- Buton varyantları --- */
.btn-light {
    --bs-btn-color: var(--cv-primary);
    --bs-btn-bg: var(--cv-surface-alt);
    --bs-btn-border-color: var(--cv-surface-alt);
    --bs-btn-hover-color: var(--cv-primary);
    --bs-btn-hover-bg: #eceff5;
    --bs-btn-hover-border-color: #eceff5;
    --bs-btn-active-bg: #eceff5;
    --bs-btn-active-border-color: #eceff5;
}

.btn-light-primary {
    --bs-btn-color: var(--cv-primary);
    --bs-btn-bg: var(--cv-surface-container-low);
    --bs-btn-border-color: var(--cv-surface-container-low);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--cv-primary);
    --bs-btn-hover-border-color: var(--cv-primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--cv-primary);
    --bs-btn-active-border-color: var(--cv-primary);
}

.btn-light-danger {
    --bs-btn-color: #f8285a;
    --bs-btn-bg: #fff5f8;
    --bs-btn-border-color: #fff5f8;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #f8285a;
    --bs-btn-hover-border-color: #f8285a;
}

.btn-custom,
.btn-body {
    --bs-btn-color: var(--cv-on-surface-variant);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-bg: var(--cv-surface-alt);
    --bs-btn-hover-border-color: var(--cv-surface-alt);
    --bs-btn-hover-color: var(--cv-primary);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
}

.btn-icon.btn-sm { height: 32px; width: 32px; }

.btn-active-color-primary:hover,
.btn-active-color-primary:focus,
.btn-active-color-primary.active { color: var(--cv-primary) !important; }

.btn-color-gray-500 { color: #99a1b7; }
.btn-color-gray-600 { color: #78829d; }
.btn-color-gray-700 { color: #4b5675; }
.btn-color-gray-800 { color: #252f4a; }

/* --- Rozetler --- */
.badge-primary { background: var(--cv-primary); color: #fff; }
.badge-light { background: var(--cv-surface-alt); color: var(--cv-on-surface-variant); }
.badge-light-primary { background: var(--cv-surface-container-low); color: var(--cv-primary); }
.badge-light-success { background: #e8fff3; color: #17c653; }
.badge-light-warning { background: #fff8dd; color: #f6c000; }
.badge-light-danger { background: #fff5f8; color: #f8285a; }
.badge-light-info { background: #f8f5ff; color: #7239ea; }

.badge-lg { padding: 0.4em 0.65em; font-size: 0.8em; }
.badge-sm { padding: 0.25em 0.5em; font-size: 0.75em; }

.badge-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6em;
    height: 1.6em;
    padding: 0;
    border-radius: 50%;
}

/* --- Overlay (görsel üstü katman) --- */
.overlay { position: relative; display: block; }

.overlay-wrapper { position: relative; display: block; overflow: hidden; }

.overlay-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.overlay:hover .overlay-layer,
.overlay.overlay-show .overlay-layer { opacity: 1; }

/* --- Menü (Metronic .menu yapısı) --- */
.menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu-column { flex-direction: column; }

.menu-item { display: block; position: relative; }

.menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--cv-on-surface-variant);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--cv-radius-lg);
    transition: background 0.15s ease, color 0.15s ease;
}

.menu-link:hover,
.menu-item.here > .menu-link,
.menu-item.active > .menu-link {
    background: var(--cv-surface-container-low);
    color: var(--cv-primary);
}

.menu-title { flex: 1 1 auto; }

.menu-text { flex: 1 1 auto; }

.menu-content { padding: 9px 12px; }

.menu-icon { display: inline-flex; align-items: center; }

.menu-arrow::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.6;
}

/* Metronic JS olmadan .menu-sub varsayılan olarak akış içinde kalır. */
.menu-sub { display: block; }

.menu-sub-dropdown {
    display: none;
    position: absolute;
    z-index: 1050;
    top: 100%;
    right: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--cv-radius-xl);
    box-shadow: 0 16px 40px rgba(1, 2, 22, 0.12);
    padding: 8px;
}

.menu-sub-dropdown.show { display: block; }

/* --- Kaydırılabilir alan --- */
.scroll-y,
.hover-scroll-y { overflow-y: auto; }

.mh-100px { max-height: 100px; }
.mh-150px { max-height: 150px; }
.mh-200px { max-height: 200px; }
.mh-250px { max-height: 250px; }
.mh-300px { max-height: 300px; }
.mh-325px { max-height: 325px; }
.mh-350px { max-height: 350px; }
.mh-400px { max-height: 400px; }
.mh-500px { max-height: 500px; }

/* --- Kalan app-* sarmalayıcıları --- */
.app-navbar,
.app-navbar-item { display: flex; align-items: center; }

.app-header-menu { display: flex; }

.app-content,
.app-wrapper,
.app-page,
.app-root,
.app-main,
.app-container { display: block; width: 100%; }

.app-footer { display: block; }

/* --- Metronic ikon fontu yerine Material Symbols --- */
.ki-outline,
.ki-duotone,
.ki-solid {
    font-family: "Material Symbols Outlined", sans-serif !important;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    font-feature-settings: "liga";
    -webkit-font-feature-settings: "liga";
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}

/* Duotone ikonların çift render olmaması için katman span'ları gizlenir. */
.ki-duotone > .path1,
.ki-duotone > .path2,
.ki-duotone > .path3,
.ki-duotone > .path4,
.ki-duotone > .path5,
.ki-duotone > i { display: none !important; }

.ki-abstract-14::before { content: "menu"; }
.ki-arrow-right::before { content: "arrow_forward"; }
.ki-arrow-up::before { content: "arrow_upward"; }
.ki-bank::before { content: "account_balance"; }
.ki-credit-cart::before { content: "credit_card"; }
.ki-cross::before { content: "close"; }
.ki-dots-horizontal::before { content: "more_horiz"; }
.ki-eye::before { content: "visibility"; }
.ki-information::before { content: "info"; }
.ki-left::before { content: "chevron_left"; }
.ki-moon::before { content: "dark_mode"; }
.ki-night-day::before { content: "light_mode"; }
.ki-notification-on::before { content: "notifications"; }
.ki-plus::before { content: "add"; }
.ki-profile-circle::before { content: "account_circle"; }
.ki-purchase::before { content: "shopping_cart"; }
.ki-screen::before { content: "desktop_windows"; }
.ki-star::before { content: "star"; }
.ki-to-right::before { content: "chevron_right"; }
.ki-trash::before { content: "delete"; }
.ki-verify::before { content: "verified"; }

/* --- Tema anahtarı kalıntıları: public tarafta tek tema (açık) --- */
.theme-dark-show { display: none !important; }

/* --- Metronic boşluk ölçeği (Bootstrap 5 yalnız 0-5 sağlar) --- */
.m-6 { margin: 1.5rem !important; }
.m-7 { margin: 1.75rem !important; }
.m-8 { margin: 2rem !important; }
.m-9 { margin: 2.25rem !important; }
.m-10 { margin: 2.5rem !important; }
.m-11 { margin: 2.75rem !important; }
.m-12 { margin: 3rem !important; }
.m-13 { margin: 3.25rem !important; }
.m-14 { margin: 3.5rem !important; }
.m-15 { margin: 3.75rem !important; }
.m-16 { margin: 4rem !important; }
.m-17 { margin: 4.25rem !important; }
.m-18 { margin: 4.5rem !important; }
.m-19 { margin: 4.75rem !important; }
.m-20 { margin: 5rem !important; }

.p-6 { padding: 1.5rem !important; }
.p-7 { padding: 1.75rem !important; }
.p-8 { padding: 2rem !important; }
.p-9 { padding: 2.25rem !important; }
.p-10 { padding: 2.5rem !important; }
.p-11 { padding: 2.75rem !important; }
.p-12 { padding: 3rem !important; }
.p-13 { padding: 3.25rem !important; }
.p-14 { padding: 3.5rem !important; }
.p-15 { padding: 3.75rem !important; }
.p-16 { padding: 4rem !important; }
.p-17 { padding: 4.25rem !important; }
.p-18 { padding: 4.5rem !important; }
.p-19 { padding: 4.75rem !important; }
.p-20 { padding: 5rem !important; }

.mt-6, .my-6 { margin-top: 1.5rem !important; }
.mt-7, .my-7 { margin-top: 1.75rem !important; }
.mt-8, .my-8 { margin-top: 2rem !important; }
.mt-9, .my-9 { margin-top: 2.25rem !important; }
.mt-10, .my-10 { margin-top: 2.5rem !important; }
.mt-11, .my-11 { margin-top: 2.75rem !important; }
.mt-12, .my-12 { margin-top: 3rem !important; }
.mt-13, .my-13 { margin-top: 3.25rem !important; }
.mt-14, .my-14 { margin-top: 3.5rem !important; }
.mt-15, .my-15 { margin-top: 3.75rem !important; }
.mt-16, .my-16 { margin-top: 4rem !important; }
.mt-17, .my-17 { margin-top: 4.25rem !important; }
.mt-18, .my-18 { margin-top: 4.5rem !important; }
.mt-19, .my-19 { margin-top: 4.75rem !important; }
.mt-20, .my-20 { margin-top: 5rem !important; }

.mb-6, .my-6 { margin-bottom: 1.5rem !important; }
.mb-7, .my-7 { margin-bottom: 1.75rem !important; }
.mb-8, .my-8 { margin-bottom: 2rem !important; }
.mb-9, .my-9 { margin-bottom: 2.25rem !important; }
.mb-10, .my-10 { margin-bottom: 2.5rem !important; }
.mb-11, .my-11 { margin-bottom: 2.75rem !important; }
.mb-12, .my-12 { margin-bottom: 3rem !important; }
.mb-13, .my-13 { margin-bottom: 3.25rem !important; }
.mb-14, .my-14 { margin-bottom: 3.5rem !important; }
.mb-15, .my-15 { margin-bottom: 3.75rem !important; }
.mb-16, .my-16 { margin-bottom: 4rem !important; }
.mb-17, .my-17 { margin-bottom: 4.25rem !important; }
.mb-18, .my-18 { margin-bottom: 4.5rem !important; }
.mb-19, .my-19 { margin-bottom: 4.75rem !important; }
.mb-20, .my-20 { margin-bottom: 5rem !important; }

.ms-6, .mx-6 { margin-left: 1.5rem !important; }
.ms-7, .mx-7 { margin-left: 1.75rem !important; }
.ms-8, .mx-8 { margin-left: 2rem !important; }
.ms-9, .mx-9 { margin-left: 2.25rem !important; }
.ms-10, .mx-10 { margin-left: 2.5rem !important; }
.ms-12, .mx-12 { margin-left: 3rem !important; }
.ms-15, .mx-15 { margin-left: 3.75rem !important; }
.ms-20, .mx-20 { margin-left: 5rem !important; }

.me-6, .mx-6 { margin-right: 1.5rem !important; }
.me-7, .mx-7 { margin-right: 1.75rem !important; }
.me-8, .mx-8 { margin-right: 2rem !important; }
.me-9, .mx-9 { margin-right: 2.25rem !important; }
.me-10, .mx-10 { margin-right: 2.5rem !important; }
.me-12, .mx-12 { margin-right: 3rem !important; }
.me-15, .mx-15 { margin-right: 3.75rem !important; }
.me-20, .mx-20 { margin-right: 5rem !important; }

.pt-6, .py-6 { padding-top: 1.5rem !important; }
.pt-7, .py-7 { padding-top: 1.75rem !important; }
.pt-8, .py-8 { padding-top: 2rem !important; }
.pt-9, .py-9 { padding-top: 2.25rem !important; }
.pt-10, .py-10 { padding-top: 2.5rem !important; }
.pt-11, .py-11 { padding-top: 2.75rem !important; }
.pt-12, .py-12 { padding-top: 3rem !important; }
.pt-13, .py-13 { padding-top: 3.25rem !important; }
.pt-14, .py-14 { padding-top: 3.5rem !important; }
.pt-15, .py-15 { padding-top: 3.75rem !important; }
.pt-16, .py-16 { padding-top: 4rem !important; }
.pt-17, .py-17 { padding-top: 4.25rem !important; }
.pt-18, .py-18 { padding-top: 4.5rem !important; }
.pt-19, .py-19 { padding-top: 4.75rem !important; }
.pt-20, .py-20 { padding-top: 5rem !important; }

.pb-6, .py-6 { padding-bottom: 1.5rem !important; }
.pb-7, .py-7 { padding-bottom: 1.75rem !important; }
.pb-8, .py-8 { padding-bottom: 2rem !important; }
.pb-9, .py-9 { padding-bottom: 2.25rem !important; }
.pb-10, .py-10 { padding-bottom: 2.5rem !important; }
.pb-11, .py-11 { padding-bottom: 2.75rem !important; }
.pb-12, .py-12 { padding-bottom: 3rem !important; }
.pb-13, .py-13 { padding-bottom: 3.25rem !important; }
.pb-14, .py-14 { padding-bottom: 3.5rem !important; }
.pb-15, .py-15 { padding-bottom: 3.75rem !important; }
.pb-16, .py-16 { padding-bottom: 4rem !important; }
.pb-17, .py-17 { padding-bottom: 4.25rem !important; }
.pb-18, .py-18 { padding-bottom: 4.5rem !important; }
.pb-19, .py-19 { padding-bottom: 4.75rem !important; }
.pb-20, .py-20 { padding-bottom: 5rem !important; }

.ps-6, .px-6 { padding-left: 1.5rem !important; }
.ps-7, .px-7 { padding-left: 1.75rem !important; }
.ps-8, .px-8 { padding-left: 2rem !important; }
.ps-9, .px-9 { padding-left: 2.25rem !important; }
.ps-10, .px-10 { padding-left: 2.5rem !important; }
.ps-12, .px-12 { padding-left: 3rem !important; }
.ps-15, .px-15 { padding-left: 3.75rem !important; }
.ps-20, .px-20 { padding-left: 5rem !important; }

.pe-6, .px-6 { padding-right: 1.5rem !important; }
.pe-7, .px-7 { padding-right: 1.75rem !important; }
.pe-8, .px-8 { padding-right: 2rem !important; }
.pe-9, .px-9 { padding-right: 2.25rem !important; }
.pe-10, .px-10 { padding-right: 2.5rem !important; }
.pe-12, .px-12 { padding-right: 3rem !important; }
.pe-15, .px-15 { padding-right: 3.75rem !important; }
.pe-20, .px-20 { padding-right: 5rem !important; }

.g-6, .gx-6 { --bs-gutter-x: 1.5rem; }
.g-7, .gx-7 { --bs-gutter-x: 1.75rem; }
.g-8, .gx-8 { --bs-gutter-x: 2rem; }
.g-9, .gx-9 { --bs-gutter-x: 2.25rem; }
.g-10, .gx-10 { --bs-gutter-x: 2.5rem; }
.g-6, .gy-6 { --bs-gutter-y: 1.5rem; }
.g-7, .gy-7 { --bs-gutter-y: 1.75rem; }
.g-8, .gy-8 { --bs-gutter-y: 2rem; }
.g-9, .gy-9 { --bs-gutter-y: 2.25rem; }
.g-10, .gy-10 { --bs-gutter-y: 2.5rem; }

@media (min-width: 992px) {
    .gx-lg-10 { --bs-gutter-x: 2.5rem; }
    .gy-lg-10 { --bs-gutter-y: 2.5rem; }
    .mb-lg-10 { margin-bottom: 2.5rem !important; }
    .p-lg-10 { padding: 2.5rem !important; }
    .py-lg-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .px-lg-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
}

@media (min-width: 1200px) {
    .gx-xl-10 { --bs-gutter-x: 2.5rem; }
    .gy-xl-10 { --bs-gutter-y: 2.5rem; }
    .h-xl-100 { height: 100% !important; }
    .mb-xl-10 { margin-bottom: 2.5rem !important; }
}

/* --- Sabit ölçü yardımcıları --- */
.w-30px { width: 30px !important; }
.w-35px { width: 35px !important; }
.w-40px { width: 40px !important; }
.w-45px { width: 45px !important; }
.w-50px { width: 50px !important; }
.w-150px { width: 150px !important; }
.w-200px { width: 200px !important; }
.w-250px { width: 250px !important; }
.w-275px { width: 275px !important; }
.w-300px { width: 300px !important; }
.w-325px { width: 325px !important; }
.w-350px { width: 350px !important; }
.w-400px { width: 400px !important; }
.h-30px { height: 30px !important; }
.h-35px { height: 35px !important; }
.h-40px { height: 40px !important; }
.h-45px { height: 45px !important; }
.h-50px { height: 50px !important; }

@media (min-width: 768px) {
    .w-md-40px { width: 40px !important; }
    .h-md-40px { height: 40px !important; }
}

@media (min-width: 992px) {
    .h-lg-50px { height: 50px !important; }
    .w-lg-200px { width: 200px !important; }
    .w-lg-325px { width: 325px !important; }
    .w-lg-400px { width: 400px !important; }
}

.cursor-pointer { cursor: pointer; }

.min-w-100px { min-width: 100px; }
.min-w-150px { min-width: 150px; }
.min-w-200px { min-width: 200px; }

/* --- Metronic form kalıntıları --- */
.fv-row { margin-bottom: 1rem; }
.fv-plugins-message-container { color: #f8285a; font-size: 0.9rem; }
.indicator-progress { display: none; }
.field-validation-error { display: block; color: #f8285a; font-size: 0.9rem; margin-top: 4px; }
.validation-summary-errors { display: none; }

/* =========================================================================
   EĞİTİM LİSTESİ (Stitch)
   ========================================================================= */
.cv-courses-hero {
    background: var(--cv-primary);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.cv-courses-hero-eyebrow {
    display: block;
    color: var(--cv-secondary-fixed);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cv-courses-hero-title {
    color: #fff;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin: 0 auto 20px;
    max-width: 900px;
}

.cv-courses-hero-desc {
    color: var(--cv-primary-fixed-dim);
    font-size: 18px;
    line-height: 28px;
    max-width: 672px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .cv-courses-hero { padding: 48px 20px; }
    .cv-courses-hero-title { font-size: 30px; line-height: 38px; }
    .cv-courses-hero-desc { font-size: 16px; line-height: 24px; }
}

/* Yapışkan filtre barı */
.cv-filterbar {
    position: sticky;
    top: var(--cv-header-height);
    z-index: 1020;
    background: var(--cv-surface-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.cv-filterbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.cv-filterbar-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1 1 auto;
    min-width: 0;
}

.cv-filterbar-tabs::-webkit-scrollbar { display: none; }

.cv-filter-tab {
    flex: 0 0 auto;
    padding: 9px 18px;
    border: 0;
    border-radius: var(--cv-radius-lg);
    background: var(--cv-surface-alt);
    color: var(--cv-on-surface-variant);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
}

.cv-filter-tab:hover {
    background: var(--cv-surface-container-low);
    color: var(--cv-primary);
}

.cv-filter-tab.active {
    background: var(--cv-primary);
    color: #fff;
}

.cv-filterbar-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.cv-filterbar-sort-label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cv-on-surface-variant);
}

.cv-sort-select {
    border: 1px solid var(--cv-outline-variant);
    border-radius: var(--cv-radius-lg);
    background: var(--cv-surface-base);
    color: var(--cv-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    outline: none;
}

.cv-sort-select:focus { border-color: var(--cv-primary); }

@media (max-width: 767px) {
    .cv-filterbar-inner { flex-direction: column; align-items: stretch; }
    .cv-filterbar-sort { justify-content: flex-end; }
}

/* Kart grid */
.cv-course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cv-gutter);
}

@media (min-width: 576px) { .cv-course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .cv-course-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .cv-course-grid { grid-template-columns: repeat(4, 1fr); } }

/* =========================================================================
   EĞİTİM KARTI (Stitch)
   ========================================================================= */
.cv-course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--cv-surface-base);
    border: 1px solid rgba(199, 197, 205, 0.3);
    border-radius: var(--cv-radius-xl);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cv-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(1, 2, 22, 0.14);
    border-color: rgba(199, 197, 205, 0.6);
}

.cv-course-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--cv-surface-alt);
    overflow: hidden;
}

/* Görsel bir bağlantı içine sarıldığı için doğrudan çocuk yerine torun seçici
   kullanılmalı; aksi hâlde kural uygulanmaz ve görsel karttan taşar. */
.cv-course-media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.cv-course-media img,
.cv-course-media iframe,
.cv-course-media video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border: 0;
    display: block;
}

.cv-course-media-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--cv-outline-variant);
}

.cv-course-media-empty .material-symbols-outlined { font-size: 40px; }

.cv-course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: var(--cv-radius-lg);
    font-size: 10px;
    line-height: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cv-course-badge-online { background: var(--cv-tertiary-fixed); color: var(--cv-on-tertiary-fixed-variant); }
.cv-course-badge-video { background: var(--cv-secondary-container); color: var(--cv-primary); }
.cv-course-badge-dark { background: var(--cv-primary); color: #fff; }

.cv-course-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 16px;
    gap: 10px;
}

/* Eğitim adları uzun olabildiği için başlık ölçüsü ölçülü tutulur ve üç satıra
   kadar gösterilir; böylece isimlerin çoğu kırpılmadan okunabilir. */
.cv-course-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 66px;
    color: var(--cv-primary);
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cv-course-title:hover { color: var(--cv-secondary); }

@media (max-width: 1399px) {
    .cv-course-title { font-size: 15px; line-height: 21px; min-height: 63px; }
}

.cv-course-instructors {
    margin: 0;
    color: var(--cv-on-surface-variant);
    font-size: 13px;
    line-height: 20px;
}

.cv-course-instructors p { margin: 0; }

.cv-course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.cv-course-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cv-on-surface-variant);
    font-size: 13px;
    font-weight: 500;
}

.cv-course-duration .material-symbols-outlined { font-size: 17px; }

.cv-course-price {
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.cv-course-price del {
    display: block;
    color: var(--cv-on-surface-variant);
    font-size: 12px;
    font-weight: 500;
}

.cv-course-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border: 0;
    border-radius: var(--cv-radius-lg);
    background: var(--cv-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.18s ease;
}

.cv-course-cta:hover,
.cv-course-cta:focus,
.cv-course-cta.show { background: var(--cv-secondary-fixed); color: var(--cv-on-secondary-fixed); }

.cv-course-cta::after { display: none !important; }

.cv-course-cta .material-symbols-outlined { font-size: 19px; }

.cv-course-footer { padding: 0 16px 16px; }

/* =========================================================================
   KURUMSAL SAYFA (Stitch)
   ========================================================================= */
.cv-corp-hero {
    background: var(--cv-primary-container);
    color: #fff;
    padding: 72px var(--cv-margin-desktop);
}

.cv-corp-crumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: var(--cv-primary-fixed-dim);
}

.cv-corp-crumb a { color: var(--cv-primary-fixed-dim); text-decoration: none; }
.cv-corp-crumb a:hover { color: var(--cv-secondary-fixed); }
.cv-corp-crumb .material-symbols-outlined { font-size: 16px; opacity: 0.6; }

.cv-corp-hero-title {
    color: #fff;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.02em;
    font-weight: 700;
    max-width: 860px;
    margin: 0 0 18px;
}

.cv-corp-hero-desc {
    color: var(--cv-primary-fixed-dim);
    font-size: 18px;
    line-height: 28px;
    max-width: 640px;
    margin: 0;
}

@media (max-width: 767px) {
    .cv-corp-hero { padding: 48px 20px; }
    .cv-corp-hero-title { font-size: 30px; line-height: 38px; }
    .cv-corp-hero-desc { font-size: 16px; line-height: 24px; }
}

.cv-corp-section { padding: 72px 0; }

.cv-corp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 992px) {
    .cv-corp-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.cv-corp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: var(--cv-radius-full);
    background: var(--cv-surface-container-low);
    color: var(--cv-secondary);
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cv-corp-chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cv-secondary-fixed);
}

.cv-corp-heading {
    border-left: 4px solid var(--cv-secondary-fixed);
    padding-left: 18px;
    color: var(--cv-primary);
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 600;
    margin-bottom: 24px;
}

.cv-corp-content {
    color: var(--cv-on-surface-variant);
    font-size: 16px;
    line-height: 1.7;
}

.cv-corp-content h1,
.cv-corp-content h2,
.cv-corp-content h3,
.cv-corp-content h4,
.cv-corp-content h5,
.cv-corp-content h6 {
    color: var(--cv-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 28px 0 12px;
}

.cv-corp-content > :first-child { margin-top: 0; }
.cv-corp-content a { color: var(--cv-secondary); text-decoration: none; }
.cv-corp-content a:hover { color: var(--cv-gold-hover); }
.cv-corp-content img { max-width: 100%; height: auto; border-radius: var(--cv-radius-xl); }
.cv-corp-content table { width: 100%; margin-bottom: 16px; }

.cv-btn-dark-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 24px;
    border-radius: var(--cv-radius-lg);
    background: var(--cv-primary);
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.cv-btn-dark-arrow:hover { background: var(--cv-secondary-fixed); color: var(--cv-on-secondary-fixed); }
.cv-btn-dark-arrow .material-symbols-outlined { font-size: 19px; }

/* Kurumsal dekoratif görsel kolonu */
.cv-corp-visual { position: relative; }

.cv-corp-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 16px;
}

.cv-corp-visual-block {
    background: var(--cv-surface-dim);
    border-radius: var(--cv-radius-xl);
    overflow: hidden;
}

.cv-corp-visual-block img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cv-corp-visual-block.cv-corp-visual-tall { grid-row: span 2; }

.cv-corp-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cv-secondary-fixed);
    color: var(--cv-primary);
    border-radius: var(--cv-radius-xl);
    padding: 20px;
}

.cv-corp-stat-value { font-size: 40px; line-height: 44px; font-weight: 800; letter-spacing: -0.02em; }

.cv-corp-stat-label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* Vizyon / Misyon */
.cv-bento { background: var(--cv-surface-alt); padding: 72px var(--cv-margin-desktop); }

@media (max-width: 991px) { .cv-bento { padding: 48px 20px; } }

.cv-bento-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }

.cv-bento-title {
    color: var(--cv-primary);
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 600;
    margin-bottom: 12px;
}

.cv-bento-desc { color: var(--cv-on-surface-variant); font-size: 18px; line-height: 28px; margin: 0; }

.cv-bento-grid { display: grid; grid-template-columns: 1fr; gap: var(--cv-gutter); }

@media (min-width: 992px) { .cv-bento-grid { grid-template-columns: 1fr 1fr; } }

.cv-bento-card {
    background: var(--cv-surface-base);
    border: 1px solid rgba(199, 197, 205, 0.5);
    border-radius: var(--cv-radius-xl);
    padding: 40px 32px;
}

.cv-bento-card-dark {
    background: var(--cv-primary-container);
    border-color: var(--cv-primary-container);
}

.cv-bento-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--cv-radius-xl);
    background: var(--cv-primary-container);
    color: var(--cv-secondary-fixed);
    margin-bottom: 24px;
}

.cv-bento-icon .material-symbols-outlined { font-size: 28px; }

.cv-bento-icon-gold { background: var(--cv-secondary-fixed); color: var(--cv-primary); }

.cv-bento-card-title {
    color: var(--cv-primary);
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cv-bento-card-text { color: var(--cv-on-surface-variant); font-size: 16px; line-height: 1.7; margin: 0; }

.cv-bento-card-dark .cv-bento-card-title { color: #fff; }
.cv-bento-card-dark .cv-bento-card-text { color: var(--cv-primary-fixed-dim); }

/* İstatistik banner */
.cv-statband {
    position: relative;
    background: var(--cv-primary);
    color: #fff;
    padding: 80px var(--cv-margin-desktop);
    text-align: center;
    overflow: hidden;
}

.cv-statband::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 2, 22, 0.8);
}

.cv-statband-inner { position: relative; max-width: 900px; margin: 0 auto; }

.cv-statband-icon { color: var(--cv-secondary-fixed); margin-bottom: 24px; }
.cv-statband-icon .material-symbols-outlined { font-size: 64px; }

.cv-statband-title {
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 600;
    margin-bottom: 16px;
}

.cv-statband-quote {
    color: var(--cv-secondary-fixed);
    font-size: 18px;
    line-height: 28px;
    font-style: italic;
    margin-bottom: 48px;
}

.cv-statband-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--cv-gutter);
}

@media (max-width: 575px) {
    .cv-statband { padding: 48px 20px; }
    .cv-statband-title { font-size: 24px; line-height: 32px; }
    .cv-statband-stats { grid-template-columns: 1fr; gap: 28px; }
}

.cv-statband-value {
    color: var(--cv-secondary-fixed);
    font-size: 40px;
    line-height: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cv-statband-label {
    color: var(--cv-primary-fixed-dim);
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* Bülten CTA */
.cv-newsletter-section { background: var(--cv-surface-base); padding: 72px 0; }

.cv-newsletter-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    background: var(--cv-surface-container-low);
    border-radius: var(--cv-radius-full);
    padding: 48px 40px;
}

@media (min-width: 992px) {
    .cv-newsletter-card { grid-template-columns: 1.2fr 1fr; gap: 48px; }
}

@media (max-width: 575px) { .cv-newsletter-card { padding: 32px 20px; } }

.cv-newsletter-title {
    color: var(--cv-primary);
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.01em;
    font-weight: 600;
    margin-bottom: 10px;
}

.cv-newsletter-desc { color: var(--cv-on-surface-variant); font-size: 16px; line-height: 24px; margin: 0; }

.cv-newsletter-form { display: flex; gap: 12px; }

.cv-newsletter-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid var(--cv-outline-variant);
    border-radius: var(--cv-radius-lg);
    background: var(--cv-surface-base);
    padding: 14px 16px;
    font-size: 15px;
    color: var(--cv-primary);
    outline: none;
}

.cv-newsletter-input:focus { border-color: var(--cv-primary); }

.cv-newsletter-submit {
    flex: 0 0 auto;
    border: 0;
    border-radius: var(--cv-radius-lg);
    background: var(--cv-secondary-fixed);
    color: var(--cv-on-secondary-fixed);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 14px 26px;
    transition: background 0.18s ease, color 0.18s ease;
}

.cv-newsletter-submit:hover { background: var(--cv-gold-hover); color: #fff; }

/* Material Symbols boyut yardımcıları */
.cv-ico-sm { font-size: 18px; }
.cv-ico-md { font-size: 22px; }
.cv-ico-lg { font-size: 28px; }
.cv-ico-xl { font-size: 36px; }

/* Yıldız puanlama (Metronic rating yerine) */
.rating { display: inline-flex; align-items: center; gap: 2px; }
.rating .rating-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.rating .rating-label { cursor: pointer; margin: 0; color: #dbdfe9; transition: color 0.15s ease; }
.rating .rating-label .material-symbols-outlined { font-size: 24px; }
.rating .rating-label:hover { color: #f6c000; }
.rating.rating-readonly .rating-label { cursor: default; }

/* Metronic uyumluluk: eğitmen avatarı ve akordeon ikonu */
@media (min-width: 992px) {
    .symbol.symbol-lg-160px { width: 160px; height: 160px; }
}

.accordion-icon-toggle .accordion-header { cursor: pointer; }
.accordion-icon-toggle .accordion-icon {
    display: inline-flex;
    align-items: center;
    color: var(--cv-primary);
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.accordion-icon-toggle .accordion-header.collapsed .accordion-icon { transform: rotate(0deg); }

/* =========================================================================
   PUBLIC İŞLEM SAYFALARI (Sepet, Hesap, Sipariş, Ödeme)
   Bu blok yalnızca public yerleşimi (.cv-main) kapsar; Areas/Manage yönetim
   paneli Metronic stillerini kullanmaya devam eder ve etkilenmez.
   ========================================================================= */

/* --- Kart yüzeyi: <card> tag helper'ının ürettiği .card.card-flush --- */
.cv-main .card {
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: none;
}

.cv-main .card.card-flush,
.cv-main .card.card-flush > .card-header,
.cv-main .card.card-flush > .card-body,
.cv-main .card.card-flush > .card-footer {
    border-width: 0;
}

.cv-main .card.card-flush {
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-main .card.card-flush.bg-light { background: var(--cv-surface-alt) !important; }

.cv-main .card > .card-header {
    padding: 28px 32px 0;
    min-height: 0;
    display: block;
}

.cv-main .card > .card-body { padding: 28px 32px; }

.cv-main .card > .card-header + .card-body { padding-top: 20px; }

.cv-main .card .card-label {
    display: block;
    color: var(--cv-primary);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.cv-main .card h1.card-title { display: flex; }

@media (max-width: 575.98px) {
    .cv-main .card > .card-header { padding: 20px 20px 0; }
    .cv-main .card > .card-body { padding: 20px; }
    .cv-main .card .card-label { font-size: 21px; }
}

/* --- Metronic'te var olup Bootstrap'te olmayan yardımcılar --- */
.cv-main .mt-50 { margin-top: 0; }

.border-dashed { border-style: dashed !important; }

.w-xl-300px { }
@media (min-width: 1200px) {
    .w-xl-300px { width: 300px !important; }
}

/* --- Girdi grubu (input-group-solid) --- */
.cv-main .input-group-solid > .form-control,
.cv-main .input-group-solid > .form-select { background: var(--cv-surface-alt); }

.cv-main .input-group-solid > .input-group-text {
    background: var(--cv-surface-alt);
    border-color: rgba(0, 0, 0, 0.12);
    color: var(--cv-on-surface-variant);
}

/* --- Onay kutuları --- */
.cv-main .form-check-custom { display: flex; align-items: flex-start; gap: 10px; padding-left: 0; }
.cv-main .form-check-custom > .form-check-input { margin: 2px 0 0; float: none; flex-shrink: 0; }
.cv-main .form-check-custom > .form-check-label { margin: 0; }
.cv-main .form-check-solid > .form-check-input { background-color: var(--cv-surface-alt); border-color: rgba(0, 0, 0, 0.15); }
.cv-main .form-check-input:checked { background-color: var(--cv-primary); border-color: var(--cv-primary); }
.cv-main .form-check-label { color: var(--cv-on-surface-variant); font-size: 14px; }
.cv-main .form-check-label a { color: var(--cv-secondary); text-decoration: none; }
.cv-main .form-check-label a:hover { color: var(--cv-gold-hover); }

/* --- Doğrulama mesajları --- */
.cv-main .text-danger { color: #d92d20 !important; }
.cv-main .field-validation-error,
.cv-main span[data-valmsg-for] {
    display: block;
    color: #d92d20;
    font-size: 13px;
    margin-top: 6px;
}

.cv-main .input-validation-error { border-color: #d92d20 !important; }

/* --- Tablolar --- */
.cv-table-wrap {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.cv-main .cv-table-wrap > .table { margin: 0; }

.cv-main .cv-table-wrap > .table > thead > tr > th {
    background: var(--cv-surface-alt);
    color: var(--cv-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-main .cv-table-wrap > .table > tbody > tr > td {
    padding: 16px 20px;
    color: var(--cv-on-surface);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
}

.cv-main .cv-table-wrap > .table > tbody > tr:last-child > td { border-bottom: 0; }

/* --- Buton yardımcıları --- */
.cv-btn-dark,
.cv-btn-gold,
.cv-btn-line {
    white-space: nowrap;
}

.cv-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1.2;
}

.cv-btn-block { display: flex; width: 100%; justify-content: center; }

.cv-btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cv-primary);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cv-btn-line:hover {
    background: var(--cv-surface-alt);
    border-color: rgba(0, 0, 0, 0.25);
    color: var(--cv-primary);
}

.cv-btn-line .material-symbols-outlined { font-size: 20px; }

.cv-btn-danger-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(217, 45, 32, 0.2);
    border-radius: 6px;
    background: #fff5f4;
    color: #d92d20;
    padding: 0;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.cv-btn-danger-soft:hover { background: #d92d20; color: #ffffff; }

.cv-btn-danger-soft .material-symbols-outlined { font-size: 20px; }

/* =========================================================================
   KİMLİK DOĞRULAMA SAYFALARI (cv-auth)
   ========================================================================= */
.cv-auth-wrap {
    max-width: 480px;
    margin: 16px auto 48px;
}

.cv-auth-wrap.cv-auth-wide { max-width: 720px; }

.cv-auth-card {
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(1, 2, 22, 0.06);
    padding: 40px;
}

@media (max-width: 575.98px) {
    .cv-auth-card { padding: 24px 20px; }
}

.cv-auth-title {
    color: var(--cv-primary);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
    margin: 0 0 8px;
}

.cv-auth-desc {
    color: var(--cv-on-surface-variant);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 28px;
}

.cv-auth-card .cv-req-label { display: block; }

.cv-auth-card .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--cv-primary);
    margin-bottom: 6px;
}

.cv-auth-actions { margin-top: 28px; }

.cv-auth-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    color: var(--cv-on-surface-variant);
    font-size: 14px;
}

.cv-auth-footer + .cv-auth-footer { margin-top: 0; border-top: 0; padding-top: 8px; }

.cv-auth-link {
    color: var(--cv-secondary);
    font-weight: 600;
    text-decoration: none;
}

.cv-auth-link:hover { color: var(--cv-gold-hover); }

.cv-auth-help {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 4px;
    font-size: 14px;
}

/* =========================================================================
   SEPET (cv-cart)
   ========================================================================= */
.cv-cart-wrap { max-width: 1100px; margin: 0 auto; }

.cv-cart-head { margin-bottom: 24px; }

.cv-cart-title {
    color: var(--cv-primary);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
}

.cv-cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--cv-gutter);
    align-items: start;
}

@media (min-width: 992px) {
    .cv-cart-grid { grid-template-columns: minmax(0, 1fr) 340px; }
}

.cv-cart-panel {
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.cv-cart-list { display: flex; flex-direction: column; }

.cv-cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-cart-item:first-child { padding-top: 0; }
.cv-cart-item:last-child { border-bottom: 0; padding-bottom: 0; }

.cv-cart-thumb {
    width: 88px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cv-surface-alt);
}

.cv-cart-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cv-cart-item-main { flex: 1 1 auto; min-width: 0; }

.cv-cart-item-title {
    display: block;
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 6px;
}

.cv-cart-item-title:hover { color: var(--cv-secondary); }

.cv-cart-item-price {
    color: var(--cv-primary);
    font-size: 15px;
    font-weight: 700;
}

.cv-cart-item-price del {
    color: var(--cv-on-surface-variant);
    font-weight: 500;
    margin-right: 8px;
}

.cv-cart-actions { margin-top: 24px; }

/* --- Sepet özeti --- */
.cv-cart-summary {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.cv-cart-summary-title {
    color: var(--cv-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 4px;
}

.cv-cart-summary-hint {
    color: var(--cv-on-surface-variant);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.cv-cart-summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

.cv-cart-summary-block + .cv-cart-summary-block { margin-top: 0; }

.cv-main .cv-cart-summary table { width: 100%; margin: 0; }

.cv-main .cv-cart-summary table td {
    padding: 6px 0;
    font-size: 15px;
    border: 0;
    background: transparent;
}

.cv-main .cv-cart-summary table td:first-child { color: var(--cv-on-surface-variant); }

.cv-main .cv-cart-summary table td:last-child {
    text-align: right;
    color: var(--cv-primary);
    font-weight: 700;
}

.cv-main .cv-cart-summary table tr:last-child td {
    padding-top: 12px;
    font-size: 17px;
}

/* --- İndirim kodu --- */
.cv-promo-form { margin: 0; }

.cv-promo-row { display: flex; gap: 8px; align-items: stretch; }

.cv-promo-input {
    flex: 1 1 auto;
    min-width: 0;
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 11px 14px;
    color: var(--cv-primary);
    font-size: 14px;
    outline: none;
}

.cv-promo-input::placeholder { color: #9a9aa3; }

.cv-promo-input:focus {
    border-color: var(--cv-primary);
    box-shadow: 0 0 0 3px rgba(1, 2, 22, 0.08);
}

.cv-promo-submit {
    flex: 0 0 auto;
    background: var(--cv-primary);
    color: #ffffff;
    border: 0;
    border-radius: 6px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.15s ease;
}

.cv-promo-submit:hover { opacity: 0.88; color: #ffffff; }

.cv-promo-applied {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.cv-promo-tag {
    display: inline-flex;
    align-items: center;
    background: var(--cv-primary);
    color: #ffffff;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cv-promo-remove {
    color: #d92d20;
    cursor: pointer;
    line-height: 1;
}

.cv-promo-remove:hover { color: #a91d13; }

/* =========================================================================
   HESAP / SİPARİŞ LİSTELERİ (cv-list)
   ========================================================================= */
.cv-list { display: flex; flex-direction: column; }

.cv-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-list-item:first-child { padding-top: 0; }
.cv-list-item:last-child { border-bottom: 0; padding-bottom: 0; }

.cv-list-item-lead {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 260px;
    min-width: 0;
}

.cv-list-thumb {
    width: 72px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cv-surface-alt);
}

.cv-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cv-list-item-title {
    display: block;
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.cv-list-item-title:hover { color: var(--cv-secondary); }

.cv-list-item-meta {
    display: block;
    color: var(--cv-on-surface-variant);
    font-size: 13px;
    margin-top: 4px;
}

.cv-list-item-aside {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.cv-tag-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

.cv-tag {
    display: inline-flex;
    align-items: center;
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 6px 14px;
    color: var(--cv-on-surface-variant);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.cv-tag-dark { background: var(--cv-primary); border-color: var(--cv-primary); color: #ffffff; }
.cv-tag-gold { background: #fff8e6; border-color: rgba(249, 189, 34, 0.35); color: #7a5a00; }
.cv-tag-ok { background: #edfdf3; border-color: rgba(23, 198, 83, 0.25); color: #077a3c; }
.cv-tag-warn { background: #fff5f4; border-color: rgba(217, 45, 32, 0.2); color: #b42318; }

.cv-progress-block { width: 190px; text-align: center; }

.cv-main .cv-progress-block .progress { height: 8px; border-radius: 999px; background: rgba(0, 0, 0, 0.08); }
.cv-main .cv-progress-block .progress-bar { background: var(--cv-secondary-fixed) !important; }

.cv-progress-label { display: block; color: var(--cv-on-surface-variant); font-size: 13px; margin-top: 8px; }

.cv-rating-block { width: 190px; text-align: center; }
.cv-rating-label { display: block; color: var(--cv-on-surface-variant); font-size: 13px; margin-top: 4px; }

/* =========================================================================
   ÖDEME SAYFASI (cv-pay)
   ========================================================================= */
.cv-pay-section + .cv-pay-section { margin-top: 28px; }

.cv-pay-section-title {
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 0 0 14px;
}

.cv-pay-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 28px 0;
}

.cv-pay-options {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .cv-pay-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Ödeme yöntemi / taksit seçim kutuları (btn-check ile eşleşen label'lar) */
.cv-main .btn-outline,
.cv-main .cv-pay-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 20px;
    color: var(--cv-primary);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.cv-main .btn-outline-dashed { border-style: dashed; }

.cv-main .btn-outline:hover,
.cv-main .cv-pay-option:hover {
    border-color: var(--cv-primary);
    background: var(--cv-surface-alt);
}

.cv-main .btn-check:checked + .btn-outline,
.cv-main .btn-check:checked + .cv-pay-option {
    border-style: solid;
    border-color: var(--cv-primary);
    background: var(--cv-surface-alt);
    box-shadow: 0 0 0 3px rgba(1, 2, 22, 0.06);
}

.cv-main .btn-check:focus-visible + .btn-outline { outline: 2px solid var(--cv-secondary-fixed); outline-offset: 2px; }

.cv-pay-option-title {
    display: block;
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.cv-pay-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--cv-secondary-fixed);
    border-radius: 8px;
    padding: 16px;
    color: var(--cv-on-surface-variant);
    font-size: 14px;
}

.cv-pay-note-title { color: var(--cv-primary); font-size: 15px; font-weight: 700; margin: 0 0 2px; }

.cv-pay-consents { display: flex; flex-direction: column; gap: 12px; }

.cv-pay-submit-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.cv-form-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

/* --- Toplam/özet tablosu (_CartFooter, Sipariş detayı) --- */
.cv-main .cv-sum-table { width: 100%; margin: 0; }

.cv-main .cv-sum-table td {
    padding: 6px 0;
    font-size: 15px;
    border: 0;
    background: transparent;
    color: var(--cv-on-surface-variant);
}

.cv-main .cv-sum-table td:last-child {
    text-align: right;
    color: var(--cv-primary);
    font-weight: 700;
}

.cv-main .cv-sum-table tr:last-child td {
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 17px;
}

.cv-main .cv-sum-table del { color: var(--cv-on-surface-variant); font-weight: 500; }

/* --- Sepet parçalarının başlık açılır menüsündeki (dropdown) daraltılmış hâli --- */
.cv-dropdown-body .cv-cart-item { gap: 12px; padding: 12px 0; }
.cv-dropdown-body .cv-cart-thumb { width: 52px; height: 38px; }
.cv-dropdown-body .cv-cart-item-title { font-size: 14px; }
.cv-dropdown-body .cv-cart-item-price { font-size: 13px; }
.cv-dropdown-body .cv-btn-danger-soft { width: 30px; height: 30px; }
.cv-dropdown-body .cv-btn-danger-soft .material-symbols-outlined { font-size: 17px; }

.cv-dropdown-body .cv-empty {
    background: transparent;
    border: 0;
    padding: 24px 8px;
}

.cv-dropdown-body .cv-empty .cv-empty-title { font-size: 15px; }
.cv-dropdown-body .cv-empty .cv-empty-desc { font-size: 13px; margin-bottom: 0; }
.cv-dropdown-body .cv-empty .cv-btn-dark { display: none; }

.cv-dropdown-foot .cv-sum-table td { font-size: 14px; }
.cv-dropdown-foot .cv-sum-table tr:last-child td { font-size: 15px; }

/* --- cv-req-input'un select ve devre dışı hâlleri --- */
select.cv-req-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2346464d'%3E%3Cpath d='M4.5 6.5 8 10l3.5-3.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    padding-right: 38px;
}

.cv-req-input:disabled,
.cv-req-input[readonly] {
    background: #f1f1f4;
    color: var(--cv-on-surface-variant);
    cursor: not-allowed;
}

.cv-req-input.input-validation-error { box-shadow: inset 0 0 0 2px #d92d20; }

/* Metronic'in yükleniyor göstergesi (Metronic CSS yüklenmediği için burada) */
.indicator-progress { display: none; }
.indicator-label { display: inline; }
[data-kt-indicator="on"] .indicator-progress { display: inline; }
[data-kt-indicator="on"] .indicator-label { display: none; }

/* ===== DUYURU LİSTESİ (cv-announce) ===== */
.cv-announce-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cv-announce-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #F9F9F9;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cv-announce-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.16);
    box-shadow: 0 8px 24px rgba(24, 28, 50, 0.08);
}

.cv-announce-title {
    color: #010216;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.cv-announce-date {
    color: #795900;
    font-size: 13px;
    font-weight: 600;
}

.cv-announce-arrow {
    flex-shrink: 0;
    color: #46464d;
    font-size: 22px;
}

.cv-announce-item:hover .cv-announce-arrow {
    color: #010216;
}

@media (max-width: 575px) {
    .cv-announce-item { padding: 16px 18px; }
    .cv-announce-title { font-size: 15px; }
}

/* =========================================================================
   BÖLÜM BAŞLIĞI (cv-section-head)
   ========================================================================= */
.cv-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.cv-section-title {
    color: var(--cv-primary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.cv-section-desc {
    color: var(--cv-on-surface-variant);
    font-size: 15px;
    margin: 0;
}

/* =========================================================================
   AÇILIR PENCERE (cv-modal)
   ========================================================================= */
.cv-modal {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(1, 2, 22, 0.18);
}

.cv-modal .modal-header {
    align-items: center;
    background: var(--cv-primary);
    border-bottom: 0;
    padding: 20px 28px;
}

.cv-modal-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0;
}

.cv-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.cv-modal-close:hover { background: rgba(255, 255, 255, 0.22); }

.cv-modal .modal-body { padding: 28px; }

.cv-modal .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px 28px;
    gap: 12px;
}

.cv-modal .modal-footer > * { margin: 0; }

/* =========================================================================
   SONUÇ KARTI (cv-result)
   ========================================================================= */
.cv-result { text-align: center; }

.cv-result-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #edfdf3;
    color: #077a3c;
    margin-bottom: 20px;
}

.cv-result-icon .material-symbols-outlined { font-size: 40px; }

.cv-result-icon-warn { background: #fff5f4; color: #b42318; }

.cv-result-title {
    color: var(--cv-primary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
}

.cv-result-desc {
    color: var(--cv-on-surface-variant);
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 20px;
}

.cv-result-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 10px 20px;
    color: var(--cv-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cv-result-meta-label {
    color: var(--cv-on-surface-variant);
    font-weight: 500;
}

.cv-result-info {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin: 0 auto 24px;
    text-align: left;
    color: var(--cv-on-surface-variant);
    font-size: 15px;
    line-height: 1.8;
    overflow-x: auto;
}

.cv-result-info strong,
.cv-result-info b { color: var(--cv-primary); }

.cv-result-info table { width: 100%; }

.cv-result-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================================================================
   TAKSİT SEÇİMİ (cv-inst)
   ========================================================================= */
.cv-inst-list { display: flex; flex-direction: column; gap: 12px; }

.cv-main label.cv-inst-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: var(--cv-surface-base);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.cv-main label.cv-inst-option:hover {
    border-color: var(--cv-primary);
    background: var(--cv-surface-alt);
}

.cv-main label.cv-inst-option:has(.cv-inst-radio:checked) {
    border-color: var(--cv-primary);
    background: var(--cv-surface-alt);
    box-shadow: 0 0 0 3px rgba(1, 2, 22, 0.06);
}

.cv-inst-lead { display: flex; align-items: center; gap: 14px; min-width: 0; }

.cv-main .cv-inst-radio {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin: 0;
    accent-color: var(--cv-primary);
}

.cv-inst-label {
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.cv-inst-amount {
    color: var(--cv-primary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .cv-main label.cv-inst-option { padding: 14px 16px; }
    .cv-inst-amount { font-size: 17px; }
}

/* =========================================================================
   EĞİTİM İÇERİĞİ AKORDİYONU (cv-acc)
   ========================================================================= */
.cv-acc { display: flex; flex-direction: column; gap: 12px; }

.cv-acc-item {
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.cv-acc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}

.cv-acc-icon {
    display: inline-flex;
    color: var(--cv-secondary);
    transition: transform 0.2s ease;
}

.cv-acc-header:not(.collapsed) .cv-acc-icon { transform: rotate(90deg); }

.cv-acc-title {
    color: var(--cv-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 0;
}

.cv-acc-body { padding: 0 20px 8px; }

.cv-acc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0 8px;
}

.cv-acc-row-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cv-primary);
    font-size: 14px;
    font-weight: 600;
    min-width: 0;
}

.cv-acc-row-title .material-symbols-outlined { color: var(--cv-secondary); flex-shrink: 0; }

.cv-acc-action {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    padding: 5px 14px;
    color: var(--cv-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cv-acc-action:hover { background: var(--cv-primary); border-color: var(--cv-primary); color: #ffffff; }

.cv-main .cv-acc-progress {
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
}

.cv-main .cv-acc-progress .progress-bar { background: var(--cv-secondary-fixed) !important; }

.cv-acc-item + .cv-acc-item { margin-top: 0; }

/* =========================================================================
   EĞİTİM İZLEME (cv-watch)
   ========================================================================= */
.cv-watch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--cv-gutter);
    align-items: start;
}

@media (min-width: 992px) {
    .cv-watch-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
}

.cv-watch-title {
    color: var(--cv-primary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin: 0 0 4px;
}

.cv-watch-group {
    color: var(--cv-on-surface-variant);
    font-size: 14px;
    margin: 0;
}

.cv-doc-list { display: flex; flex-direction: column; gap: 10px; }

.cv-doc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cv-surface-alt);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--cv-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.cv-doc-link:hover { border-color: var(--cv-primary); color: var(--cv-primary); }

.cv-doc-link .material-symbols-outlined { color: var(--cv-secondary); }

/* =========================================================================
   EĞİTMEN SATIRI (cv-instructor-row)
   ========================================================================= */
.cv-instructor-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.cv-instructor-row + .cv-instructor-row {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cv-instructor-row-body { flex: 1 1 260px; min-width: 0; }

.cv-instructor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 8px;
}

.cv-instructor-link .cv-instructor-name { margin-bottom: 0; }

.cv-instructor-link .material-symbols-outlined { color: var(--cv-secondary); }

.cv-instructor-link:hover .cv-instructor-name { color: var(--cv-secondary); }

/* =========================================================================
   ONAY KUTUSU SATIRI (cv-check)
   ========================================================================= */
.cv-check { display: flex; align-items: flex-start; gap: 10px; }

.cv-main .cv-check-input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 2px 0 0;
    accent-color: var(--cv-primary);
}

.cv-check-label {
    color: var(--cv-on-surface-variant);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cv-check-label a { color: var(--cv-secondary); text-decoration: none; font-weight: 600; }

.cv-check-label a:hover { color: var(--cv-gold-hover); }

/* =========================================================================
   ALAN GRUBU (cv-field-grid)
   ========================================================================= */
.cv-field-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

@media (min-width: 768px) {
    .cv-field-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.cv-field-full { grid-column: 1 / -1; }

.cv-input-group { display: flex; gap: 10px; flex-wrap: wrap; }

.cv-input-group > .cv-req-input { flex: 1 1 220px; min-width: 0; }

.cv-input-group > .cv-btn-dark { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; }

/* Duyuru açılır menüsündeki başlık boyutu */
.cv-dropdown-body .cv-list-item-title { font-size: 14px; }

@media (max-width: 575px) {
    .cv-section-title { font-size: 20px; }
    .cv-result-title { font-size: 20px; }
    .cv-result-icon { width: 60px; height: 60px; }
    .cv-result-icon .material-symbols-outlined { font-size: 34px; }
    .cv-instructor-row { gap: 16px; }
    .cv-instructor-photo { width: 84px; height: 84px; }
}
