/* =============================================
   KEMPTRAN TRANSFER — TEMA ANA CSS
   Modern & Minimal | v1.0.0
   ============================================= */

/* ===== CSS DEĞİŞKENLERİ ===== */
:root {
    --kt-primary:      #0f172a;
    --kt-primary-light:#1e293b;
    --kt-accent:       #f5a623;
    --kt-accent-dark:  #e0941a;
    --kt-accent-light: #fff8ee;
    --kt-white:        #ffffff;
    --kt-bg:           #f8fafc;
    --kt-bg2:          #f1f5f9;
    --kt-border:       #e2e8f0;
    --kt-text:         #1e293b;
    --kt-text-mid:     #475569;
    --kt-text-light:   #94a3b8;
    --kt-success:      #16a34a;
    --kt-radius-sm:    6px;
    --kt-radius:       12px;
    --kt-radius-lg:    20px;
    --kt-shadow:       0 4px 24px rgba(15,23,42,.08);
    --kt-shadow-lg:    0 12px 48px rgba(15,23,42,.14);
    --kt-transition:   0.25s cubic-bezier(.4,0,.2,1);
    --kt-container:    1180px;
    --kt-header-h:     72px;
    --kt-topbar-h:     38px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--kt-text);
    background: var(--kt-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--kt-transition); }
a:hover { color: var(--kt-accent); }
ul  { list-style: none; }

/* ===== KONTEYNER ===== */
.kt-container {
    max-width: var(--kt-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ORTAK BÖLÜM STİLİ ===== */
.kt-section-header { margin-bottom: 48px; }
.kt-center { text-align: center; }

.kt-section-tag {
    display: inline-block;
    background: var(--kt-accent-light);
    color: var(--kt-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.kt-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--kt-primary);
    line-height: 1.25;
    margin-bottom: 14px;
}

.kt-section-sub {
    font-size: 17px;
    color: var(--kt-text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== TOPBAR ===== */
.kt-topbar {
    background: var(--kt-primary);
    height: var(--kt-topbar-h);
    display: flex;
    align-items: center;
    font-size: 13px;
}

.kt-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.kt-topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    transition: color var(--kt-transition);
    margin-right: 20px;
}
.kt-topbar-link:last-child { margin-right: 0; }
.kt-topbar-link:hover { color: var(--kt-accent); }
.kt-topbar-left, .kt-topbar-right { display: flex; align-items: center; }

/* ===== HEADER ===== */
.kt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--kt-white);
    height: var(--kt-header-h);
    border-bottom: 1px solid var(--kt-border);
    box-shadow: 0 2px 12px rgba(15,23,42,.06);
    transition: box-shadow var(--kt-transition), background var(--kt-transition);
}

.kt-header.kt-header-scrolled {
    box-shadow: 0 4px 24px rgba(15,23,42,.12);
}

.kt-header-spacer {
    height: calc(var(--kt-topbar-h) + var(--kt-header-h));
}

.kt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--kt-header-h);
    gap: 24px;
}

/* LOGO */
.kt-logo a, .kt-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--kt-primary);
    white-space: nowrap;
}

.kt-logo-name { letter-spacing: -.3px; }

/* NAV */
.kt-nav { flex: 1; display: flex; justify-content: center; }

.kt-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kt-menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--kt-text-mid);
    border-radius: var(--kt-radius-sm);
    transition: all var(--kt-transition);
}

.kt-menu li a:hover,
.kt-menu li.current-menu-item > a,
.kt-menu li.current_page_item > a {
    color: var(--kt-accent);
    background: var(--kt-accent-light);
}

/* HEADER ACTIONS */
.kt-header-actions { display: flex; align-items: center; gap: 12px; }

