/* ============================================
   Araç Değerleme Sistemi - Premium 3D CSS
   Modern SaaS / Agency-Grade Design System
   ============================================ */

/* === Design Tokens === */
:root {
    /* Shorthand aliases (for new system) */
    --container: 1240px;
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --brand: #DC2626;
    --brand2: #B91C1C;
    --card: rgba(255,255,255,.78);
    --line: rgba(15,23,42,.08);
    --r-lg: 22px;
    --r-md: 16px;
    --shadow: 0 20px 60px rgba(15,23,42,.08), 0 8px 24px rgba(15,23,42,.06);
    --shadow2: 0 28px 70px rgba(15,23,42,.10), 0 10px 28px rgba(15,23,42,.08);

    /* Brand */
    --primary: #DC2626;
    --primary-dark: #B91C1C;
    --primary-darker: #991B1B;
    --primary-light: #FEE2E2;
    --primary-lighter: #FEF2F2;
    --primary-gradient: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --primary-gradient-hover: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --primary-glow: 0 0 20px rgba(220,38,38,0.15);

    /* Neutrals */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --dark-muted: #334155;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    /* Semantic */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --info: #3B82F6;
    --info-light: #DBEAFE;
    --danger: #EF4444;
    --danger-light: #FEE2E2;

    /* Multi-layer shadows (premium depth) */
    --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-sm: 0 2px 4px rgba(15,23,42,0.04), 0 1px 2px rgba(15,23,42,0.03);
    --shadow: 0 4px 12px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
    --shadow-md: 0 8px 24px rgba(15,23,42,0.06), 0 4px 8px rgba(15,23,42,0.04);
    --shadow-lg: 0 20px 60px rgba(15,23,42,0.08), 0 8px 24px rgba(15,23,42,0.06);
    --shadow-xl: 0 32px 72px rgba(15,23,42,0.12), 0 12px 28px rgba(15,23,42,0.06);
    --shadow-primary: 0 8px 24px -4px rgba(220,38,38,0.25), 0 4px 8px -2px rgba(220,38,38,0.1);
    --shadow-primary-lg: 0 16px 40px -4px rgba(220,38,38,0.3), 0 8px 16px -4px rgba(220,38,38,0.15);

    /* Card shadow (reusable) */
    --card-shadow: 0 1px 3px rgba(15,23,42,0.04), 0 4px 14px rgba(15,23,42,0.04);
    --card-shadow-hover: 0 20px 60px rgba(15,23,42,0.08), 0 8px 24px rgba(15,23,42,0.06);

    /* Radii */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container-max: 1240px;
    --navbar-height: 72px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    background:
        radial-gradient(900px 500px at 10% 10%, rgba(225,29,46,.06), transparent 60%),
        radial-gradient(900px 500px at 90% 20%, rgba(59,130,246,.06), transparent 55%),
        radial-gradient(700px 450px at 70% 90%, rgba(15,23,42,.04), transparent 60%),
        #fff;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

::selection {
    background: var(--primary);
    color: var(--white);
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Topbar kaldırıldı === */
.top-bar { display: none; }

/* Navbar telefon */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 13px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}
.nav-phone:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}
.nav-phone i { font-size: 12px; }

/* === Çerez Bildirimi - oto2next tarzı (centered pill) === */
.cookie-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 90vw;
    max-width: 720px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.08);
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px 24px;
}
.cookie-bar.show { transform: translateX(-50%) translateY(0); }
.cookie-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cookie-bar-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}
.cookie-bar-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}
.cookie-bar-shield {
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}
.cookie-bar-btn {
    padding: 10px 24px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    font-family: inherit;
}
.cookie-bar-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

@media (max-width: 768px) {
    .cookie-bar { width: 94vw; padding: 14px 18px; bottom: 12px; }
    .cookie-bar-inner { flex-direction: row; gap: 12px; }
    .cookie-bar-text { font-size: 13px; }
    .cookie-bar-shield { display: none; }
    .cookie-bar-btn { padding: 9px 18px; }
}

/* === Değerleme Step Wizard (oto2next tarzı) === */
.step-wizard { padding: 0; }
.step-wizard .container { max-width: 1280px; }

.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: var(--navbar-height);
    z-index: 50;
}
.step-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}
.step-dot.active { color: var(--primary); font-weight: 600; }
.step-dot.done { color: var(--success); }
.step-dot-num {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    background: var(--gray-100);
    color: var(--gray-400);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}
