/* ============================================
   Life Filo - Ana Stil Dosyası
   ============================================ */

/* Google Fonts - Montserrat (logo & başlıklar) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --accent: #E63946;
    --accent-dark: #C5303C;
    --accent-light: #FDE8EA;
    --text-primary: #1A1A2E;
    --bg-light: #F5F7FA;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-600: #6C757D;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Layout & Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

/* ---- Grid System ---- */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Üst Bilgi Bandı (Sabit) ---- */
.top-bar {
    background: var(--accent);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.top-bar .top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar .top-bar-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-bar .top-bar-content span svg {
    flex-shrink: 0;
    stroke: var(--white);
}

/* ---- Header ---- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo .logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo .logo-name span {
    color: var(--accent);
}

.logo .logo-slogan {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Footer logo override */
.site-footer .logo .logo-name {
    color: var(--white);
}

.site-footer .logo .logo-slogan {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Navigation ---- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: color 0.2s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    background: var(--gray-100);
}

.header-actions .btn-icon:hover {
    background: var(--gray-200);
}

.header-actions .btn-icon svg {
    width: 20px;
    height: 20px;
}

.btn-whatsapp-header {
    background: #25D366 !important;
    color: var(--white);
}

.btn-whatsapp-header:hover {
    background: #1DA851 !important;
}

.btn-whatsapp-header svg {
    fill: var(--white);
}

.btn-call-header {
    background: var(--accent) !important;
    color: var(--white);
}

.btn-call-header:hover {
    background: var(--accent-dark) !important;
}

.btn-call-header svg {
    stroke: var(--white);
}

/* ---- Hamburger Menu ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1DA851;
}

.btn-whatsapp svg {
    fill: var(--white);
}

.btn-call {
    background: var(--accent);
    color: var(--white);
}

.btn-call:hover {
    background: var(--accent-dark);
}

.btn-call svg {
    stroke: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ---- USP Highlights ---- */
.usp-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.usp-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.usp-item .usp-icon {
    font-size: 1.1rem;
}

/* Section USP cards (non-hero) */
.usp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.usp-card {
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.usp-card .usp-icon {
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
}

.usp-card .usp-icon svg {
    stroke: var(--white);
    flex-shrink: 0;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88), rgba(230, 57, 70, 0.65)),
                url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0 80px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Accordion (Hero & SSS) ---- */
.accordion {
    margin-top: 24px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
    border: none;
    background: none;
    color: inherit;
    width: 100%;
    text-align: left;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 20px 16px;
}

.sss-accordion .accordion-body {
    max-height: 0;
    overflow: hidden;
}

.sss-accordion .accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 20px 16px;
}

/* SSS sayfası accordion (koyu olmayan) */
.sss-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--text-primary);
}

.sss-accordion .accordion-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: inherit;
}

.sss-accordion .accordion-header:hover {
    background: var(--gray-100);
}

