/**
 * Engindere Otomotiv - Ana Stil Dosyası
 * Ultra Profesyonel Tasarım
 * www.engindereotomotiv.com
 */

/* ═══════════════════════════════════════════
   CSS VARIABLES – Kurumsal Renkler
   #e95721 (turuncu) | #000000 (siyah) | #ffffff (beyaz)
   ═══════════════════════════════════════════ */
:root {
    /* Kurumsal palet */
    --primary:        #e95721;
    --primary-dark:   #c94a1a;
    --primary-light:  #f07a4a;
    --primary-alpha:  rgba(233, 87, 33, 0.12);
    --primary-alpha-strong: rgba(233, 87, 33, 0.2);
    --secondary:      #000000;
    --secondary-dark: #000000;
    --secondary-light:#1a1a1a;
    --accent:         #000000;
    --accent-light:   #e95721;

    /* Nötr – siyah / beyaz odaklı */
    --dark:           #000000;
    --gray-900:       #111111;
    --gray-800:       #262626;
    --gray-700:       #404040;
    --gray-600:       #6b6b6b;
    --gray-500:       #8c8c8c;
    --gray-400:       #b3b3b3;
    --gray-300:       #d9d9d9;
    --gray-200:       #ebebeb;
    --gray-100:       #f5f5f5;
    --white:          #ffffff;

    /* Durum */
    --success:        #0d9668;
    --warning:        #d4a012;
    --danger:         #e95721;
    --info:           #0a6ea6;

    /* Tipografi – ultra profesyonel */
    --font-primary:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading:   'Poppins', 'Inter', sans-serif;

    /* Boyutlar */
    --navbar-height:  80px;
    --border-radius:  10px;
    --border-radius-sm: 6px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;

    /* Gölgeler – keskin, profesyonel */
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:      0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg:      0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl:      0 24px 48px rgba(0,0,0,0.14);
    --shadow-glow:    0 0 32px rgba(233, 87, 33, 0.25);

    /* Geçişler */
    --transition:     all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Bootstrap uyumu – kurumsal renk */
    --bs-primary:     #e95721;
    --bs-danger:      #e95721;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */
.top-bar {
    background: var(--secondary-dark);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-info a,
.top-bar-info li {
    color: #fff;
    transition: var(--transition-fast);
}

.top-bar-info a:hover {
    color: rgba(255,255,255,0.85);
}

.top-bar-info .list-inline-item + .list-inline-item {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.top-bar-social a {
    color: #fff;
    font-size: 15px;
    padding: 0 8px;
    transition: var(--transition-fast);
}

.top-bar-social a:hover {
    color: rgba(255,255,255,0.85);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
#mainNavbar {
    background: var(--secondary);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1040;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#mainNavbar.scrolled {
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
}

.navbar-logo {
    height: 36px;
    width: auto;
    transition: var(--transition);
}

#mainNavbar.scrolled .navbar-logo {
    height: 32px;
}
.navbar-logo-offcanvas {
    height: 32px;
    width: auto;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background: var(--primary-alpha);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

/* CTA Button */
.nav-cta {
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Dropdown */
.dropdown-menu-dark {
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 8px;
    box-shadow: var(--shadow-xl);
    animation: dropdownFade 0.25s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255,255,255,0.7);
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu-dark .dropdown-item:hover {
    background: var(--primary-alpha);
    color: var(--white);
    transform: translateX(4px);
}

/* Animated Hamburger */
.navbar-toggler-animated {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-animated span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ═══════════════════════════════════════════
   OFFCANVAS MOBILE MENU
   ═══════════════════════════════════════════ */
.offcanvas-mobile {
    background: var(--secondary);
    width: 320px;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.offcanvas-mobile .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
}

.mobile-nav .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 14px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    color: var(--white);
    background: var(--primary-alpha);
}

.mobile-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HERO / SLIDER
   ═══════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-alpha);
    border: 1px solid rgba(233, 87, 33, 0.4);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: var(--border-radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-sm);
    padding: 12px 28px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-danger {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-danger:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 87, 33, 0.4);
}

.btn-outline-danger {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-danger:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 87, 33, 0.3);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-xl {
    padding: 16px 44px;
    font-size: 17px;
}

/* ═══════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════ */
.section {
    padding: 80px 0;
}

.section-lg {
    padding: 100px 0;
}

.section-gray {
    background: var(--gray-100);
}

.section-dark {
    background: var(--secondary);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-title p {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-title-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ═══════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════ */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-card:hover .service-card-icon i {
    color: var(--white);
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   FEATURE / WHY US
   ═══════════════════════════════════════════ */
.feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-sm);
    background: var(--primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h5 {
    font-size: 17px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

/* ═══════════════════════════════════════════
   COUNTER / STATS
   ═══════════════════════════════════════════ */
.counter-section {
    background: var(--secondary);
    padding: 64px 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.counter-label {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════ */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--gray-100);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--border-radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--secondary);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.blog-card-img-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-card-title {
    font-size: 1.1rem;
}
.blog-card-more {
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.blog-card-more:hover {
    color: var(--primary-dark);
}

/* Blog sayfası – boş durum & sidebar */
.blog-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-500);
}
.blog-sidebar {
    top: 100px;
}
.blog-sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.blog-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.blog-search-form .form-control {
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}
.blog-search-form .btn {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.blog-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-sidebar-list li {
    margin-bottom: 0.5rem;
}
.blog-sidebar-list a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}
.blog-sidebar-list a:hover,
.blog-sidebar-list a.active {
    color: var(--primary);
    font-weight: 600;
}
.blog-populer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.blog-populer-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}
.blog-populer-item:hover {
    color: var(--primary);
}
.blog-populer-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}
.blog-populer-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 0.25rem;
}
.blog-populer-item:hover .blog-populer-title {
    color: var(--primary);
}
.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    text-align: center;
}
.blog-sidebar-cta i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}
.blog-sidebar-cta h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.blog-sidebar-cta p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}
.blog-sidebar-cta .btn-light:hover {
    background: var(--white);
    color: var(--primary);
}
.blog-pagination .pagination .page-link {
    color: var(--dark);
    border-radius: var(--border-radius-sm);
}
.blog-pagination .pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
.form-control,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-alpha);
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 4px);
    padding: 1rem 1rem;
}

