:root {
    /* Ana Aksent Rengi (Canlı Turuncu) */
    --primary: #FF6B00;
    --primary-gradient: linear-gradient(135deg, #FF6B00, #e65100);

    /* İkincil Renk (Mavi AZALTILDI - Sadece güven vurguları için) */
    --secondary: #0056b3;

    /* Yeni Profesyonel Koyu Renk (Butonlar ve vurgular için) */
    --dark-accent: #2C3E50;
    --dark-gradient: linear-gradient(135deg, #2C3E50, #1a252f);

    /* Metin Renkleri */
    --text-dark: #111111;
    --text-muted: #6c757d;

    /* Arka Planlar */
    --bg-light: #F8F9FA;
    --bg-light-original: #F8F9FA;
    /* Backup */
    --bg-white: #FFFFFF;
    --footer-bg: #0F172A;
    /* Çok koyu, profesyonel footer */

    /* Gölgelendirme (Daha sofistike) */
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #fefefe 0%, #fff8f5 30%, #fef6f2 70%, #faf5f3 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding {
    padding: 6rem 0;
}


/* --- Navigasyon Barı (Glassmorphism) --- */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-accent);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 35px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--dark-accent);
    border-radius: 4px;
    transition: all 0.3s;
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9999;
        padding: 50px 0;
        transform: translateX(100%);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-links a {
        margin: 0;
        font-size: 1.3rem;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Center on Mobile */
    .hero {
        height: 500px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* --- Premium WOW Hero Section --- */
.premium-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: #0f172a;
    overflow: hidden;
    padding: 90px 0 70px;
}

/* Animated Gradient Background */
.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f172a, #1a1a2e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Icons Decoration */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 107, 0, 0.15);
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 {
    font-size: 2rem;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    font-size: 1.5rem;
    top: 70%;
    left: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    font-size: 1.8rem;
    top: 20%;
    right: 12%;
    animation-delay: 3s;
}

.icon-4 {
    font-size: 1.3rem;
    top: 65%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.25;
    }
}


.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

/* Car Visual */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

/* Car Slider */
.hero-car-slider {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-car-img {
    position: absolute;
    width: 90%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    border-radius: 100%;
}

.hero-car-img.active {
    opacity: 1;
    transform: scale(1);
}

.hero-glow-effect {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* Glassmorphism Text Card */
.hero-text-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 24px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.25);
}

.hero-text-glass h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 15px;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #fff 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-glass p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-glow {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.btn-whatsapp-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.5);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Hero Curve */
.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-curve .shape-fill {
    fill: #fff8f5;
}

/* Grid Pattern Overlay */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    pointer-events: none;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 107, 0, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

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

.hero-particles span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1.5s;
    width: 4px;
    height: 4px;
}

.hero-particles span:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: 3s;
}

.hero-particles span:nth-child(4) {
    left: 85%;
    top: 70%;
    animation-delay: 4.5s;
    width: 8px;
    height: 8px;
}

.hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-40px) scale(1.2);
        opacity: 1;
    }
}

/* Car Shine Effect */
.car-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.08) 60%, transparent 100%);
    transform: skewX(-20deg);
    animation: carShine 5s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

@keyframes carShine {
    0% {
        left: -150%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

/* Car Platform Shadow */
.car-platform {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 15px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
}

/* Shimmer Text Effect */
.shimmer {
    background: linear-gradient(110deg,
            var(--primary) 0%,
            #fff 45%,
            var(--primary) 55%,
            #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Pulse Glow Badge */
.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
    }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 12px;
    margin-bottom: 25px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* Fade Up Animation */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .premium-hero {
        padding: 120px 0 100px;
    }

    .hero-content-wrapper {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }

    .hero-visual {
        flex: 1;
        max-width: 600px;
        order: 2;
    }

    .hero-car-img {
        width: 120%;
        max-width: none;
    }

    .hero-text-glass {
        flex: 1;
        padding: 50px;
        order: 1;
    }

    .hero-text-glass h1 {
        font-size: 3.5rem;
    }

    .hero-actions {
        flex-direction: row;
    }
}


/* --- Page Header (Premium Modern) --- */
.page-header {
    background: var(--dark-accent);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-accent);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 600px;
    margin-inline: auto;
}

/* --- ARAÇ KARTLARI (Profesyonel Dokunuş) --- */
.vehicles-section {
    position: relative;
}

/* Arka plana hafif bir şekil ekleyerek doluluk sağlama */
.vehicles-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 107, 0, 0.03);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .car-grid {
        grid-template-columns: 1fr;
    }
}

.car-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

/* Vale Rozeti - Daha Şık */
.badge-valet {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--dark-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-valet i {
    color: var(--primary);
}

.img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    flex-shrink: 0;
}