/* HAMBURGEr */
.kt-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.kt-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--kt-primary);
    border-radius: 2px;
    transition: all var(--kt-transition);
}
.kt-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.kt-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.kt-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTONLAR ===== */
.kt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--kt-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--kt-transition);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.kt-btn-primary {
    background: var(--kt-accent);
    color: var(--kt-white);
    border-color: var(--kt-accent);
    box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.kt-btn-primary:hover {
    background: var(--kt-accent-dark);
    border-color: var(--kt-accent-dark);
    color: var(--kt-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,166,35,.5);
}

.kt-btn-outline {
    background: transparent;
    color: var(--kt-accent);
    border-color: var(--kt-accent);
}
.kt-btn-outline:hover {
    background: var(--kt-accent);
    color: var(--kt-white);
}

.kt-btn-white {
    background: var(--kt-white);
    color: var(--kt-accent);
    border-color: var(--kt-white);
}
.kt-btn-white:hover {
    background: var(--kt-accent-light);
    color: var(--kt-accent-dark);
}

.kt-btn-outline-white {
    background: transparent;
    color: var(--kt-white);
    border-color: rgba(255,255,255,.6);
}
.kt-btn-outline-white:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--kt-white);
}

.kt-btn-sm   { padding: 8px 18px; font-size: 13px; }
.kt-btn-full { width: 100%; }

.kt-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--kt-accent);
    transition: gap var(--kt-transition);
}
.kt-link-arrow:hover { gap: 8px; color: var(--kt-accent); }

/* ===== HERO ===== */
.kt-hero {
    position: relative;
    min-height: 92vh;
    background: var(--kt-primary);
    background-image:
        linear-gradient(135deg, rgba(10,15,30,.92) 0%, rgba(15,23,42,.82) 60%, rgba(20,30,50,.75) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><rect width="80" height="80" fill="none"/><circle cx="40" cy="40" r="1" fill="rgba(245,166,35,.04)"/><line x1="0" y1="0" x2="80" y2="80" stroke="rgba(255,255,255,.02)" stroke-width="1"/></svg>');
    background-size: cover, 80px 80px;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kt-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--kt-white), transparent);
    pointer-events: none;
}

.kt-hero .kt-container { position: relative; z-index: 1; }

.kt-hero-inner {
    padding: 80px 0;
    max-width: 680px;
}

.kt-hero-badge {
    display: inline-block;
    background: rgba(245,166,35,.18);
    color: #f5a623;
    border: 1px solid rgba(245,166,35,.35);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

.kt-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    color: var(--kt-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.kt-hero-sub {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.kt-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.kt-hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--kt-white);
    line-height: 1;
}

.kt-hero-stat span {
    display: block;
    font-size: 13px;
    color: var(--kt-text-light);
    margin-top: 3px;
}

.kt-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
}

/* ===== REZERVASYONs BÖLÜMÜ ===== */
.kt-booking-section {
    padding: 72px 0 80px;
    background: var(--kt-bg);
}

.kt-plugin-notice {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--kt-radius);
    padding: 20px 24px;
    color: #92400e;
    text-align: center;
    font-size: 15px;
}

/* ===== FEATURES ===== */
.kt-features-section {
    padding: 80px 0;
    background: var(--kt-white);
}

.kt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kt-feature-card {
    background: var(--kt-bg);
    border-radius: var(--kt-radius);
    padding: 32px 28px;
    border: 1px solid var(--kt-border);
    transition: all var(--kt-transition);
}

.kt-feature-card:hover {
    border-color: var(--kt-accent);
    box-shadow: var(--kt-shadow);
    transform: translateY(-3px);
}

.kt-feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.kt-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 10px;
}

.kt-feature-card p {
    font-size: 14px;
    color: var(--kt-text-mid);
    line-height: 1.6;
}

/* ===== SERVİS ÖNİZLEME ===== */
.kt-services-preview {
    padding: 80px 0;
    background: var(--kt-bg);
}

.kt-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kt-service-card {
    background: var(--kt-white);
    border-radius: var(--kt-radius);
    overflow: hidden;
    border: 1px solid var(--kt-border);
    box-shadow: var(--kt-shadow);
    transition: all var(--kt-transition);
}

.kt-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kt-shadow-lg);
}