.form-text {
    font-size: 13px;
}

.input-group-text {
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════
   CAMPAIGN CARDS
   ═══════════════════════════════════════════ */
.campaign-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.campaign-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 13px;
    font-weight: 700;
}

.campaign-card-body {
    padding: 24px;
}

.campaign-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.campaign-old-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 16px;
}

.campaign-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: var(--gray-100);
}
.campaign-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.campaign-card:hover .campaign-card-img {
    transform: scale(1.05);
    transition: var(--transition);
}
.campaign-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-alpha);
    color: var(--primary);
    font-size: 3rem;
}
.campaign-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.campaign-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.campaign-card-footer {
    font-size: 0.85rem;
}

/* Kampanyalar sayfası – boş durum */
.kampanya-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-500);
}

/* ═══════════════════════════════════════════
   PAGE HEADER / BREADCRUMB
   ═══════════════════════════════════════════ */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary-alpha);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(15, 52, 96, 0.15);
}

.page-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 2;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb-item.active {
    color: var(--primary-light);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-icon i {
    font-size: 28px;
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-logo {
    height: 45px;
    width: auto;
}

.footer-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 10px;
    margin-right: 8px;
    color: var(--primary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-alpha);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 14px;
}

.footer-contact-text {
    font-size: 14px;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-text a:hover {
    color: var(--primary);
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social .social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer CTA */
.footer-cta {
    background: rgba(255,255,255,0.03);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-cta h4 {
    color: var(--white);
    font-size: 20px;
}

.footer-cta p,
.footer-cta .text-muted {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links .list-inline-item + .list-inline-item {
    padding-left: 12px;
    margin-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1030;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

@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); }
}

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.8);
    padding: 16px 0;
    z-index: 1050;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--border-radius-sm);
}

