/* Ankara Filo - Özel Stiller */

:root {
    /* Koyu Tema Renk Paleti */
    --primary-color: #E53935; /* Vurgu Kırmızı */
    --secondary-color: #9AA0A6; /* Nötr Gri */
    --accent-color: #E53935; /* Ek vurgu kırmızı */
    --light-brown: #181A1B; /* Koyu zemin tonu (eski ad korunuyor) */
    --dark-brown: #B71C1C; /* Koyu kırmızı tonu (eski ad korunuyor) */
    --white: #FFFFFF;
    --light-gray: #F8F9FA; /* Açık yüzey (section beyaz/very light) */
    --gray: #9AA0A6;
    --dark-gray: #2A2E31;
    --black: #0B0D0E; /* Ana siyah arka plan */
    --success-color: #30D158;
    --info-color: #64D2FF;
    --warning-color: #E53935; /* Uyarı/Highlight kırmızıya eşlendi */
    --danger-color: #FF453A;
    --topbar-height: 40px;
    --navbar-height: 64px;
    --header-total-height: calc(var(--topbar-height) + var(--navbar-height));
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

/* Premium Hero Slider */
.premium-hero-slider {
    position: relative;
    min-height: calc(100vh - var(--header-total-height));
    height: auto;
    margin-top: var(--header-total-height);
    overflow: visible;
    background: transparent;
}

.premium-hero-slider .carousel {
    height: 100%;
}

.premium-hero-slider .carousel-item {
    min-height: calc(100vh - var(--header-total-height));
    height: auto;
    position: relative;
}

/* Mobil tarayıcılarda dinamik viewport için 100dvh desteği */
@supports (height: 100dvh) {
    .premium-hero-slider {
        min-height: calc(100dvh - var(--header-total-height));
    }
    .premium-hero-slider .carousel-item {
        min-height: calc(100dvh - var(--header-total-height));
        height: auto;
    }
    .premium-hero-slider .min-vh-100 {
        min-height: 100% !important;
    }
}

/* İç satırların konteyner yüksekliğini aşmaması için */
.premium-hero-slider .min-vh-100 {
    min-height: 100%;
}

/* Background Elements */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-bg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.50) 0%,
        rgba(255, 255, 255, 0.30) 50%,
        rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 8s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(3) { top: 40%; left: 60%; animation-delay: 4s; }
.particle:nth-child(4) { top: 80%; left: 20%; animation-delay: 6s; }
.particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: rotate-shape 20s infinite linear;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    animation-delay: 5s;
}

.shape-3 {
    bottom: 30%;
    left: 20%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation-delay: 10s;
}

/* Tech Grid */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 1px;
    width: 100%;
    animation: grid-move 10s infinite linear;
}

.grid-line:nth-child(1) { top: 25%; animation-delay: 0s; }
.grid-line:nth-child(2) { top: 50%; animation-delay: 2s; }
.grid-line:nth-child(3) { top: 75%; animation-delay: 4s; }
.grid-line:nth-child(4) { top: 100%; animation-delay: 6s; }

/* Content Wrapper */
.slide-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.slide-content {
    color: var(--black);
    animation: slideInLeft 1.2s ease-out;
}

/* Animated Badge */
.badge-animated {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--dark-brown));
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.badge-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badge-shine 3s infinite;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mega Title */
.mega-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--black);
    text-shadow: none;
}

.title-line {
    display: block;
    animation: titleSlideIn 1s ease-out;
    animation-fill-mode: both;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(45deg, var(--primary-color), #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slide Description */
.slide-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--dark-gray);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Slide Stats */
.slide-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Feature List */
.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-card-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.service-icon-premium {
    font-size: 2rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.service-card-premium h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card-premium p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Premium Buttons */
.slide-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-premium {
    position: relative;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-primary-premium {
    background: linear-gradient(45deg, var(--primary-color), var(--dark-brown));
    color: white;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.btn-secondary-premium {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-primary-premium:hover {
    background: linear-gradient(45deg, var(--dark-brown), var(--primary-color));
}

.btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btn-glow 3s infinite;
}

/* Slide Visual Elements */
.slide-visual {
    animation: slideInRight 1.2s ease-out;
}

/* Logo Container */
.logo-container {
    position: relative;
    display: inline-block;
}

/* Premium slider: logo sağda büyük ve animasyonlu */
.premium-hero-slider .slide-visual .logo-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: 60vh;
}
.premium-hero-slider .hero-logo-premium {
    width: 700px;
    max-width: 90%;
    height: auto;
    transform-origin: center right;
    /* Gelişmiş animasyon: kombinasyon (tilt+scale+yukarı-aşağı) + neon parıltı */
    animation: logo-hero-combo 8s ease-in-out infinite, neon-pulse 3.5s ease-in-out infinite;
}
.premium-hero-slider .logo-glow {
    width: 700px;
    height: 700px;
    opacity: 0.6;
}

/* Logo üzerinde parıltı süpürme ve şok dalgası efekti */
.premium-hero-slider .logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60%;
    width: 50%;
    height: 120%;
    transform: translateY(-50%) skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    filter: blur(10px);
    pointer-events: none;
    z-index: 3;
    animation: shine-sweep 5s linear infinite;
}

.premium-hero-slider .logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,110,253,0.35) 0%, rgba(13,110,253,0.18) 35%, transparent 60%);
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
    animation: shockwave 4.5s ease-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logo-pulse 3s infinite ease-in-out;
}