.step-dot.active .step-dot-num {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.step-dot.done .step-dot-num {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}
.step-arrow {
    color: var(--gray-300);
    font-size: 12px;
}

.step-body {
    display: flex;
    gap: 32px;
    padding: 40px 0;
    min-height: 500px;
}
.step-main {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 36px;
    min-width: 0;
}
.step-sidebar {
    width: 340px;
    flex-shrink: 0;
}
.step-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    position: sticky;
    top: calc(var(--navbar-height) + 90px);
}
.step-sidebar-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.step-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.step-sidebar-info { padding: 20px; }
.step-sidebar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}
.step-sidebar-row:last-child { border-bottom: none; }
.step-sidebar-row .label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
}
.step-sidebar-row .label i { font-size: 13px; width: 16px; text-align: center; }
.step-sidebar-row .value { font-weight: 600; color: var(--primary); }

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}
.step-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}
.step-title .back-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    font-size: 14px;
}
.step-title .back-btn:hover { background: var(--gray-200); }
.step-subtitle {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Year/Brand/Model/Fuel/Color grid */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}
.option-card {
    padding: 14px 8px;
    text-align: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition-fast);
    background: var(--white);
}
.option-card:hover {
    border-color: var(--primary);
    background: var(--primary-lighter);
    color: var(--primary);
}
.option-card.selected {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}
.option-card.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    font-size: 13px;
}
.option-card.brand-card .brand-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.option-card.brand-card .brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.option-card.brand-card .brand-icon-fallback {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    border-radius: calc(var(--radius) - 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-500);
}

/* Color options */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}
.color-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}
.color-option:hover { border-color: var(--primary); }
.color-option.selected { border-color: var(--primary); background: var(--primary-lighter); }
.color-dot {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-300);
    flex-shrink: 0;
}

/* Search filter */
.step-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 20px;
    background: var(--white);
}
.step-search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    background: transparent;
    color: var(--dark);
}
.step-search i { color: var(--gray-400); font-size: 14px; }

/* Section labels */
.option-section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 20px 0 12px;
}
.option-section-label:first-child { margin-top: 0; }

/* Expertise table */
.expertise-section {
    display: flex;
    gap: 32px;
}
.expertise-car {
    width: 280px;
    flex-shrink: 0;
}
.expertise-car svg {
    width: 100%;
    height: auto;
}
.expertise-table-wrap { flex: 1; }
.expertise-table {
    width: 100%;
    border-collapse: collapse;
}
.expertise-table th {
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--gray-200);
}
.expertise-table th.col-orijinal { color: var(--success); }
.expertise-table th.col-lokal { color: #F97316; }
.expertise-table th.col-boyali { color: var(--info); }
.expertise-table th.col-degisen { color: var(--danger); }
.expertise-table td {
    padding: 12px 8px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
}
.expertise-table td:first-child { font-weight: 500; }
.expertise-table td:not(:first-child) { text-align: center; }
.expertise-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}
.expertise-radio:checked {
    border-color: var(--gray-700);
    background: var(--gray-700);
}
.expertise-radio:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: var(--radius-full);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.expertise-note {
    margin-top: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}
.expertise-note label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}
.expertise-note textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px;
    resize: none;
    font-size: 14px;
    line-height: 1.6;
    min-height: 70px;
    outline: none;
    transition: var(--transition-fast);
    font-family: inherit;
}
.expertise-note textarea:focus { border-color: var(--primary); }

/* Damage fields */
.damage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.damage-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}
.damage-field input,
.damage-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition-fast);
    background: var(--white);
    font-family: inherit;
}
.damage-field input:focus,
.damage-field select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}
.tramer-inline {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tramer-inline label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
}
.tramer-inline input[type="radio"] {
    width: auto;
    accent-color: var(--primary);
}

/* Step nav button */
.step-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 24px;
    font-family: inherit;
}
.step-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}
.step-nav-btn.secondary {
    background: var(--gray-100);
    color: var(--gray-600);
}
.step-nav-btn.secondary:hover {
    background: var(--gray-200);
    transform: translateY(-1px);
}
.step-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

/* Kişisel form alanları (son adım) */
.personal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.personal-grid .form-group { margin-bottom: 0; }
.personal-grid .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.personal-grid .form-group input,
.personal-grid .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
}
.personal-grid .form-group input:focus,
.personal-grid .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}
.phone-input-group {
    display: flex;
    gap: 0;
}
.phone-prefix {
    padding: 12px 14px;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}
.phone-input-group input {
    border-radius: 0 var(--radius) var(--radius) 0 !important;
}

/* === Nasıl Çalışır - Modern Kartlar === */
.how-it-works-section { background: var(--white); }
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.hiw-card {
    background: var(--card);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid var(--line);
}
.hiw-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow2);
    border-color: transparent;
}
.hiw-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.hiw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.hiw-card:hover .hiw-img img { transform: scale(1.08); }
.hiw-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}
.hiw-body {
    padding: 26px;
}
.hiw-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.hiw-body p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Müşteri Yorumları - oto2next tarzı === */
.reviews-header {
    margin-bottom: 48px;
}
.reviews-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 10px;
}
.reviews-header h2 .highlight {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reviews-header h2 br { display: block; }
.reviews-header p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.5;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    padding: 32px 28px 24px;
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 4px 24px rgba(15,23,42,.07), 0 1px 4px rgba(15,23,42,.04);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 64px;
    color: #f1f5f9;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.review-card:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,.12), 0 4px 12px rgba(15,23,42,.07);
    transform: translateY(-4px);
    border-color: rgba(225,29,46,.12);
}
.review-stars {
    display: flex;
    gap: 3px;
    color: #F59E0B;
    font-size: 13px;
}
.review-card > p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(15,23,42,0.1);
}
.review-top h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