.kt-service-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.kt-service-img-airport  { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); }
.kt-service-img-vip       { background: linear-gradient(135deg, #1a0a2e 0%, #4a1942 100%); }
.kt-service-img-corporate { background: linear-gradient(135deg, #0f2a1a 0%, #1a4a2e 100%); }
.kt-service-img-wedding   { background: linear-gradient(135deg, #2a0a1a 0%, #5c1a3a 100%); }
.kt-service-img-hourly    { background: linear-gradient(135deg, #1a1a0a 0%, #3a3a1a 100%); }

.kt-service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kt-service-emoji { font-size: 52px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.3)); }

.kt-service-body { padding: 24px; }

.kt-service-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 10px;
}

.kt-service-body p {
    font-size: 14px;
    color: var(--kt-text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ===== TESTİMONYALLAR ===== */
.kt-testimonials-section {
    padding: 80px 0;
    background: var(--kt-white);
}

.kt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kt-testimonial-card {
    background: var(--kt-bg);
    border-radius: var(--kt-radius);
    padding: 28px;
    border: 1px solid var(--kt-border);
    position: relative;
}

.kt-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 64px;
    font-family: Georgia, serif;
    color: var(--kt-border);
    line-height: 1;
}

.kt-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.kt-testimonial-card p {
    font-size: 14px;
    color: var(--kt-text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.kt-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kt-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--kt-accent);
    color: var(--kt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.kt-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--kt-primary);
}

.kt-testimonial-author span {
    font-size: 12px;
    color: var(--kt-text-light);
}

/* ===== CTA BANT ===== */
.kt-cta-section {
    background: linear-gradient(135deg, var(--kt-primary) 0%, #1e3a5f 100%);
    padding: 64px 0;
}

.kt-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.kt-cta-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--kt-white);
    margin-bottom: 8px;
}

.kt-cta-text p {
    color: #94a3b8;
    font-size: 15px;
}

.kt-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ===== SAYFA HERO (İç Sayfalar) ===== */
.kt-page-hero {
    background: linear-gradient(135deg, var(--kt-primary) 0%, #1e3a5f 100%);
    padding: 64px 0 56px;
    text-align: center;
}

.kt-page-hero-sm { padding: 48px 0 40px; }

.kt-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--kt-white);
    margin-bottom: 12px;
}

.kt-page-sub {
    font-size: 17px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.kt-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.kt-breadcrumb a { color: #94a3b8; }
.kt-breadcrumb a:hover { color: var(--kt-accent); }
.kt-breadcrumb span { color: #94a3b8; }

/* ===== HİZMETLER DETAY ===== */
.kt-services-full-section { padding: 80px 0; }

.kt-service-detail-card {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--kt-border);
}

.kt-service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.kt-service-detail-reverse { direction: rtl; }
.kt-service-detail-reverse > * { direction: ltr; }

.kt-service-detail-img {
    height: 360px;
    border-radius: var(--kt-radius-lg);
    overflow: hidden;
}

.kt-service-detail-badge {
    display: inline-block;
    background: var(--kt-accent-light);
    color: var(--kt-accent);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}

.kt-service-detail-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 14px;
}

.kt-service-detail-content p {
    color: var(--kt-text-mid);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.kt-service-features-list {
    margin-bottom: 28px;
}

.kt-service-features-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--kt-text);
    border-bottom: 1px solid var(--kt-border);
}
.kt-service-features-list li:last-child { border-bottom: none; }

/* ===== HAKKIMIZDA ===== */
.kt-about-section { padding: 80px 0; }

.kt-about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

.kt-about-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.kt-about-content p {
    font-size: 15px;
    color: var(--kt-text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

.kt-about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }

.kt-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--kt-bg);
    border-radius: var(--kt-radius);
    border: 1px solid var(--kt-border);
}

.kt-value-icon { font-size: 24px; flex-shrink: 0; }
.kt-value-item strong { display: block; font-size: 15px; color: var(--kt-primary); margin-bottom: 4px; }
.kt-value-item p { font-size: 13px; color: var(--kt-text-mid); margin: 0; }

.kt-about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.kt-about-stat {
    background: var(--kt-primary);
    color: var(--kt-white);
    border-radius: var(--kt-radius);
    padding: 28px 20px;
    text-align: center;
}

.kt-about-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--kt-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.kt-about-stat-label {
    font-size: 13px;
    color: #94a3b8;
}

.kt-about-certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kt-cert-badge {
    background: var(--kt-bg);
    border: 1px solid var(--kt-border);
    border-radius: var(--kt-radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--kt-text-mid);
    text-align: center;
}

.kt-team-section { padding: 72px 0; background: var(--kt-bg); }

.kt-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kt-trust-card {
    background: var(--kt-white);
    border-radius: var(--kt-radius);
    padding: 28px 22px;
    border: 1px solid var(--kt-border);
    text-align: center;
    transition: all var(--kt-transition);
}

.kt-trust-card:hover {
    border-color: var(--kt-accent);
    box-shadow: var(--kt-shadow);
}

.kt-trust-icon { font-size: 36px; margin-bottom: 14px; }

.kt-trust-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 8px;
}

.kt-trust-card p { font-size: 13px; color: var(--kt-text-mid); line-height: 1.6; }

/* ===== İLETİŞİM ===== */
.kt-contact-section { padding: 80px 0; }

.kt-contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 56px;
    align-items: start;
}

.kt-contact-info h2,
.kt-contact-form-wrapper h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 10px;
}