.hero-logo-premium {
    max-width: 250px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    animation: logo-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.particle-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: particle-rotate 10s infinite linear;
}

.particle-ring:nth-child(1) {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.particle-ring:nth-child(2) {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

.particle-ring:nth-child(3) {
    width: 400px;
    height: 400px;
    animation-delay: 4s;
}

/* Car Showcase */
.car-showcase {
    position: relative;
    text-align: center;
}

.car-3d-container {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    animation: car-rotate 20s infinite linear;
}

.car-3d-image {
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: rotateY(-15deg);
}

.car-reflection {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    transform: scaleY(-1);
    opacity: 0.5;
}

.car-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.4) 0%, transparent 70%);
    border-radius: 50%;
}

.car-specs-floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.spec-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: spec-float 4s infinite ease-in-out;
}

.spec-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spec-card:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.spec-card:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.spec-card i {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

/* Tech Dashboard */
.tech-dashboard {
    text-align: center;
}

.dashboard-screen {
    display: inline-block;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-content {
    width: 300px;
    height: 200px;
    background: #000;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
}

.data-visualization {
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary-color), var(--warning-color));
    border-radius: 2px;
    animation: chart-grow 2s ease-out;
}

.status-indicators {
    display: flex;
    justify-content: space-around;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #fff;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    animation: status-blink 2s infinite;
}

.status-item.active .status-dot {
    background: #44ff44;
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
    width: 0%;
    animation: progress-fill 6s linear infinite;
}

/* Custom Navigation */
.slider-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 20;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--warning-color);
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--warning-color);
    animation: indicator-progress 6s linear infinite;
}

.indicator.active .indicator-progress {
    animation-play-state: running;
}

.indicator:not(.active) .indicator-progress {
    animation-play-state: paused;
}

/* Car Preview Mini */
.car-preview-mini {
    position: relative;
    display: inline-block;
    animation: slideInRight 1s ease-out;
}

.car-preview-mini img {
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.car-preview-mini:hover img {
    transform: scale(1.05);
}

.car-badge-mini {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* Service Icons Mini */
.service-icons-mini {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.service-icon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-icon-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.service-icon-item i {
    font-size: 2rem;
    color: var(--warning-color);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 2rem;
    gap: 0.5rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--warning-color);
    border-color: var(--warning-color);
    transform: scale(1.2);
}

/* Premium Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

@keyframes rotate-shape {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes grid-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes btn-glow {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes logo-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

/* Logoyu tilt + scale + dikey salınımla beraber animasyonla */
@keyframes logo-hero-combo {
    0% {
        transform: translateY(0) scale(1) rotateY(-6deg) rotateZ(-0.5deg);
    }
    50% {
        transform: translateY(-18px) scale(1.08) rotateY(6deg) rotateZ(0.5deg);
    }
    100% {
        transform: translateY(0) scale(1) rotateY(-6deg) rotateZ(-0.5deg);
    }
}

/* Neon tarzı parıltı nabız efekti */
@keyframes neon-pulse {
    0% {
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)) drop-shadow(0 0 10px rgba(13,110,253,0.35)) drop-shadow(0 0 0px rgba(255,193,7,0));
    }
    50% {
        filter: drop-shadow(0 18px 36px rgba(0,0,0,0.55)) drop-shadow(0 0 22px rgba(13,110,253,0.65)) drop-shadow(0 0 10px rgba(255,193,7,0.35));
    }
    100% {
        filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)) drop-shadow(0 0 10px rgba(13,110,253,0.35)) drop-shadow(0 0 0px rgba(255,193,7,0));
    }
}

/* Parıltı süpürme animasyonu */
@keyframes shine-sweep {
    0% { left: -60%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 110%; opacity: 0.9; }
    100% { left: 110%; opacity: 0; }
}