/* Letter initial circle avatars */
.review-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.review-initial--green   { background: linear-gradient(135deg, #22c55e, #16a34a); }
.review-initial--navy    { background: linear-gradient(135deg, #334155, #1e293b); }
.review-initial--teal    { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.review-initial--purple  { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.review-initial--orange  { background: linear-gradient(135deg, #f97316, #ea580c); }
.review-initial--blue    { background: linear-gradient(135deg, #3b82f6, #2563eb); }

/* === Bizimle Bağlantıda Kalın v2 === */
.connect-v2-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.connect-v2-header {
    margin-bottom: 48px;
    text-align: center;
}
.connect-v2-header h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.035em;
    margin-bottom: 10px;
    line-height: 1.1;
}
.connect-v2-header h2 .highlight {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.connect-v2-header p {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.connect-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.connect-v2-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.connect-v2-card {
    background: #ffffff;
    border-radius: var(--r-lg);
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 4px 24px rgba(15,23,42,.06);
    transition: var(--transition);
    overflow: hidden;
}
.connect-v2-card:hover {
    box-shadow: 0 12px 40px rgba(15,23,42,.1);
    transform: translateY(-4px);
    border-color: rgba(15,23,42,.1);
}
.connect-v2-card-inner {
    padding: 36px 28px 32px;
}
.connect-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FEE2E2;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.connect-card-icon--green {
    background: #D1FAE5;
    color: #059669;
}
.connect-card-icon--blue {
    background: #DBEAFE;
    color: #2563EB;
}
.connect-v2-card-inner h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.connect-v2-card-inner > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.65;
}
.connect-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.connect-link-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225,29,46,.25);
    color: var(--white);
}
.connect-link-btn--green:hover {
    background: #25D366;
    box-shadow: 0 6px 20px rgba(37,211,102,.25);
}

/* Subscribe v2 (within connect card) */.subscribe-v2-input {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
}
.subscribe-v2-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--dark);
}
.subscribe-v2-input input::placeholder { color: var(--gray-400); }
.subscribe-v2-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.subscribe-v2-input button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    font-family: inherit;
}
.subscribe-v2-input button:hover { background: var(--primary); }
.subscribe-v2-note {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
}
.subscribe-v2-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* Üç Adımda Sat bölümü */
/* === Dark Steps Section (Lovable style) === */
.three-steps-section {
    background: #111111;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.three-steps-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(600px 400px at 20% 50%, rgba(220,38,38,0.07), transparent 60%),
        radial-gradient(500px 350px at 80% 50%, rgba(220,38,38,0.05), transparent 60%);
    pointer-events: none;
}

/* Dark steps header */
.three-steps-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}
.three-steps-header h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 12px;
}
.three-steps-header h2 .highlight {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.three-steps-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
}

/* Horizontal steps layout */
.three-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.three-step-card {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
}
.three-step-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* Connector line between steps */
.three-step-connector {
    flex-shrink: 0;
    width: 60px;
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
}
.three-step-connector::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(220,38,38,0.5), rgba(220,38,38,0.2));
    border-radius: 2px;
}

/* Step icon circle */
.three-step-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(220,38,38,0.40);
    transition: var(--transition);
}
.three-step-card:hover .three-step-icon-circle {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 40px rgba(220,38,38,0.50);
}

/* Old num style – repurposed as step number label */
.three-step-num {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.three-step-content {
    padding: 0;
}
.three-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.three-step-card p {
    color: rgba(255,255,255,0.50);
    font-size: 13.5px;
    line-height: 1.65;
}
/* Hide old image div in dark layout */
.three-step-img { display: none; }

/* (duplicate three-step-card block removed – see definition above) */

/* Step panel gizle/göster */
.step-panel { display: none; }
.step-panel.active { display: block; }

@media (max-width: 768px) {
    .step-body { flex-direction: column; }
    .step-sidebar { width: 100%; }
    .step-sidebar-card { position: static; }
    .option-grid { grid-template-columns: repeat(3, 1fr); }
    .color-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-section { flex-direction: column; }
    .expertise-car { width: 100%; max-width: 300px; margin: 0 auto; }
    .damage-grid { grid-template-columns: 1fr; }
    .personal-grid { grid-template-columns: 1fr; }
    .connect-grid { grid-template-columns: 1fr; }
    .connect-v2-grid, .connect-v2-grid--3 { grid-template-columns: 1fr; }
    .connect-card-icon { width: 44px; height: 44px; font-size: 18px; }
    .three-steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .hiw-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .connect-v2-form-actions { flex-direction: column; }
    .step-progress { gap: 4px; flex-wrap: wrap; padding: 16px 10px; }
    .step-dot span { display: none; }
    .nav-phone { display: none; }
}

/* === Navbar === */
.navbar {
    /* Solid white by default so body gradient doesn't bleed through */
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.35s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid var(--line);
}

.navbar.scrolled,
.navbar.is-scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(15,23,42,0.06), 0 1px 4px rgba(15,23,42,0.04);
    border-bottom-color: var(--gray-200);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 3px;
}