/* GÜNCELLENMİŞ ÇALIŞAN RESİMLER */
.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.car-card:hover .car-img {
    transform: scale(1.08);
}

.car-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.car-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-accent);
    line-height: 1.3;
}

.car-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Özellikler - Mobil Dostu Kompakt Tag Tasarımı */
.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.spec-item {
    font-size: 0.8rem;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    background: #f1f5f9;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

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

.car-card:hover .spec-item {
    background: rgba(255, 107, 0, 0.08);
}

.pricing-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.daily-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.daily-price small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.deposit-info {
    text-align: right;
}

.deposit-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.deposit-amount {
    font-weight: 700;
    color: var(--dark-accent);
    font-size: 1rem;
}

/* Butonlar - Profesyonel Renkler */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

/* "Hemen Ara" artık koyu profesyonel renk */
.btn-call {
    background: var(--dark-gradient);
}

/* Tümünü Gör Butonu */
.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: white;
    color: var(--dark-accent);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-card);
}

.btn-view-all:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

.btn-view-all i {
    margin-left: 10px;
}

/* --- Neden Biz? Alanı (Doluluğu Sağlayan Arka Plan) --- */
.features-section {
    position: relative;
    background: var(--bg-white);
    /* Arka plana eğimli bir şekil ekleyerek profesyonel görünüm */
    background: linear-gradient(170deg, var(--bg-light) 0%, var(--bg-light) 40%, var(--bg-white) 40%, var(--bg-white) 100%);
    padding-top: 4rem;
    /* Eğim için daha az boşluk */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 0, 0.2);
}

/* Kart hover olunca arkadan geçen ışık efekti */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-box {
    background: var(--primary-gradient);
    transform: rotate(10deg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-accent);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Footer (Tamamen Dolu ve Profesyonel) --- */
footer {
    background: var(--footer-bg);
    color: #a0aec0;
    padding: 60px 0 30px;
    position: relative;
}

/* Footer'a hafif bir desen ekleyelim */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-widget h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #a0aec0;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Sabit Butonlar (Değişmedi) */
.sticky-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.sticky-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    animation: pulse 2s infinite;
}

.sticky-call {
    background: var(--dark-gradient);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .car-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .features-section {
        background: var(--bg-light);
        padding-top: 4rem;
    }

    /* Mobilde eğimi kaldır */
}

/* ===== YENİ FLOATING BUTONLAR ===== */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.floating-btn i {
    font-size: 1.3rem;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: floatPulse 2.5s ease-in-out infinite;
}

.floating-call {
    background: linear-gradient(135deg, var(--dark-accent), #1a252f);
}

/* --- Filtreleme Alanı (Premium Tasarım) --- */
.filter-section {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 24px;
    margin-bottom: 45px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    align-items: flex-end;
}

.filter-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--dark-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232C3E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.btn-filter-submit {
    background: var(--dark-accent);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    white-space: nowrap;
    width: 100%;
}

.btn-filter-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}

.btn-filter-reset {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.95rem;
    white-space: nowrap;
    width: 100%;
}

.filter-actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.btn-filter-reset:hover {
    background: #e2e8f0;
    color: var(--dark-accent);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 5px;
}

.results-count {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.results-count span {
    color: var(--dark-accent);
    font-weight: 800;
}

.empty-results {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 2px dashed #e2e8f0;
}

.empty-results i {
    color: #cbd5e1;
    margin-bottom: 25px;
}

.empty-results h3 {
    font-size: 1.5rem;
    color: var(--dark-accent);
    margin-bottom: 12px;
}

.empty-results p {
    color: var(--text-muted);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

/* Mobilde sadece ikon göster */
@media (max-width: 600px) {
    .floating-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-label {
        display: none;
    }

    .floating-btn i {
        font-size: 1.5rem;
    }
}

/* --- Cookie Banner (Premium Glassmorphism) --- */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner.show {
    bottom: 20px;
    opacity: 1;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-content i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.btn-cookie-accept {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .btn-cookie-accept {
        width: 100%;
    }
}

/* --- About Page Styles --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark-accent);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.conditions-container {
    max-width: 1000px;
    margin: 0 auto;
}

.condition-block {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.condition-block h3 {
    font-size: 1.5rem;
    color: var(--dark-accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    width: fit-content;
}

.condition-block h3 i {
    color: var(--primary);
}

.condition-block p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.condition-block ul {
    list-style: none;
}

.condition-block ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.condition-block ul li i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 0.9rem;
}

.condition-block ul li:last-child {
    border-bottom: none;
}

.important-note {
    background: #fff5eb;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.important-note p {
    color: #9a4e00;
    margin-bottom: 0;
    font-weight: 500;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark-accent);
    margin: 30px 0 15px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* --- Footer Privacy Link Styling --- */
.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}