@keyframes skeleton-loading {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════ */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom   { background: var(--primary) !important; }
.bg-secondary-custom { background: var(--secondary) !important; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.glass-effect {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-form-icon { color: var(--primary); }

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
}

/* ═══════════════════════════════════════════
   INDEX PREMİUM (Hero, Hızlı Randevu, İstatistik, Hizmet Kartları, Süreç)
   Kurumsal: #e95721, #000000, #ffffff
   ═══════════════════════════════════════════ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: var(--secondary);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-premium-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-premium .container { position: relative; z-index: 2; }
.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-alpha);
    border: 1px solid rgba(233,87,33,0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}
.hero-premium-badge .badge-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
}
.hero-premium-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-premium-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    max-width: 540px;
}
.hero-premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.hero-premium-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--white);
}
.hero-premium-features li i { color: var(--primary); font-size: 1.2rem; }
.hero-premium-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-premium-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 1rem; }
.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-alpha);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}
.trust-content strong { display: block; font-size: 1.1rem; color: var(--white); }
.trust-content span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-premium-floating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}
.floating-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}
.floating-content strong { display: block; font-size: 1.5rem; color: var(--dark); }
.floating-content span { display: block; font-size: 0.85rem; color: var(--gray-600); }
.hero-premium-floating-multi {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.hero-premium-floating-multi .hero-floating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}
.hero-premium-floating-multi .hero-floating-item .floating-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}
.hero-premium-floating-multi .hero-floating-item .floating-content strong { font-size: 1.35rem; }
.hero-premium-floating-multi .hero-floating-item .floating-content span { font-size: 0.8rem; }

/* Slider üstü premium istatistik kartı */
.hero-stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 340px;
    background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(255,250,248,0.98) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(255,255,255,0.8) inset;
    overflow: hidden;
    padding: 1rem;
}
.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.6rem;
    border-radius: 14px;
    transition: background 0.25s ease, transform 0.2s ease;
}
.hero-stat-item:hover {
    background: rgba(233,87,33,0.06);
    transform: translateX(4px);
}
.hero-stat-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #d96b28 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(233,87,33,0.35);
}
.hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 0;
}
.hero-stat-item .hero-stat-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.hero-stat-item .hero-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.scroll-indicator-premium {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator-premium a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
}
.scroll-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { opacity: 0.3; transform: translateY(-8px); }
    50% { opacity: 1; transform: translateY(8px); }
}

/* Neden Biz - Atölye görseli */
.neden-biz-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    background: var(--gray-100);
}
.neden-biz-atolye-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.neden-biz-image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
}
.neden-biz-image-badge small { opacity: 0.9; }

.stats-premium { padding: 4rem 0; background: var(--gray-100); }
.stat-card-premium {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}
.stat-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.stat-icon-premium {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--primary-alpha);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
}
.stat-number-premium { font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; line-height: 1; }
.stat-label-premium { font-size: 0.95rem; color: var(--gray-600); margin: 0; }

/* SSS Accordion */
.accordion-premium .accordion-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.accordion-premium .accordion-item:last-child { margin-bottom: 0; }
.accordion-premium .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    padding: 1rem 1.25rem;
    box-shadow: none;
    border: none;
}
.accordion-premium .accordion-button:not(.collapsed) {
    background: var(--primary-alpha);
    color: var(--primary-dark);
}
.accordion-premium .accordion-button::after {
    flex-shrink: 0;
}
.accordion-premium .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* WhatsApp sabit butonu */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.service-card-premium {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card-premium:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.service-card-premium:hover::before { transform: scaleX(1); }
.service-card-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.service-icon-premium {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}
.service-number-premium { font-size: 2rem; font-weight: 800; color: var(--gray-200); }
.service-title-premium { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.service-desc-premium { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 1rem; }
.service-features-premium {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.service-features-premium li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}
.service-features-premium li i { color: var(--primary); font-size: 0.75rem; }
.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}
.service-link-premium:hover { color: var(--primary-dark); gap: 0.75rem; }

.process-premium .process-card-premium {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.process-premium .process-card-premium:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.process-step-num {
    position: absolute;
    top: -12px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(233,87,33,0.3);
}
.process-icon-premium {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}
.process-premium .process-card-premium:hover .process-icon-premium {
    background: var(--primary);
    color: var(--white);
}
.process-premium .process-card-premium h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.process-premium .process-card-premium p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* ═══ Hakkımızda sayfası – resimler ═══ */
.about-main-img-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}
.about-main-img {
    width: 100%;
    height: auto;
    min-height: 320px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.about-gallery-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--gray-100);
    aspect-ratio: 4/3;
}
.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}
.about-gallery-item:hover img {
    transform: scale(1.05);
}
.team-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-100);
}
.team-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}
.team-card:hover .team-card-img {
    transform: scale(1.03);
}

