/* ============================================================
   Mihray Rent A Car - Ana Stil Dosyası
   Tasarım: Modern & Güvenilir | Renk: Koyu Lacivert + Turuncu
   ============================================================ */

:root {
    --primary:       #E85D04;
    --primary-dark:  #C44B00;
    --primary-light: #FF8C42;
    --secondary:     #1A1F3C;
    --secondary-light:#252B50;
    --accent:        #F9C74F;
    --text-dark:     #1A1F3C;
    --text-body:     #4A5568;
    --text-light:    #718096;
    --bg-light:      #F7F8FC;
    --bg-white:      #FFFFFF;
    --border-color:  #E2E8F0;
    --shadow-sm:     0 2px 8px rgba(26,31,60,0.08);
    --shadow-md:     0 8px 24px rgba(26,31,60,0.12);
    --shadow-lg:     0 20px 60px rgba(26,31,60,0.15);
    --radius:        12px;
    --radius-lg:     20px;
    --font-display:  'Sora', sans-serif;
    --font-body:     'DM Sans', sans-serif;
    --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--primary-light); }

.whatsapp-btn {
    background: #25D366;
    color: white !important;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}
.whatsapp-btn:hover { background: #1ebe5a; }

/* ---- NAVBAR ---- */
.main-navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.main-navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}
.brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    padding: 6px 16px !important;
    border-radius: 8px;
    position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--primary) !important; }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.btn-primary-custom {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(232,93,4,0.3);
}

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler i { color: var(--secondary); font-size: 1.3rem; }

/* ---- BUTTONS ---- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,93,4,0.3);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-secondary-custom {
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}
.btn-secondary-custom:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D3561 60%, #1A1F3C 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,199,79,0.08) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,4,0.15);
    border: 1px solid rgba(232,93,4,0.3);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* Arama formu hero içinde */
.hero-search-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 28px;
}
.hero-search-card label {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.hero-search-card .form-control,
.hero-search-card .form-select {
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 12px 16px;
    font-family: var(--font-body);
}
.hero-search-card .form-control::placeholder { color: rgba(255,255,255,0.4); }
.hero-search-card .form-control:focus,
.hero-search-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.2);
    background: rgba(255,255,255,0.15);
    color: white;
}
.hero-search-card .form-select option { color: var(--text-dark); background: white; }

/* ---- FEATURES BAR ---- */
.features-bar {
    background: white;
    box-shadow: var(--shadow-md);
    padding: 28px 0;
    position: relative;
    z-index: 2;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.feature-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-dark);
}
.feature-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- SECTION TITLES ---- */
.section-tag {
    display: inline-block;
    background: rgba(232,93,4,0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.section-title span { color: var(--primary); }
.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 550px;
}

/* ---- ARAÇ KART ---- */
.car-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}
.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.car-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light), #e8ecf5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.car-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.car-card:hover .car-card-img img { transform: scale(1.05); }

.car-card-img .no-img {
    font-size: 4rem;
    color: #C8D0E0;
}

.car-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.car-badge.ekonomi  { background: #E8F5E9; color: #2E7D32; }
.car-badge.konfor   { background: #E3F2FD; color: #1565C0; }
.car-badge.suv      { background: #FFF3E0; color: #E65100; }
.car-badge.luks     { background: #F3E5F5; color: #6A1B9A; }

.car-status {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}
.car-status.musait  { background: #E8F5E9; color: #2E7D32; }
.car-status.kirada  { background: #FFEBEE; color: #C62828; }
.car-status.bakimda { background: #FFF9C4; color: #F57F17; }

.car-card-body { padding: 20px; }
.car-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}
.car-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.car-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--text-body);
}
.car-spec i { color: var(--primary); font-size: 0.75rem; }

.car-price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: 14px;
}
.car-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}
.car-price small {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--bg-light); }
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrap img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.about-badge .num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
}
.about-badge .lbl { font-size: 0.8rem; opacity: 0.9; }

.check-list { list-style: none; padding: 0; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-dark);
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: var(--primary); width: 20px; }

/* ---- YORUMLAR ---- */
.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--accent); margin-bottom: 12px; }
.review-text {
    font-style: italic;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.review-avatar-placeholder {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.review-city { font-size: 0.78rem; color: var(--text-light); }

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D3561 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,93,4,0.15) 0%, transparent 70%);
}

/* ---- BLOG ---- */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex; align-items: center; justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; height: calc(100% - 200px); }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.blog-excerpt { font-size: 0.87rem; color: var(--text-light); flex: 1; }
.blog-link { color: var(--primary); font-weight: 600; font-size: 0.87rem; margin-top: 14px; display: inline-flex; align-items: center; gap: 5px; }
.blog-link:hover { gap: 8px; }

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--secondary), #2D3561);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
}
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero .breadcrumb { justify-content: center; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- REZERVASYON FORMU ---- */
.rez-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.rez-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--bg-light);
}
.rez-step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.rez-step-title { font-size: 1.1rem; font-weight: 700; }

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-control, .form-select {
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 11px 14px;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
    outline: none;
}

/* ---- PRICE SUMMARY ---- */
.price-summary {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.price-row:last-child { border-bottom: none; }
.price-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-display);
    color: var(--primary);
}

/* ---- ARAÇ DETAY ---- */
.car-detail-gallery img {
    border-radius: var(--radius);
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.car-detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.spec-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.spec-item i {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.spec-label { font-size: 0.75rem; color: var(--text-light); }
.spec-value { font-weight: 700; color: var(--text-dark); font-size: 0.9rem; }

/* ---- FOOTER ---- */
.footer { background: var(--secondary); color: white; margin-top: auto; }
.footer-top { padding: 60px 0 40px; }
.footer-brand h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.text-muted-light { color: rgba(255,255,255,0.5) !important; font-size: 0.85rem; }

.footer-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}
.footer-contact li i { color: var(--primary); width: 16px; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--primary-light); }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--primary-light); }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
    position: fixed;
    bottom: 80px; right: 22px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

.scroll-top {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    display: none; align-items: center; justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}
.scroll-top:hover { background: var(--primary); transform: translateY(-2px); }

/* ---- SAYFALAMA ---- */
.pagination-nav { margin: 40px 0; }
.pagination { gap: 6px; }
.page-link {
    border-radius: 10px !important;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark);
    padding: 8px 14px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.page-link:hover { background: var(--primary); border-color: var(--primary); color: white; }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ---- ALERTS ---- */
.alert { border-radius: var(--radius); border: none; font-family: var(--font-body); }
.alert-success { background: #E8F5E9; color: #2E7D32; }
.alert-danger  { background: #FFEBEE; color: #C62828; }
.alert-info    { background: #E3F2FD; color: #1565C0; }
.alert-warning { background: #FFF9C4; color: #F57F17; }

/* ---- İLETİŞİM ---- */
.contact-info-card {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
    height: 100%;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}
.contact-info-item h6 { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-bottom: 2px; }
.contact-info-item p { color: white; font-size: 0.95rem; margin: 0; }
.contact-info-item a { color: white; }

/* ---- RESPONSİF ---- */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 60px 0; }
    .hero-stats { gap: 20px; }
    .topbar { display: none; }
}
@media (max-width: 767px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .car-detail-spec-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .rez-card { padding: 20px; }
    .features-bar .row { text-align: center; }
    .feature-item { justify-content: center; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ---- EMPTY STATE ---- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}
.empty-state i { font-size: 4rem; color: var(--border-color); margin-bottom: 16px; }
.empty-state h4 { color: var(--text-dark); }