/* ---- Feature Cards ---- */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Inline Feature Cards (compact, horizontal) */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: var(--shadow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-badge svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ---- Feature Card Toggle (Compact) ---- */
.feature-cards.feature-cards-compact {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: unset !important;
    gap: 16px !important;
    max-width: 100% !important;
    counter-reset: none !important;
}
.feature-card.feature-card-toggle {
    padding: 0 !important;
    cursor: pointer;
    user-select: none;
    display: block !important;
    flex-direction: unset !important;
    text-align: left !important;
}
.feature-card.feature-card-toggle::before {
    display: none !important;
}
.feature-card-toggle .feature-card-header {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}
.feature-card-toggle .feature-card-header .icon {
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-card-toggle .feature-card-header .icon svg {
    width: 22px;
    height: 22px;
}
.feature-card-toggle .feature-card-header h3 {
    margin-bottom: 0;
    font-size: 0.95rem;
    flex: 1;
}
.feature-toggle-icon {
    font-size: 12px;
    color: var(--gray-600);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.feature-card-toggle.active .feature-toggle-icon {
    transform: rotate(180deg);
}
.feature-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.feature-card-toggle.active .feature-card-body {
    max-height: 200px;
    padding: 0 20px 16px;
}
.feature-card-body p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ---- Vehicle Cards ---- */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    overflow: hidden;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 100%;
    width: 100%;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vehicle-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    max-width: 100%;
    flex-shrink: 0;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.vehicle-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-category {
    background: var(--accent);
    color: var(--white);
}

.badge-insurance {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.badge-office {
    background: #FFF3CD;
    color: #856404;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
}

.vehicle-card-body {
    padding: 16px;
}

.vehicle-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vehicle-specs span svg {
    flex-shrink: 0;
    stroke: var(--accent);
}

.spec-item .spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.spec-item .spec-icon svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.vehicle-prices {
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
    margin-bottom: 12px;
}

.vehicle-prices .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.vehicle-prices .price-row .label {
    color: var(--gray-600);
}

.vehicle-prices .price-row .value {
    font-weight: 700;
    color: var(--text-primary);
}

.vehicle-prices .price-row .value.highlight {
    color: var(--accent);
    font-size: 1.1rem;
}

.vehicle-card-actions {
    display: flex;
    gap: 8px;
}

.vehicle-card-actions .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.vehicle-card-actions .btn svg {
    flex-shrink: 0;
}

/* ---- Filter Bar ---- */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.filter-group select {
    padding: 8px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.filter-group select:focus {
    border-color: var(--accent);
}

.filter-toggle {
    display: none;
    width: 100%;
    padding: 10px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
}

.btn-reset {
    margin-left: auto;
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.btn-reset:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

/* ---- Info Box (Depozito vb.) ---- */
.info-box {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 24px 28px;
    margin: 40px 0;
}

.info-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.info-box p {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* ---- CTA Section ---- */
.cta-section {
    text-align: center;
    padding: 40px 0;
}

.cta-section .btn {
    min-width: 220px;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ---- Forms ---- */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: var(--accent);
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-group.has-error .form-control {
    border-color: var(--accent);
}

/* ---- Page Content (Kurumsal, Gizlilik, Koşullar vb.) ---- */
.page-header {
    background: linear-gradient(135deg, var(--text-primary), #2d2d4e);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
}

.page-header p {
    margin-top: 8px;
    opacity: 0.8;
    font-size: 1rem;
}

.page-content {
    padding: 48px 0;
}

.page-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 32px 0 12px;
    color: var(--text-primary);
}

.page-content h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 24px 0 8px;
    color: var(--text-primary);
}

.page-content p {
    margin-bottom: 14px;
    color: #444;
    line-height: 1.75;
}

.page-content ul,
.page-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 6px;
    color: #444;
    line-height: 1.6;
}

/* ---- Steps List (Depozito/İade) ---- */
.steps-list {
    max-width: 720px;
    margin: 32px auto 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-content h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.step-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.65;
}

/* ---- Stats Section (Hakkımızda) ---- */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--accent);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-info-item .icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 32px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ---- Vehicle Detail Page ---- */
.vehicle-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.vehicle-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vehicle-detail-image img {
    width: 100%;
    height: auto;
}

.vehicle-detail-image {
    position: relative;
}

.vehicle-detail-info h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.vehicle-detail-brand {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 16px;
}

.vehicle-detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vehicle-detail-info .brand {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.vehicle-detail-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 0.9rem;
}

.spec-item .spec-label {
    color: var(--gray-600);
}

.spec-item .spec-value {
    font-weight: 700;
    margin-left: auto;
}

.vehicle-detail-pricing {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.vehicle-detail-pricing .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.vehicle-detail-pricing .price-row:last-child {
    border-bottom: none;
}

.vehicle-detail-pricing .price-row .label {
    color: var(--gray-600);
}

.vehicle-detail-pricing .price-row .value {
    font-weight: 700;
    color: var(--text-primary);
}

.vehicle-detail-pricing .price-row .value.highlight {
    color: var(--accent);
    font-size: 1.2rem;
}

.vehicle-detail-pricing .price-row-office {
    background: #FFF3CD;
    margin: 0 -24px;
    padding: 10px 24px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-bottom: none;
}

.vehicle-detail-pricing .price-row-office .label {
    color: #856404;
    font-weight: 600;
}

.vehicle-detail-pricing .price-row-office .office-price {
    color: #856404;
    font-size: 1.1rem;
}

.vehicle-detail-pricing .price-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-detail-pricing .price-line:last-child {
    border-bottom: none;
}

.vehicle-detail-pricing .price-line .amount {
    font-weight: 700;
}

.vehicle-detail-pricing .price-line .amount.main-price {
    color: var(--accent);
    font-size: 1.2rem;
}

.vehicle-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.vehicle-detail-features {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.vehicle-detail-features h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.vehicle-detail-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.vehicle-detail-features ul li {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.vehicle-detail-actions .btn {
    flex: 1;
}

.related-vehicles {
    margin-top: 60px;
}

/* ---- Admin Panel ---- */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: var(--text-primary);
    color: var(--white);
    padding: 24px 0;
    flex-shrink: 0;
}

.admin-sidebar h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0 20px;
    margin-bottom: 24px;
}

.admin-sidebar nav a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-main {
    flex: 1;
    padding: 32px;
    background: var(--bg-light);
}

.admin-main h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.admin-table th {
    font-weight: 700;
    background: var(--gray-100);
    color: var(--text-primary);
}

.admin-table tr:hover {
    background: var(--gray-100);
}

.admin-actions {
    display: flex;
    gap: 8px;
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.hidden { display: none !important; }

/* ============================================
   Responsive - 768px Breakpoint
   ============================================ */
@media (max-width: 768px) {

    /* Grid → single column */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Vehicle cards → single column */
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    /* Feature cards → single column */
    .feature-cards {
        grid-template-columns: 1fr;
    }
    .feature-cards.feature-cards-compact {
        grid-template-columns: 1fr !important;
    }

    .feature-badges {
        gap: 10px;
    }

    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* Navigation → mobile menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    /* Top bar responsive */
    .top-bar .top-bar-content {
        gap: 12px;
        font-size: 0.75rem;
    }

    /* USP responsive */
    .usp-bar {
        gap: 10px;
    }

    .usp-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .usp-cards {
        grid-template-columns: 1fr;
    }

    /* Compact hero */
    .hero {
        padding: 60px 0 48px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* Full-width CTA buttons */
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-section .btn {
        width: 100%;
        min-width: auto;
    }

    /* Collapsible filter bar */
    .filter-toggle {
        display: block;
    }

    .filter-bar-inner {
        display: none;
        flex-direction: column;
        align-items: stretch;
        margin-top: 12px;
    }

    .filter-bar-inner.active {
        display: flex;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        width: 100%;
    }

    .btn-reset {
        margin-left: 0;
        width: 100%;
    }

    /* Footer → stacked columns */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* Contact page → stacked */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Vehicle detail → stacked */
    .vehicle-detail {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vehicle-detail-features ul {
        grid-template-columns: 1fr;
    }

    .vehicle-detail-actions {
        flex-direction: column;
    }

    .vehicle-detail-actions .btn {
        width: 100%;
    }

    /* Section title smaller */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    /* Page header compact */
    .page-header {
        padding: 32px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    /* Stats responsive */
    .stats-grid {
        gap: 24px;
    }

    .stat-item .number {
        font-size: 1.8rem;
    }

    /* Admin responsive */
    .admin-sidebar {
        width: 100%;
        position: static;
    }

    .admin-layout {
        flex-direction: column;
    }

    .admin-main {
        padding: 20px;
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 8px 10px;
    }
}

/* Form Alert */
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
    animation: fadeIn .3s ease;
}
.form-alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}
.form-alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