/* ═══ Hizmetler sayfası ═══ */
.hizmetler-quick-nav {
    max-width: 900px;
    margin: 0 auto;
}
.quick-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1rem 0.75rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition);
}
.quick-nav-link i {
    font-size: 1.5rem;
    color: var(--primary);
}
.quick-nav-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.hizmet-img-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}
.hizmet-img {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hizmet-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.hizmet-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--dark);
}
.hizmet-desc {
    font-size: 1rem;
    line-height: 1.75;
}
.hizmet-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px 20px;
}
.hizmet-items-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.hizmet-items-list li i {
    flex-shrink: 0;
}

.section-cta-hizmetler {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
}
.section-cta-hizmetler .btn-light:hover {
    background: var(--white);
    color: var(--primary);
}

/* ═══ İletişim sayfası ═══ */
.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.contact-info-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    text-decoration: none;
}
.contact-info-text:hover {
    color: var(--primary);
}
.iletisim-form-wrap {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.iletisim-form-wrap .form-control:focus,
.iletisim-form-wrap .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem var(--primary-alpha);
}
.iletisim-map-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
    height: 480px;
}
.iletisim-map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--gray-600);
}
.iletisim-map-placeholder code {
    background: var(--gray-200);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}
.section-cta-iletisim {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    padding: 2.5rem 0;
}
.section-cta-iletisim .btn-success {
    background: var(--white);
    color: #128C7E;
    border: none;
}
.section-cta-iletisim .btn-success:hover {
    background: var(--gray-100);
    color: #0a6b5e;
}

/* ═══ Servis Randevu – Ultra profesyonel ═══ */
.page-header-randevu .page-header-desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.page-header-randevu .breadcrumb {
    margin-bottom: 0;
}

.randevu-steps {
    padding: 1.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}
.randevu-steps-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.randevu-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.randevu-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.randevu-step-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.randevu-step-line {
    width: 40px;
    height: 2px;
    background: var(--gray-300);
}
@media (max-width: 576px) {
    .randevu-step-line { width: 20px; }
    .randevu-step-text { font-size: 0.7rem; }
}

.randevu-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

/* Randevu başarı sayfası */
.randevu-basarili-section {
    padding: 4rem 0 5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.randevu-basarili-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.5rem;
    text-align: center;
}
.randevu-basarili-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(13, 150, 104, 0.12);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.randevu-basarili-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.randevu-basarili-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.randevu-basarili-no {
    background: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}
.randevu-basarili-no .label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.35rem;
}
.randevu-basarili-no .no {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
}
.randevu-basarili-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.randevu-basarili-contact {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.randevu-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    overflow: hidden;
}
.randevu-form-block {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}
.randevu-form-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.randevu-form-block-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.randevu-form-block-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-alpha);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.randevu-form-block-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.randevu-input {
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    transition: var(--transition-fast);
}
.randevu-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-alpha);
}
.randevu-form-block-kvkk {
    padding-top: 1rem;
    margin-top: 1rem;
}
.randevu-form-block-kvkk .form-check-label {
    font-size: 0.95rem;
    color: var(--gray-700);
}
.randevu-kvkk-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.randevu-kvkk-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.randevu-form-submit {
    padding-top: 1.5rem;
    margin-top: 1rem;
}
.randevu-submit-btn {
    font-weight: 700;
    padding: 0.9rem 2rem;
}
.randevu-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 87, 33, 0.35);
}