.brand-logo-icon {
    position: relative;
    width: 38px;
    height: 38px;
}

.brand-logo-icon svg {
    width: 100%;
    height: 100%;
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-logo-text .brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.brand-logo-text .brand-name .brand-highlight {
    color: var(--primary);
}

.brand-logo-text .brand-tagline {
    font-size: 9.5px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Brand Text */
.brand-text {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.brand-text span {
    color: var(--dark);
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1px;
}

.nav-link {
    padding: 8px 13px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius);
    position: relative;
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-lighter);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    opacity: 0.7;
}

.nav-cta {
    padding: 9px 22px;
    background: var(--primary-gradient);
    color: var(--white) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 10px;
    box-shadow: 0 4px 14px rgba(220,38,38,0.2);
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-primary-lg);
    background: var(--primary-gradient-hover);
    color: var(--white) !important;
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.navbar-toggle:hover { background: var(--gray-100); }

.navbar-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: block;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Butonlar === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-family: inherit;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.btn i { font-size: 14px; }

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220,38,38,0.18);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
    background: var(--primary-gradient-hover);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover {
    background: var(--gray-800);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15,23,42,0.25);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--dark);
}

.section-dark .btn-outline,
.cta-section .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}
.section-dark .btn-outline:hover,
.cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    background: #22c55e;
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-block { width: 100%; }

/* === Hero Section === */
.hero {
    background: var(--white);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239,68,68,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text { color: var(--dark); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-lighter);
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.hero-badge i { font-size: 12px; color: var(--primary); }

/* Pulsing dot variant */
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
    50% { box-shadow: 0 0 0 5px rgba(220,38,38,0); }
}

.hero-text h1 {
    font-size: clamp(32px, 4.2vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.035em;
    color: var(--dark);
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-text > p {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    padding-top: 28px;
}

.hero-stat { text-align: center; }

.hero-stat .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    display: block;
    letter-spacing: -0.02em;
}

.hero-stat .label {
    font-size: 11.5px;
    color: var(--gray-400);
    margin-top: 2px;
    display: block;
    letter-spacing: 0.01em;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse, rgba(220,38,38,0.06) 0%, rgba(59,130,246,0.03) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(15,23,42,0.12),
        0 10px 24px rgba(15,23,42,0.08),
        0 0 0 1px rgba(255,255,255,0.7);
    width: 100%;
    max-width: 520px;
    transition: box-shadow 0.6s ease;
    animation: heroFloat 5s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.6);
}
.hero-image-wrapper:hover {
    animation-play-state: paused;
    transform: perspective(800px) rotateY(-1deg) rotateX(0.5deg) translateY(-6px) scale(1.02);
    box-shadow:
        0 35px 80px rgba(15,23,42,0.15),
        0 15px 40px rgba(15,23,42,0.10),
        0 0 0 1px rgba(255,255,255,0.8);
}

.hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.10), 0 2px 8px rgba(15,23,42,0.06);
    border: 1px solid rgba(255,255,255,0.7);
    z-index: 3;
}

.hero-image-badge i {
    color: var(--primary);
    font-size: 20px;
}

.hero-image-badge strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
    line-height: 1.3;
}

.hero-image-badge small {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
}

/* Hero mini form (Lovable style) */
.hero-mini-form {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 18px 20px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-form-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.hero-form-badge {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 4px 13px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.hero-form-hint {
    font-size: 13px;
    color: var(--gray-500);
}
.hero-form-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.hero-select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--gray-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.hero-select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.hero-cta {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
}

/* Floating car image (Lovable style – no card wrapper) */
.hero-car-img {
    width: 100%;
    max-width: 580px;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 40px 60px rgba(15,23,42,0.18))
        drop-shadow(0 12px 24px rgba(15,23,42,0.12));
    animation: heroFloat 5s ease-in-out infinite;
    margin: 0 auto;
}

/* === Markalar Bandı === */
.brands-band {
    background: var(--gray-50);
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.brands-scroll {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brands-scroll::-webkit-scrollbar { display: none; }

.brand-item {
    flex-shrink: 0;
    padding: 6px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
    cursor: default;
    letter-spacing: -0.01em;
}

.brand-item:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    background: var(--primary-lighter);
}

/* === Section Genel === */
.section {
    padding: 90px 0;
}

.section-gray {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 60%, #ffffff 100%);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    border: 1px solid var(--primary-light);
}

.section-header .section-badge i { font-size: 11px; }

.section-header h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}
.section-header h2 .highlight {
    background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* === Hizmet Kartları (Ana Sayfa) === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--card);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow2);
    border-color: transparent;
}