/* Şok dalgası yayılım animasyonu */
@keyframes shockwave {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.45;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.35);
        opacity: 0.08;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.45);
        opacity: 0;
    }
}
@keyframes logo-float-scale {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.06);
    }
}

@keyframes particle-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes car-rotate {
    0% {
        transform: rotateY(-15deg);
    }
    50% {
        transform: rotateY(15deg);
    }
    100% {
        transform: rotateY(-15deg);
    }
}

@keyframes spec-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes chart-grow {
    from {
        height: 0%;
    }
    to {
        height: var(--chart-height);
    }
}

@keyframes status-blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes indicator-progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-logo {
    max-width: 300px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Navbar Stilleri */
.ust-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.98);
    color: #fff;
    font-size: 0.925rem;
}

.ust-bar {
    height: 40px;
}
.ust-bar .container {
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
}
.ust-bar .container > .d-flex {
    height: 100%;
}

.ust-bar a {
    color: #fff;
    text-decoration: none;
}

.ust-bar a:hover {
    color: var(--warning-color);
}

.ust-bar i {
    width: 1.25rem;
    text-align: center;
}

/* Üst bar mobil yerleşim - telefon ve e-posta yan yana kalsın */
.ust-bar .container > .d-flex > .d-flex {
    flex-wrap: nowrap;
}
.ust-bar .container > .d-flex > .d-flex a {
    white-space: nowrap;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar.fixed-top {
    top: var(--topbar-height);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Sayfa içi hero alanı (index hariç diğer sayfalar) */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-brown) 100%);
    color: #fff;
    padding-top: calc(var(--topbar-height) + 100px);
    padding-bottom: 2rem;
}

.hero-section h1,
.hero-section p,
.hero-section .lead {
    color: #fff !important;
}

/* Logo boyutu: genel sınır */
.navbar-brand img {
    max-height: 90px;
    height: auto;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

/* Navbar hover kararma/overlay temizleme */
.navbar-nav .nav-link {
    overflow: visible; /* overlay taşımasın */
}
.navbar-nav .nav-link::before {
    display: none !important; /* hover'da arkaplan efekti kapalı */
    background: transparent !important;
}
.navbar-nav .nav-link:hover {
    background: transparent !important; /* herhangi bir kararma yok */
}

/* Navbar (dark) üzerinde hover/focus rengini beyaza sabitle */
.navbar.navbar-dark .navbar-nav .nav-link:hover,
.navbar.navbar-dark .navbar-nav .nav-link:focus {
    color: #fff !important;
    background: transparent !important;
}

.navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.2);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.1);
}

/* Mobilde logo ortalama */
@media (max-width: 991.98px) {
    .navbar .container {
        position: relative;
    }
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    .navbar .navbar-toggler {
        z-index: 2;
    }
    /* Mobil/tablet: navbar yüksekliği ve logo boyutu */
    .navbar {
        min-height: 56px;
    }
    .navbar-brand img {
        height: 48px;
        max-height: 48px;
    }
}
@media (max-width: 576px) {
    .navbar-brand img {
        height: 48px;
        max-height: 48px;
    }
}

/* Özellik Kartları */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12) !important;
}

/* Hizmet Kartları */
.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* İstatistik Bölümü */
.stat-item {
    padding: 1rem;
}

.stat-item h3 {
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: var(--white);
}

/* Buton Stilleri */
.btn {
    border-radius: 25px;
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.25);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-warning:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