.randevu-sidebar {
    top: 100px;
}
.randevu-sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}
.randevu-sidebar-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
}
.randevu-sidebar-contact .randevu-sidebar-title {
    color: var(--white);
    font-size: 1.1rem;
}
.randevu-sidebar-desc {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 1.25rem;
}
.randevu-sidebar-contact .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.randevu-sidebar-contact .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.randevu-sidebar-contact .btn-success {
    background: #25D366;
    border: none;
    color: var(--white);
}
.randevu-sidebar-contact .btn-success:hover {
    background: #20bd5a;
    color: var(--white);
}
.randevu-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.randevu-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.randevu-sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}
.randevu-sidebar-list li:last-child {
    border-bottom: none;
}
.randevu-sidebar-list span {
    color: var(--gray-600);
}
.randevu-sidebar-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.randevu-sidebar-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}
.randevu-sidebar-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.randevu-sidebar-info .randevu-sidebar-title {
    color: var(--primary);
}

/* ═══════════════════════════════════════════
   MÜŞTERİ PANEL
   ═══════════════════════════════════════════ */
.musteri-panel-nav {
    background: var(--gray-900);
    padding: 0.75rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid var(--gray-200);
}
.musteri-panel-nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}
.musteri-panel-nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    text-decoration: none;
}
.musteri-panel-nav-link:hover {
    color: var(--white);
    background: var(--primary-alpha);
}
.musteri-panel-nav-link.active {
    color: var(--white);
    background: var(--primary);
}
.musteri-panel-section {
    padding: 2.5rem 0 4rem;
}
.musteri-panel-welcome {
    margin-bottom: 2rem;
}
.musteri-panel-title {
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.musteri-panel-desc {
    color: var(--gray-600);
    margin: 0;
}
.musteri-panel-stat-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    height: 100%;
}
.musteri-panel-stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.musteri-panel-stat-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-alpha);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}
.musteri-panel-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}
.musteri-panel-stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}
.musteri-panel-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.musteri-panel-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}
.musteri-panel-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}
.musteri-panel-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.musteri-panel-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.musteri-panel-card-link:hover {
    color: var(--primary-dark);
}
.musteri-panel-card-body {
    padding: 1.5rem;
}
.musteri-panel-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--gray-500);
}
.musteri-panel-empty i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}
.musteri-panel-empty p {
    margin-bottom: 1rem;
}
.musteri-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.musteri-panel-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.musteri-panel-list-item:last-child {
    border-bottom: 0;
}
.musteri-panel-plaka {
    font-weight: 700;
    color: var(--dark);
}
.musteri-panel-meta {
    font-size: 0.9rem;
    color: var(--gray-600);
}
.musteri-panel-table {
    width: 100%;
    font-size: 0.9rem;
}
.musteri-panel-table th {
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
    text-align: left;
}
.musteri-panel-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}
.musteri-panel-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.musteri-panel-badge-beklemede { background: #fff3cd; color: #856404; }
.musteri-panel-badge-onaylandi { background: #d1e7dd; color: #0f5132; }
.musteri-panel-badge-iptal { background: #f8d7da; color: #842029; }
.musteri-panel-badge-kabul,
.musteri-panel-badge-islemde { background: #cff4fc; color: #055160; }
.musteri-panel-badge-tamamlandi,
.musteri-panel-badge-teslim { background: #d1e7dd; color: #0f5132; }
.musteri-panel-yeni-arac {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin-top: 0.5rem;
}
.musteri-panel-form-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}
.musteri-panel-form-card .form-label {
    font-weight: 600;
    color: var(--gray-700);
}
@media (max-width: 767.98px) {
    .musteri-panel-nav-inner { justify-content: flex-start; }
    .musteri-panel-section { padding: 1.5rem 0 3rem; }
    .musteri-panel-form-card { padding: 1.25rem; }
}

/* Giriş sayfası – üst banner ve form */
.giris-page { padding-top: 2rem; padding-bottom: 3rem; }
.giris-hero {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(233,87,33,0.08) 0%, rgba(233,87,33,0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(233,87,33,0.15);
}
.giris-hero-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #d96b28 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(233,87,33,0.3);
}
.giris-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}
.giris-hero-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}
.giris-card { border: 1px solid rgba(0,0,0,0.06); }
.giris-forgot-link {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
}
.giris-forgot-link:hover { color: #c96a1e; text-decoration: underline; }