.service-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-body {
    padding: 22px;
    text-align: center;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.service-body p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Nasıl Çalışır Adımları (legacy) === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); }

.step-number {
    width: 84px;
    height: 84px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: var(--shadow-primary);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* === İstatistikler === */
.stats-section {
    background: var(--white);
    padding: 72px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-section::before,
.stats-section::after { display: none; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: left;
    padding: 36px 36px 36px 32px;
    border-left: 4px solid var(--primary);
    border-right: 1px solid var(--line);
    background: var(--white);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(15,23,42,0.07);
    z-index: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.stat-item .stat-number {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.04em;
    color: var(--primary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0;
}

/* === Neden Biz === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    background: var(--card);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid var(--line);
}

.why-card:hover {
    box-shadow: var(--shadow2);
    border-color: transparent;
    transform: translateY(-3px) scale(1.01);
}

.why-card .icon {
    width: 52px;
    height: 52px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-card:hover .icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === Müşteri Yorumları === */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transform: translateY(-8px) scale(1.01);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(15,23,42,0.1);
    flex-shrink: 0;
}

.testimonial-author h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-400);
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1200&h=400&fit=crop&q=60') center/cover no-repeat;
    z-index: 0;
    opacity: 0.08;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Blog Kartları === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--card);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid var(--line);
}

.blog-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow2);
    border-color: transparent;
}

.blog-card-image {
    height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.blog-card-image i {
    font-size: 40px;
    color: var(--gray-300);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-card-body h3 a:hover { color: var(--primary); }

.blog-card-body p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card-body .read-more:hover { gap: 10px; color: var(--primary-dark); }
.blog-card-body .read-more i {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.blog-card-body .read-more:hover i { transform: translateX(3px); }

/* === Blog Detay === */
.blog-detail {
    max-width: 780px;
    margin: 0 auto;
}

.blog-detail-header {
    margin-bottom: 28px;
}

.blog-detail-header h1 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.blog-detail-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--gray-500);
}

.blog-detail-content {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--gray-700);
}

.blog-detail-content p { margin-bottom: 18px; }

/* === Sayfa Banner === */
.page-banner {
    background: linear-gradient(160deg, var(--dark) 0%, var(--gray-900) 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220,38,38,0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner h1 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    letter-spacing: -0.03em;
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    position: relative;
}

.page-banner .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-banner .breadcrumb a:hover { color: var(--primary); }

/* === Form Stilleri === */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 13.5px;
    letter-spacing: -0.01em;
}

.form-group label .required { color: var(--primary); }

.form-control {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--dark);
    line-height: 1.5;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

/* === Değerleme Form Wizard === */
.wizard-container {
    max-width: 880px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--gray-200);
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wizard-step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-400);
    transition: var(--transition);
    margin-bottom: 8px;
}

.wizard-step.active .wizard-step-number {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 4px rgba(220,38,38,0.1);
}

.wizard-step.completed .wizard-step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.wizard-step-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 0.01em;
}

.wizard-step.active .wizard-step-label,
.wizard-step.completed .wizard-step-label {
    color: var(--primary);
}

.wizard-panel {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    animation: fadeInUp 0.35s ease;
}