/* Footer Stilleri */
footer {
    background-color: var(--black) !important;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Footer tipografi: beyaz metin, düşük opaklı gri alt tonlar */
footer, footer p, footer li, footer small, footer .text-muted {
    color: #fff !important;
}
footer a { color: #fff !important; }

/* Responsive Tasarım */
@media (max-width: 768px) {
    :root {
        --topbar-height: 40px;
    }
    
    /* Üst bar: telefon ve e-posta yan yana ve sola hizalı kalsın */
    .ust-bar .container > .d-flex {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
    }
    .ust-bar .container > .d-flex > .d-flex:first-child {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
        min-width: 0;
    }
    .ust-bar .container > .d-flex > .d-flex:first-child a {
        flex: 0 0 auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ust-bar .container > .d-flex > .d-none.d-md-flex {
        display: none !important;
    }

    /* Navbar mobil iç boşluk azaltma */
    .navbar {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    .navbar-brand img {
        display: block;
    }

    /* Premium Slider Responsive (mobil düzeltmeler) */
    .premium-hero-slider .carousel-item {
        min-height: calc(100vh - var(--header-total-height));
        height: auto;
    }
    
    .slide-content-wrapper {
        padding-top: calc(8px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        text-align: center;
    }
    .premium-hero-slider .row.align-items-center {
        align-items: flex-start !important;
    }
    .premium-hero-slider {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mega-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .slide-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
        padding: 0.75rem 2rem;
    }
    
    .hero-logo-premium {
        max-width: 200px;
    }
    
    .car-3d-image {
        max-width: 280px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card-premium {
        padding: 1rem;
    }
    
    .feature-list {
        text-align: left;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    /* Navigation */
    .slider-navigation {
        bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        gap: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .slide-indicators {
        gap: 0.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Dashboard */
    .dashboard-screen {
        padding: 1rem;
    }
    
    .screen-content {
        width: 250px;
        height: 150px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    :root {
        --topbar-height: 40px;
    }
    /* Üst bar: dış sarmalayıcı wrap'ı kapat, iki linki yan yana tut */
    .ust-bar .container > .d-flex {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
    }
    .ust-bar .container > .d-flex > .d-flex:first-child {
        display: flex;
        flex: 0 1 auto;
        min-width: 0;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        align-items: center;
    }
    .ust-bar .container > .d-flex > .d-flex:first-child a {
        display: inline-flex;
        align-items: center;
        max-width: none;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Sağdaki adres zaten d-none d-md-flex, yine de garanti için gizle */
    .ust-bar .container > .d-flex > .d-none.d-md-flex {
        display: none !important;
    }
    .ust-bar {
        font-size: 0.875rem;
    }
    .ust-bar .ms-2 {
        margin-left: 0.25rem !important;
    }
    
    /* Hero Slider Mobile */
    .hero-slider .carousel-item {
        height: 100vh;
        min-height: 400px;
    }
    
    .slide-bg {
        padding-top: calc(var(--topbar-height) + 40px);
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .slide-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .slide-image .hero-logo {
        max-width: 200px;
        margin-top: 1.5rem;
    }
    
    .car-preview-mini img {
        max-width: 220px;
    }
    
    .service-icons-mini {
        gap: 0.75rem;
    }
    
    .service-icon-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-icon-item i {
        font-size: 1.25rem;
    }
    
    /* Carousel Controls Mobile */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-indicators {
        bottom: 0.5rem;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .d-flex.gap-3 .btn {
        width: 100%;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Davranışı */
html {
    scroll-behavior: smooth;
}

/* Özel Efektler */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.box-shadow-custom {
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
}

/* Loading Efekti */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hover Efektleri */
.navbar-brand:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Hizmetler Sayfası Stilleri */
.service-detail {
    padding: 2rem;
}

.service-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.advantage-item {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.04);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(13, 110, 253, 0.08);
    transform: translateY(-2px);
}

.advantage-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.advantage-item h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* İletişim Sayfası Stilleri */
.contact-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.12);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
}

.map-container {
    padding: 2rem;
}

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
}

.quick-contact-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.12);
}

.quick-contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Form Stilleri */
.form-control, .form-select {
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
}

.form-label {
    color: var(--dark-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Accordion Stilleri */
.accordion-item {
    border: 1px solid rgba(13, 110, 253, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--dark-brown);
    border: none;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: var(--black);
}

/* Araç Kiralama Sayfası Stilleri */
.car-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.12);
}

.car-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.car-details {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    height: 100%;
}

.car-specs {
    background: rgba(13, 110, 253, 0.04);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(13, 110, 253, 0.04);
    transform: translateX(5px);
}

.spec-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.spec-item span {
    font-size: 0.95rem;
}

.pricing-table {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.price-item {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(13, 110, 253, 0.04);
    transition: all 0.3s ease;
}

.price-item.featured {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.price-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.12);
}

.price-item.featured .price {
    color: white;
}

.price-item h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.condition-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.12);
}

.condition-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Ana Sayfa Araç Önizleme Kartları */
.car-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.car-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
}

.car-preview-image {
    position: relative;
    overflow: hidden;
}

.car-preview-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-preview-card:hover .car-preview-image img {
    transform: scale(1.1);
}

.car-preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.car-preview-content {
    padding: 1.5rem;
}

.car-preview-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
}

.car-preview-price {
    margin: 1rem 0;
    text-align: center;
}

.car-preview-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.car-preview-price small {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Gelişmiş Navbar Stilleri */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.3s ease;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--light-brown) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.2);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.1);
}

/* Özel Renkler */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-brown) 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

/* Text Renkleri */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Background Renkleri */
.bg-primary { background-color: var(--black) !important; }

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-light {
    background-color: var(--white) !important;
}

/* Border Renkleri */
.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}