.kt-contact-info p,
.kt-contact-form-wrapper > p {
    font-size: 15px;
    color: var(--kt-text-mid);
    margin-bottom: 24px;
}

.kt-contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.kt-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--kt-bg);
    border-radius: var(--kt-radius);
    border: 1px solid var(--kt-border);
    transition: all var(--kt-transition);
    text-decoration: none;
}

.kt-contact-card:hover {
    border-color: var(--kt-accent);
    background: var(--kt-accent-light);
    transform: translateX(4px);
}

.kt-contact-card-icon { font-size: 24px; flex-shrink: 0; }

.kt-contact-card strong { display: block; font-size: 13px; color: var(--kt-text-light); font-weight: 500; margin-bottom: 2px; }
.kt-contact-card span  { display: block; font-size: 15px; font-weight: 600; color: var(--kt-primary); }
.kt-contact-card small { display: block; font-size: 12px; color: var(--kt-text-light); margin-top: 2px; }

.kt-contact-hours h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--kt-border);
}

.kt-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 14px;
    color: var(--kt-text-mid);
    border-bottom: 1px solid var(--kt-border);
}
.kt-hours-row:last-child { border-bottom: none; }
.kt-hours-special span:last-child { color: var(--kt-success); font-weight: 600; }

/* FORM */
.kt-form-row { margin-bottom: 18px; }
.kt-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kt-form-group { display: flex; flex-direction: column; gap: 6px; }

.kt-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--kt-text);
}

.kt-req { color: var(--kt-accent); }

.kt-input {
    padding: 12px 16px;
    border: 1.5px solid var(--kt-border);
    border-radius: var(--kt-radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--kt-text);
    background: var(--kt-white);
    transition: border-color var(--kt-transition), box-shadow var(--kt-transition);
    outline: none;
    width: 100%;
}

.kt-input:focus {
    border-color: var(--kt-accent);
    box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}

.kt-textarea { resize: vertical; min-height: 120px; }

/* ALERTS */
.kt-alert {
    padding: 14px 18px;
    border-radius: var(--kt-radius-sm);
    font-size: 14px;
    margin-bottom: 18px;
}
.kt-alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #15803d; }
.kt-alert-error   { background: #fff1f2; border: 1px solid #fca5a5; color: #dc2626; }

/* ===== FOOTER ===== */
.kt-footer { background: var(--kt-primary); }

.kt-footer-top { padding: 64px 0 48px; }

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

.kt-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--kt-white);
    margin-bottom: 16px;
}

.kt-footer-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.kt-social-links { display: flex; gap: 10px; }

.kt-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--kt-transition);
}
.kt-social-link:hover { background: var(--kt-accent); color: var(--kt-white); }

.kt-footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--kt-white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    letter-spacing: .3px;
}