.wizard-panel.active { display: block; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
    0%, 100% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

.wizard-panel h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.wizard-panel .panel-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 22px;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

/* === SVG Araç Parça Seçici === */
.car-selector-container { 
    margin: 24px 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
}

.car-views {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.car-view-btn {
    padding: 7px 18px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
    color: var(--gray-500);
}

.car-view-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.car-svg-wrapper {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1.5px solid var(--gray-200);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.car-svg-wrapper svg {
    max-width: 100%;
    height: auto;
}

.car-svg-wrapper svg path,
.car-svg-wrapper svg rect,
.car-svg-wrapper svg polygon {
    cursor: pointer;
    transition: var(--transition-fast);
    stroke: var(--gray-400);
    stroke-width: 1.5;
}

.car-svg-wrapper svg .part-original { fill: #D1FAE5; stroke: #10B981; }
.car-svg-wrapper svg .part-boyali { fill: #FEF3C7; stroke: #F59E0B; }
.car-svg-wrapper svg .part-degisen { fill: #FEE2E2; stroke: #EF4444; }
.car-svg-wrapper svg .part-hasarli { fill: #FFEDD5; stroke: #F97316; }

.car-svg-wrapper svg path:hover,
.car-svg-wrapper svg rect:hover,
.car-svg-wrapper svg polygon:hover {
    opacity: 0.8;
    stroke-width: 2.5;
}

.part-legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--gray-500);
    font-weight: 500;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 2px solid;
}

.legend-color.original { background: #D1FAE5; border-color: #10B981; }
.legend-color.boyali { background: #FEF3C7; border-color: #F59E0B; }
.legend-color.degisen { background: #FEE2E2; border-color: #EF4444; }
.legend-color.hasarli { background: #FFEDD5; border-color: #F97316; }

/* Parça popup */
.car-selector-container {
    position: relative;
}

.part-popup {
    position: fixed !important;
    background: var(--white) !important;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08);
    padding: 20px;
    z-index: 99999 !important;
    min-width: 220px;
    max-width: 250px;
    display: none;
    border: 2px solid var(--primary-light);
    backdrop-filter: blur(12px);
    transform: none !important;
    margin: 0 !important;
    pointer-events: auto;
}

.part-popup.show {
    display: block !important;
    animation: popupFadeIn 0.2s ease-out;
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.part-popup h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.part-popup .part-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.part-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    background: var(--white);
}

.part-option:hover { background: var(--gray-50); }

.part-option.selected {
    border-color: var(--primary);
    background: var(--primary-lighter);
    color: var(--primary);
}

.part-option .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* === Parça Seçim Özeti === */
.selected-parts-summary {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-lighter);
    box-shadow: var(--shadow-sm);
}

.selected-parts-summary h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.selected-parts-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.selected-part-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-xs);
}

.selected-part-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(2px);
}

.selected-part-item .part-name {
    font-weight: 600;
    color: var(--dark);
    flex: 1;
}

.part-remove-btn {
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part-remove-btn:hover {
    background: var(--danger-light);
    color: var(--danger);
}

.selected-part-item .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.original { background: #10B981; }
.status-dot.boyali { background: #F59E0B; }
.status-dot.degisen { background: #EF4444; }
.status-dot.hasarli { background: #F97316; }

/* === SSS Akordeon === */
.accordion {
    max-width: 780px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition-fast);
}

.accordion-item:hover { box-shadow: var(--shadow-sm); }

.accordion-header {
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--dark);
    transition: var(--transition-fast);
}

.accordion-header:hover { color: var(--primary); }

.accordion-header i {
    transition: var(--transition);
    color: var(--gray-400);
    font-size: 13px;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
    background: var(--primary-lighter);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body-inner {
    padding: 0 22px 16px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.75;
}

/* === Hakkımızda === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    height: 380px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image i {
    font-size: 100px;
    color: var(--gray-300);
}

.about-image-real {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.about-text p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature i {
    color: var(--primary);
    font-size: 14px;
}

/* Hakkımızda Detay */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

.about-content .about-text .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-lighter);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 14px;
}

.about-content .about-text h2 {
    font-size: clamp(26px, 3vw, 30px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.about-content .about-text p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 14px;
}

.about-visual .about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Misyon/Vizyon */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary);
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.mission-card p {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* Ekip */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-light);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar i {
    font-size: 32px;
    color: var(--primary);
}

.team-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-role {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* === İletişim === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.contact-info-cards {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.contact-info-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-light);
}

.contact-info-card .icon,
.contact-info-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 17px;
    flex-shrink: 0;
}

.contact-info-icon.whatsapp {
    background: #D1FAE5;
    color: #25D366;
}

.contact-info-card h4,
.contact-info-card h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 13px;
    color: var(--gray-500);
}

.contact-info-card a:hover { color: var(--primary); }

/* İletişim Sayfası */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-form-section h3,
.contact-info-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.contact-form-section h3 i,
.contact-info-section h3 i { color: var(--primary); }

.contact-form-section > p,
.contact-info-section > p {
    font-size: 13.5px;
    color: var(--gray-500);
    margin-bottom: 22px;
}

.working-hours {
    margin-top: 22px;
    padding: 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.working-hours h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.working-hours h4 i { color: var(--primary); font-size: 14px; }

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-200);
}

.working-hours ul li:last-child { border-bottom: none; }

.map-section { padding: 0 0 50px; }

.map-placeholder {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    border: 2px dashed var(--gray-200);
}

.map-placeholder i {
    font-size: 42px;
    color: var(--gray-300);
    margin-bottom: 8px;
    display: block;
}

.map-placeholder p {
    font-size: 13px;
    color: var(--gray-400);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-form-card .form-desc {
    color: var(--gray-500);
    font-size: 13.5px;
    margin-bottom: 22px;
}

/* === Hizmetler Detay Sayfası === */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-detail-card {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.service-detail-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.service-detail-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.service-detail-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 10px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.service-features li {
    font-size: 12.5px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-features li i {
    color: var(--primary);
    font-size: 10px;
}

/* Hizmetler Sayfası Kartları */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.service-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-page-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--primary);
}

.service-page-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.service-page-card p {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-page-card ul { text-align: left; margin-bottom: 18px; }

.service-page-card ul li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 7px;
}

.service-page-card ul li i {
    color: var(--primary);
    font-size: 11px;
}

/* === Teşekkür Sayfası === */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* .thank-you-container aşağıda tanımlı */

/* === Nasıl Çalışır Detay === */
.how-it-works-detail {
    max-width: 780px;
    margin: 0 auto;
}

.how-step-detail {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.how-step-detail:nth-child(even) { flex-direction: row-reverse; }

.how-step-number-lg {
    width: 72px;
    height: 72px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.how-step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.how-step-content p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.75;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* === 404 Sayfası === */
.error-404-container {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.error-404-icon-wrapper {
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
}

.error-404-icon {
    font-size: 140px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: errorPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.error-404-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: 900;
    color: var(--primary-lighter);
    opacity: 0.3;
    z-index: 0;
    font-family: 'Inter', system-ui, sans-serif;
    letter-spacing: -0.05em;
}

.error-404-container h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.error-404-description {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.error-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.error-404-search {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 50px;
    border: 1px solid var(--gray-200);
}

.error-404-search h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.error-search-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.error-search-form .form-control {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition);
}

.error-search-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.error-404-suggestions {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--gray-200);
}

.error-404-suggestions h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.error-404-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.error-404-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.error-404-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220,38,38,0.05), transparent);
    transition: left 0.5s;
}

.error-404-card:hover::before {
    left: 100%;
}

.error-404-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.error-404-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.error-404-card:hover .error-404-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.error-404-card-content {
    flex: 1;
    text-align: left;
}

.error-404-card-content strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.error-404-card-content span {
    display: block;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.5;
}

.error-404-card-arrow {
    color: var(--gray-400);
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.error-404-card:hover .error-404-card-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

@keyframes errorPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
    25% { 
        transform: scale(1.05) rotate(-2deg); 
    }
    50% { 
        transform: scale(1.1) rotate(2deg); 
        opacity: 0.95; 
    }
    75% { 
        transform: scale(1.05) rotate(-1deg); 
    }
}

/* === Scroll Top === */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 42px;
    height: 42px;
    background: var(--dark);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* === 404 Sayfası === */
.error-404-container {
    text-align: center;
    padding: 60px 20px;
}

.error-404-icon {
    font-size: 120px;
    color: var(--primary);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.error-404-container h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.error-404-container > p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.error-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.error-404-suggestions {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.error-404-suggestions h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.error-404-suggestions > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.error-404-suggestions a {
    display: block;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.error-404-suggestions a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.error-404-suggestions a i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.error-404-suggestions a strong {
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.error-404-suggestions a span {
    color: var(--gray-500);
    font-size: 13px;
}

/* === Footer === */
.footer {
    background: var(--white);
    color: var(--gray-600);
    margin-top: 0;
    border-top: 1px solid var(--line);
}

.footer-top {
    padding: 56px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.footer-brand span {
    color: var(--primary);
}

.footer-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 6px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 13px;
    transition: var(--transition-fast);
    border: 1px solid var(--gray-200);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: -0.01em;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.footer-links li { margin-bottom: 6px; }

.footer-links li a {
    font-size: 13px;
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    padding: 2px 0;
}

.footer-links li a i {
    font-size: 9px;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-links li a:hover i { color: var(--primary); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.footer-contact-item a { color: var(--gray-500); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--primary-gradient);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(220,38,38,0.2);
}

.footer-cta-btn:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
    color: var(--white) !important;
}

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    background: var(--gray-50);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--gray-400);
}

.footer-credits { color: var(--gray-400); }

/* === Badges === */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 600;
}

.badge-warning { background: var(--warning-light); color: #D97706; }
.badge-info { background: var(--info-light); color: #2563EB; }
.badge-success { background: var(--success-light); color: #059669; }
.badge-danger { background: var(--danger-light); color: #DC2626; }

/* === Alert === */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: var(--success-light); color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: var(--danger-light); color: #DC2626; border: 1px solid #FECACA; }
.alert-info { background: var(--info-light); color: #1E40AF; border: 1px solid #BFDBFE; }

/* === Loading === */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* === Yardımcı Sınıflar === */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* === Scroll Animasyonları === */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === Nasıl Çalışır Sayfa - Timeline === */
.how-it-works-timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 50px;
}

.how-it-works-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
    padding-left: 24px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: var(--primary-light);
}

.timeline-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-lighter);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-tips {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--warning-light);
    border-radius: var(--radius-sm);
    border: 1px solid #FDE68A;
}

.timeline-tips span {
    font-size: 12.5px;
    color: #92400E;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.timeline-tips i { color: #D97706; font-size: 12px; }

/* Avantajlar Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--primary);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary);
    color: var(--white);
}

.advantage-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.advantage-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* === Blog Sayfa Ek Stiller === */
/* .blog-card-body zaten tanımlı, ek stil gerekmez */

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder i {
    font-size: 40px;
    color: var(--gray-300);
}

/* Empty State (Public) */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gray-200);
}

.empty-state i {
    font-size: 48px;
    color: var(--gray-300);
    margin-bottom: 16px;
    display: block;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* === FAQ — Lovable Style === */
.faq-container,
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}

.faq-item.active {
    border-color: var(--gray-200);
    box-shadow: 0 6px 24px rgba(15,23,42,0.07);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    gap: 16px;
}

.faq-question h4,
.faq-question > span:first-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    line-height: 1.45;
    margin: 0;
}

.faq-item.active .faq-question h4,
.faq-item.active .faq-question > span:first-child {
    color: var(--primary);
}

/* Chevron icon replaced by +/- pill */
.faq-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.35s ease;
    color: var(--gray-500);
    font-size: 12px;
}

.faq-item.active .faq-icon-wrap {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

/* Ensure active state is visible even without JS-driven maxHeight */
.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Keep legacy .faq-icon support */
.faq-icon {
    color: var(--gray-400);
    font-size: 13px;
    transition: transform 0.35s ease, color 0.25s ease;
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 14px 22px 18px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid var(--gray-100);
}

/* === Contact Strip (Sub-pages) === */
.contact-strip-section {
    background: var(--gray-50);
    border-top: 1px solid var(--line);
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

.contact-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-strip-text h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    margin-bottom: 4px;
}

.contact-strip-text p {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-strip-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* === Araçlar Section === */
.araclar-section {
    background: var(--gray-50);
}

.araclar-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.araclar-header h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 4px;
}

.araclar-header p {
    font-size: 15px;
    color: var(--gray-500);
}

.araclar-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    transition: gap 0.2s ease;
}

.araclar-all-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.araclar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.arac-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arac-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow2);
}

.arac-card-img {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--gray-100);
}

.arac-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.arac-card:hover .arac-card-img img {
    transform: scale(1.06);
}

.arac-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    background: var(--primary);
    color: var(--white);
    letter-spacing: 0.02em;
}

.arac-badge--hot {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.arac-badge--new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.arac-card-body {
    padding: 16px;
}

.arac-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.arac-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: var(--gray-500);
}

.arac-meta span i {
    font-size: 10px;
    color: var(--gray-400);
}

.arac-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.arac-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.arac-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.arac-cta {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: var(--transition);
}

.arac-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
    color: var(--white);
}

/* === Teşekkür Sayfası Detay === */
.thank-you-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-container .thank-you-icon {
    width: 110px;
    height: 110px;
    background: var(--success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 44px;
    color: var(--success);
    animation: pulse 2s infinite;
}

.thank-you-container h2 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.referans-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(225,29,46,.06), rgba(179,18,23,.04));
    border: 1.5px dashed rgba(225,29,46,.3);
    border-radius: var(--r-lg);
    padding: 22px 32px;
    margin-bottom: 24px;
}
.referans-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}
.referans-id {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--brand);
    letter-spacing: .04em;
    font-family: 'Inter', monospace;
}
.referans-hint {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.thank-you-message {
    font-size: 15.5px;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.7;
}

.thank-you-message strong { color: var(--primary); }

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.thank-you-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 14px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.thank-you-info .info-item i {
    font-size: 24px;
    color: var(--primary);
}

.thank-you-info .info-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.thank-you-info .info-item p {
    font-size: 12.5px;
    color: var(--gray-500);
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.thank-you-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--info-light);
    border-radius: var(--radius);
    border: 1px solid #BFDBFE;
    text-align: left;
}