.kt-footer-links li { margin-bottom: 10px; }
.kt-footer-links a {
    font-size: 14px;
    color: #64748b;
    transition: color var(--kt-transition);
}
.kt-footer-links a:hover { color: var(--kt-accent); padding-left: 4px; }

.kt-footer-contact { display: flex; flex-direction: column; gap: 12px; }
.kt-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
}
.kt-footer-contact li svg { flex-shrink: 0; color: var(--kt-accent); margin-top: 2px; }
.kt-footer-contact a { color: #64748b; }
.kt-footer-contact a:hover { color: var(--kt-accent); }

.kt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
}

.kt-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
}

.kt-footer-badges { display: flex; gap: 12px; }

.kt-secure-badge {
    background: rgba(255,255,255,.05);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #64748b;
    border: 1px solid rgba(255,255,255,.08);
}

/* ===== WHATSAPP BUTONU ===== */
.kt-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--kt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: all var(--kt-transition);
}
.kt-whatsapp-btn:hover {
    transform: scale(1.1);
    color: var(--kt-white);
    box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* ===== GENEL SAYFA İÇERİĞİ ===== */
.kt-page-content-section { padding: 64px 0; }

.kt-entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--kt-text-mid);
}

.kt-entry-content h2, .kt-entry-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--kt-primary);
    margin: 28px 0 12px;
}

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

.kt-post-card {
    background: var(--kt-white);
    border-radius: var(--kt-radius);
    overflow: hidden;
    border: 1px solid var(--kt-border);
    transition: all var(--kt-transition);
}

.kt-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--kt-shadow-lg);
}

.kt-post-thumb img { width: 100%; height: 200px; object-fit: cover; }
.kt-post-body { padding: 22px; }
.kt-post-meta { font-size: 12px; color: var(--kt-text-light); margin-bottom: 8px; }
.kt-post-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.kt-post-title a { color: var(--kt-primary); }
.kt-post-title a:hover { color: var(--kt-accent); }
.kt-post-excerpt { font-size: 14px; color: var(--kt-text-mid); margin-bottom: 14px; line-height: 1.6; }

/* ===== 404 / BULUNAMADI ===== */
.kt-not-found { text-align: center; padding: 80px 20px; }
.kt-not-found-icon { font-size: 64px; margin-bottom: 20px; }
.kt-not-found h2 { font-size: 28px; font-weight: 700; color: var(--kt-primary); margin-bottom: 12px; }
.kt-not-found p  { color: var(--kt-text-mid); margin-bottom: 28px; }

/* ===== ANİMASYON ===== */
.kt-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.kt-fade-up.kt-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes kt-spin {
    to { transform: rotate(360deg); }
}
.kt-spin { animation: kt-spin .8s linear infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .kt-features-grid      { grid-template-columns: repeat(2, 1fr); }
    .kt-services-grid      { grid-template-columns: repeat(2, 1fr); }
    .kt-testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
    .kt-trust-grid         { grid-template-columns: repeat(2, 1fr); }
    .kt-footer-grid        { grid-template-columns: repeat(2, 1fr); }
    .kt-service-detail-card { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .kt-about-grid   { grid-template-columns: 1fr; }
    .kt-contact-grid { grid-template-columns: 1fr; }
    .kt-cta-inner    { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    :root { --kt-topbar-h: 0px; }

    .kt-topbar { display: none; }
    .kt-header-spacer { height: var(--kt-header-h); }

    .kt-hamburger { display: flex; }

    .kt-nav {
        display: none;
        position: absolute;
        top: var(--kt-header-h);
        left: 0;
        right: 0;
        background: var(--kt-white);
        border-top: 1px solid var(--kt-border);
        box-shadow: 0 8px 24px rgba(15,23,42,.1);
        padding: 12px 0;
    }
    .kt-nav.is-open { display: block; }

    .kt-menu { flex-direction: column; gap: 0; }
    .kt-menu li a { padding: 12px 24px; border-radius: 0; border-bottom: 1px solid var(--kt-border); }
    .kt-menu li:last-child a { border-bottom: none; }

    .kt-hero-inner { padding: 56px 0; }
    .kt-hero-stats { flex-wrap: wrap; gap: 16px; }

    .kt-features-grid     { grid-template-columns: 1fr; }
    .kt-services-grid     { grid-template-columns: 1fr; }
    .kt-testimonials-grid { grid-template-columns: 1fr; }
    .kt-trust-grid        { grid-template-columns: 1fr 1fr; }
    .kt-footer-grid       { grid-template-columns: 1fr 1fr; }

    .kt-service-detail-card,
    .kt-service-detail-reverse { direction: ltr; grid-template-columns: 1fr; }
    .kt-service-detail-img { height: 240px; }

    .kt-cta-actions { flex-direction: column; width: 100%; }
    .kt-cta-actions .kt-btn { width: 100%; justify-content: center; }

    .kt-row-2 { grid-template-columns: 1fr; }
    .kt-footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .kt-trust-grid  { grid-template-columns: 1fr; }
    .kt-footer-grid { grid-template-columns: 1fr; }
    .kt-about-stats-grid { grid-template-columns: 1fr 1fr; }
    .kt-posts-grid  { grid-template-columns: 1fr; }
    .kt-container   { padding: 0 16px; }
}

/* =============================================
   YENİ BÖLÜMLER — GENIŞLETILMIŞ TASARIM
   ============================================= */

/* ===== İSTATİSTİK BANDI ===== */
.kt-stats-bar {
    background: var(--kt-accent);
    padding: 20px 0;
}

.kt-stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.kt-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 36px;
    border-right: 1px solid rgba(255,255,255,.25);
}
.kt-stat-item:last-child { border-right: none; }

.kt-stat-item-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.kt-stat-item-text strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--kt-white);
    line-height: 1;
}

.kt-stat-item-text span {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.8);
    margin-top: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ===== NASIL ÇALIŞIR ===== */
.kt-steps-section {
    padding: 88px 0;
    background: var(--kt-white);
    position: relative;
}

.kt-steps-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kt-accent), var(--kt-accent-dark));
}

.kt-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.kt-steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--kt-accent) 0%, var(--kt-border) 100%);
    z-index: 0;
}

.kt-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.kt-step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--kt-accent);
    color: var(--kt-white);
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(245,166,35,.35);
    border: 4px solid var(--kt-white);
    outline: 2px solid var(--kt-accent);
}

.kt-step-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.kt-step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 8px;
}

.kt-step-card p {
    font-size: 14px;
    color: var(--kt-text-mid);
    line-height: 1.6;
}

/* ===== ARAÇ FİLOSU ===== */
.kt-fleet-section {
    padding: 88px 0;
    background: var(--kt-bg);
}

.kt-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.kt-fleet-card {
    background: var(--kt-white);
    border-radius: var(--kt-radius-lg);
    overflow: hidden;
    border: 1px solid var(--kt-border);
    transition: all var(--kt-transition);
    box-shadow: var(--kt-shadow);
}

.kt-fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kt-shadow-lg);
    border-color: var(--kt-accent);
}

.kt-fleet-img {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kt-fleet-img-sedan { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f2a40 100%); }
.kt-fleet-img-vito  { background: linear-gradient(135deg, #1a0f2e 0%, #2d1b5a 50%, #1a0f3a 100%); }
.kt-fleet-img-sprinter { background: linear-gradient(135deg, #0f2a0f 0%, #1a4a1a 50%, #0f3020 100%); }

.kt-fleet-emoji { font-size: 72px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4)); }

.kt-fleet-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--kt-accent);
    color: var(--kt-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.kt-fleet-body { padding: 24px; }

.kt-fleet-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--kt-primary);
    margin-bottom: 6px;
}

.kt-fleet-sub {
    font-size: 13px;
    color: var(--kt-accent);
    font-weight: 600;
    margin-bottom: 14px;
}

.kt-fleet-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--kt-border);
}

.kt-fleet-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--kt-text-mid);
}