.thank-you-note i {
    font-size: 18px;
    color: var(--info);
    flex-shrink: 0;
}

.thank-you-note p {
    font-size: 13px;
    color: #1E40AF;
    line-height: 1.55;
}

/* === Blog Detay Sayfa Ek Stiller === */
.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    align-items: start;
}

.blog-detail-content .blog-detail-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.blog-detail-content .blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.blog-detail-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--gray-700);
}

.blog-detail-body p { margin-bottom: 18px; }
.blog-detail-body h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; color: var(--dark); }
.blog-detail-body h3 { font-size: 18px; font-weight: 700; margin: 22px 0 10px; color: var(--dark); }
.blog-detail-body ul, .blog-detail-body ol { margin: 14px 0; padding-left: 24px; }
.blog-detail-body li { margin-bottom: 6px; }
.blog-detail-body strong { color: var(--dark); }
.blog-detail-body a { color: var(--primary); text-decoration: underline; }

/* Blog Paylaşım */
.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding-top: 22px;
    border-top: 1px solid var(--gray-200);
}

.blog-share span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--white);
    transition: var(--transition-fast);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.sidebar-widget h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-widget h4 i { color: var(--primary); font-size: 14px; }

.sidebar-posts li {
    border-bottom: 1px solid var(--gray-100);
    padding: 10px 0;
}

.sidebar-posts li:last-child { border-bottom: none; }

.sidebar-posts li a {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-post-title {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    transition: var(--transition-fast);
}

.sidebar-posts li a:hover .sidebar-post-title { color: var(--primary); }

.sidebar-post-date {
    font-size: 11.5px;
    color: var(--gray-400);
}

.sidebar-cta {
    background: var(--primary-lighter) !important;
    border-color: var(--primary-light) !important;
    text-align: center;
}

.sidebar-cta h4 {
    justify-content: center;
    border-bottom-color: var(--primary-light) !important;
}

.sidebar-cta p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.5;
}