.kt-fleet-spec-icon { font-size: 14px; }

.kt-fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.kt-fleet-feature-tag {
    background: var(--kt-accent-light);
    color: var(--kt-accent-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}

/* ===== SSS (FAQ) ===== */
.kt-faq-section {
    padding: 88px 0;
    background: var(--kt-white);
}

.kt-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.kt-faq-item {
    border: 1px solid var(--kt-border);
    border-radius: var(--kt-radius);
    overflow: hidden;
    transition: border-color var(--kt-transition);
}

.kt-faq-item.is-open {
    border-color: var(--kt-accent);
}

.kt-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    background: var(--kt-white);
    gap: 12px;
    user-select: none;
}

.kt-faq-question:hover { background: var(--kt-bg); }

.kt-faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--kt-primary);
    line-height: 1.4;
    flex: 1;
}

.kt-faq-chevron {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--kt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--kt-accent);
    flex-shrink: 0;
    transition: transform var(--kt-transition), background var(--kt-transition);
}

.kt-faq-item.is-open .kt-faq-chevron {
    transform: rotate(180deg);
    background: var(--kt-accent);
    color: var(--kt-white);
}

.kt-faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--kt-text-mid);
    line-height: 1.7;
    background: var(--kt-bg);
    border-top: 1px solid var(--kt-border);
    padding-top: 16px;
}

.kt-faq-item.is-open .kt-faq-answer { display: block; }
/* Note: jQuery slideDown/Up handles visibility */

/* ===== NEDEN BİZ (Richer) ===== */
.kt-why-section {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--kt-primary) 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.kt-why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(245,166,35,.05);
    pointer-events: none;
}

.kt-why-section .kt-section-title { color: var(--kt-white); }
.kt-why-section .kt-section-sub   { color: #94a3b8; }
.kt-why-section .kt-section-tag {
    background: rgba(245,166,35,.15);
    color: var(--kt-accent);
    border: 1px solid rgba(245,166,35,.3);
}

.kt-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.kt-why-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--kt-radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--kt-transition);
    backdrop-filter: blur(10px);
}

.kt-why-card:hover {
    background: rgba(245,166,35,.12);
    border-color: rgba(245,166,35,.4);
    transform: translateY(-4px);
}

.kt-why-icon {
    font-size: 42px;
    margin-bottom: 18px;
    display: block;
}

.kt-why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--kt-white);
    margin-bottom: 10px;
}

.kt-why-card p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.65;
}

/* ===== HERO BADGES / TRUST ===== */
.kt-trust-strip {
    background: var(--kt-bg2);
    border-top: 1px solid var(--kt-border);
    border-bottom: 1px solid var(--kt-border);
    padding: 16px 0;
}

.kt-trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.kt-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kt-text-mid);
}

.kt-trust-badge-item .badge-icon {
    font-size: 18px;
}

/* ===== RESPONSIVE YENİ BÖLÜMLER ===== */
@media (max-width: 1100px) {
    .kt-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .kt-steps-grid::before { display: none; }
    .kt-why-grid { grid-template-columns: repeat(2, 1fr); }
    .kt-fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .kt-stats-bar-inner { gap: 0; }
    .kt-stat-item { padding: 8px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); width: 50%; justify-content: center; }
    .kt-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
    .kt-stat-item:last-child, .kt-stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

    .kt-steps-grid { grid-template-columns: 1fr 1fr; }
    .kt-faq-grid { grid-template-columns: 1fr; }
    .kt-why-grid { grid-template-columns: 1fr 1fr; }
    .kt-fleet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .kt-steps-grid { grid-template-columns: 1fr; }
    .kt-why-grid { grid-template-columns: 1fr; }
    .kt-stat-item { width: 100%; border-right: none !important; }
}

/* ===== SERVICE CARD PHOTO POLISH ===== */
.kt-service-detail-img[style*="background-image"] {
    position: relative;
}
.kt-service-detail-img[style*="background-image"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,30,.18) 0%, rgba(10,15,30,.06) 100%);
    border-radius: inherit;
    pointer-events: none;
}
