/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Tasarım Sistemi & Premium Kök Değişkenler */
:root {
    --primary-red: #E51937;
    --primary-red-hover: #C2112A;
    --primary-red-glow: rgba(229, 25, 55, 0.2);
    
    --bg-light-100: #FFFFFF;
    --bg-light-200: #F8F9FA;
    --bg-light-300: #F1F3F5;
    --bg-light-400: #E9ECEF;
    --bg-dark-200: #F8F9FA; /* Alternating section background color */
    
    --text-dark-100: #05141F;
    --text-dark-200: #1A2530;
    --text-dark-300: #4A5568;
    --text-dark-400: #718096;
    
    --border-color: #E2E8F0;
    --border-color-hover: #CBD5E1;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --shadow-sm: 0 2px 8px rgba(5, 20, 31, 0.03);
    --shadow-md: 0 8px 24px rgba(5, 20, 31, 0.05);
    --shadow-lg: 0 16px 48px rgba(5, 20, 31, 0.08);
    
    --card-radius: 4px; /* Keskin, teknolojik, kurumsal otomotiv hissi */
    --btn-radius: 4px;
}

/* Global Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light-100);
    color: var(--text-dark-200);
    font-family: var(--font-body);
    line-height: 1.8; /* Daha rahat ve premium okunabilirlik */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark-100);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: var(--font-body);
    border: none;
    background: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Yardımcı Sınıfları */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 110px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark-100);
    text-transform: uppercase; /* Kurumsal netlik */
}

.section-title span {
    color: var(--primary-red);
}

.section-desc {
    color: var(--text-dark-300);
    max-width: 650px;
    margin: 0 auto;
    font-size: 16.5px;
    font-weight: 400;
}

/* Premium Flat Buton Tasarımları (Kia Resmi Stil) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--btn-radius);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--text-dark-100);
    color: var(--bg-light-100);
    border: 1px solid var(--text-dark-100);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark-100);
    border: 1px solid var(--text-dark-100);
}

.btn-secondary:hover {
    background-color: var(--text-dark-100);
    color: var(--bg-light-100);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* Header & Navigasyon */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(180%);
    transition: var(--transition-normal);
}

header.scrolled {
    background-color: #FFFFFF;
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 105px; /* Spaced out, breathing header */
}

/* Logo Stili (Daha Büyük ve Premium) */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-dark-100);
}

.logo svg {
    color: var(--text-dark-100);
    width: 115px; /* Logo boyutu büyütüldü */
    height: 34px;
    transition: var(--transition-fast);
}

.logo:hover svg {
    color: var(--primary-red);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    border-left: 2px solid var(--border-color);
    padding-left: 16px;
    text-transform: uppercase;
    color: var(--text-dark-300);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 28px); /* Dinamik genişlik adaptasyonu */
    list-style: none;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark-200);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
}

/* Link Hover Efekti: Kırmızı Çizgi */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-fast);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark-100);
    transition: var(--transition-normal);
}

/* Hero Bölümü (Açık Renkli Kurumsal Overlay & Kia Görseli) */
.hero {
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 105px 0 0 0; /* Accounts for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Center-aligned Premium Hero Section */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dark-300);
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-dark-100);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-dark-300);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Premium Minimalist Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px 20px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.stats-item {
    border-right: 1px solid var(--border-color);
}

.stats-item:last-child {
    border-right: none;
}

.stats-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark-100);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stats-item p {
    font-size: 13px;
    color: var(--text-dark-300);
    font-weight: 500;
    margin: 0 10px;
}

/* Hakkımızda Bölümü */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark-100);
    line-height: 1.3;
}

.about-text p {
    color: var(--text-dark-300);
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-dark-200);
    font-size: 14.5px;
}

.about-feat-item i {
    color: var(--primary-red);
    font-size: 18px;
}

.about-image {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--card-radius);
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Hizmetlerimiz Bölümü */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 45px;
    transition: var(--transition-fast);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--text-dark-100);
}

.service-icon {
    width: 58px;
    height: 58px;
    background-color: var(--bg-light-200);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark-100);
    font-size: 22px;
    margin-bottom: 28px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--text-dark-100);
    color: var(--bg-light-100);
    border-color: var(--text-dark-100);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--text-dark-100);
}

.service-card p {
    color: var(--text-dark-300);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 800;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Model Family Services (Modellere Göre Özel Servis) */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 35px;
    transition: var(--transition-fast);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.model-card:hover {
    border-color: var(--text-dark-100);
}

.model-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    background-color: var(--bg-light-300);
    color: var(--text-dark-200);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.model-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark-100);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.model-tech {
    color: var(--primary-red);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.model-card p {
    font-size: 14px;
    color: var(--text-dark-300);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.model-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark-100);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.model-btn i {
    transition: var(--transition-fast);
}

.model-card:hover .model-btn {
    color: var(--primary-red);
}

.model-card:hover .model-btn i {
    transform: translateX(4px);
}

/* Neden Bizi Tercih Etmelisiniz */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(229, 25, 55, 0.06);
    border-radius: 50%;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 20px auto;
}

.why-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-card p {
    color: var(--text-dark-300);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Çalışma Sürecimiz */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.process-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-light-100);
    border: 2px solid var(--border-color);
    color: var(--text-dark-100);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .process-num {
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red-glow);
    transform: scale(1.05);
}

.process-step h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.process-step p {
    color: var(--text-dark-300);
    font-size: 14px;
}

/* Yaptığımız İşler (Galeri) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.gallery-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light-200);
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 24px;
}

.gallery-info h3 {
    font-size: 18.5px;
    margin-bottom: 8px;
    font-weight: 800;
}

.gallery-info p {
    color: var(--text-dark-300);
    font-size: 14.5px;
}

/* Müşteri Yorumları */
.comments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.comment-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.comment-stars {
    color: #FFCC00;
    font-size: 14px;
    margin-bottom: 14px;
}

.comment-text {
    color: var(--text-dark-200);
    font-style: italic;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--bg-light-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-weight: 700;
    border: 1px solid var(--border-color);
}

.author-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark-100);
}

.author-car {
    font-size: 12.5px;
    color: var(--text-dark-400);
}

/* SSS Akordeon */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--text-dark-100);
}

.faq-toggle-icon {
    font-size: 16px;
    color: var(--primary-red);
    transition: var(--transition-normal);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    padding: 0 28px;
    color: var(--text-dark-300);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

/* Blog Bölümü */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-md);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--btn-radius);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-dark-100);
}

.blog-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.blog-info p {
    color: var(--text-dark-300);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.blog-date {
    font-size: 12.5px;
    color: var(--text-dark-400);
}

.blog-read-more {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
}

/* İletişim Bölümü */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-info-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(229, 25, 55, 0.06);
    border-radius: 4px;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.contact-info-content p {
    color: var(--text-dark-300);
    font-size: 14px;
}

.working-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.working-hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.working-hours-table tr:last-child {
    border-bottom: none;
}

.working-hours-table td {
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark-300);
}

.working-hours-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--text-dark-100);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

/* Footer */
/* Footer CTA Banner (Alt Banner) */
.footer-cta-banner {
    background-color: #0d1e2d;
    background-image: linear-gradient(135deg, #05141f 0%, #0d1e2d 100%);
    padding: 75px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-subtitle {
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-cta-title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-cta-desc {
    color: #A0AEC0;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 15px;
    line-height: 1.7;
}

.footer-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

footer {
    background-color: #05141f;
    color: #E2E8F0;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 0 0 40px 0;
}

footer .logo {
    color: #FFFFFF;
}

footer .logo svg {
    color: #FFFFFF;
}

footer .logo-text {
    border-left-color: rgba(255,255,255,0.15);
    color: #A0AEC0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-desc {
    color: #A0AEC0;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-title {
    font-size: 17px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #A0AEC0;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #718096;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #718096;
}

.footer-admin-btn {
    color: #718096;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-admin-btn:hover {
    color: #FFFFFF;
}

/* Modallar */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(5, 20, 31, 0.65);
    backdrop-filter: blur(6px);
}

.modal-container {
    position: relative;
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background-color: var(--bg-light-200);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-dark-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.modal-header-img {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.modal-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-tag {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.modal-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-dark-100);
    line-height: 1.25;
}

.modal-meta {
    display: flex;
    gap: 20px;
    font-size: 13.5px;
    color: var(--text-dark-400);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 28px;
}

.modal-rich-text h2, 
.modal-rich-text h3 {
    margin-top: 30px;
    margin-bottom: 14px;
    font-size: 22px;
}

.modal-rich-text p {
    color: var(--text-dark-200);
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.modal-rich-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-rich-text li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Şifre Korumalı Admin Paneli */
.admin-login-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.admin-login-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.login-card {
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 40px;
    width: 100%;
    max-width: 380px;
    z-index: 2;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.login-desc {
    color: var(--text-dark-300);
    font-size: 13.5px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark-100);
}

.form-input {
    width: 100%;
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 10px 14px;
    color: var(--text-dark-100);
    font-family: var(--font-body);
    font-size: 14.5px;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary-red);
    outline: none;
    box-shadow: 0 0 8px rgba(229, 25, 55, 0.1);
}

/* Floating Actions Mobil */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border-color);
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--bg-light-100);
}

.mobile-action-btn.call {
    background-color: var(--primary-red);
}

.mobile-action-btn.whatsapp {
    background-color: #25D366;
}

/* Responsive Kırılma Noktaları */
@media (max-width: 1024px) {
    .section-padding {
        padding: 75px 0;
    }
    .hero {
        height: auto;
        padding: 140px 0 80px 0;
    }
    .hero-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-btns {
        justify-content: center;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stats-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    .stats-item:last-child,
    .stats-item:nth-last-child(2) {
        border-bottom: none;
        padding-bottom: 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-image img {
        height: 320px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .comments-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Header collapse to mobile navigation at 1024px to prevent layout wrap bug */
    .nav-container {
        height: 80px;
    }
    .logo svg {
        width: 105px;
        height: 30px;
    }
    .logo-text {
        font-size: 13.5px;
        padding-left: 12px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        padding: 25px;
        gap: 16px;
        text-align: center;
        z-index: 998;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-actions .btn {
        display: none;
    }
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobil Uyumlu Açılır Menü (Dropdown) Düzenlemesi */
    .nav-dropdown-wrapper {
        width: 100%;
    }
    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light-200);
        width: 100%;
        opacity: 1;
        visibility: visible;
        padding: 8px 0;
        margin-top: 8px;
        border: none;
        border-radius: 4px;
        transition: none;
    }
    .nav-dropdown a {
        text-align: center;
        padding: 10px 20px;
        font-size: 13px;
    }
    .nav-dropdown a:hover {
        padding-left: 20px; /* Mobilde sola kayma efektini sıfırla */
    }
}

@media (max-width: 768px) {
    .logo svg {
        width: 95px;
        height: 28px;
    }
    .logo-text {
        font-size: 13px;
    }
    .hero {
        height: auto;
        min-height: auto;
        text-align: center;
        padding: 130px 0 60px 0;
    }
    .hero::before {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 100%);
    }
    .hero-title {
        font-size: 30px;
    }
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stats-item {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
    }
    .stats-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .process-timeline {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 10px 5px 25px 5px;
        scrollbar-width: none;
        margin-top: 35px;
    }
    .process-timeline::-webkit-scrollbar {
        display: none;
    }
    .process-timeline::before {
        display: none;
    }
    .process-step {
        flex: 0 0 80%;
        scroll-snap-align: start;
        margin-bottom: 0;
        padding: 24px;
        background-color: var(--bg-light-100);
        border: 1px solid var(--border-color);
        border-radius: var(--card-radius);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .process-num {
        margin: 0 0 16px 0;
        flex-shrink: 0;
    }
    .why-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 10px 5px 25px 5px;
        scrollbar-width: none;
    }
    .why-grid::-webkit-scrollbar {
        display: none;
    }
    .why-grid .why-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        margin-bottom: 0;
        box-shadow: var(--shadow-sm);
    }
    .comments-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mobile-action-bar {
        display: grid;
    }
    body {
        padding-bottom: 52px;
    }
    .models-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 10px 5px 25px 5px;
        scrollbar-width: none;
    }
    .models-grid::-webkit-scrollbar {
        display: none;
    }
    .models-grid .model-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-bottom: 0;
        box-shadow: var(--shadow-md);
    }
}

/* Sayfa Kaydırma Giriş Efektleri */
.hidden-element {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease-out;
}

.visible-element {
    opacity: 1;
    transform: translateY(0);
}

/* Carousel / Slider Global Styles */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 15px 5px;
    scrollbar-width: none; /* Firefox */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    height: auto;
}

@media (max-width: 1024px) {
    .carousel-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 100%;
    }
    .carousel-container {
        gap: 20px;
    }
}

/* Slider Kontrol Butonları */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 45px;
}

.carousel-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light-100);
    color: var(--text-dark-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.carousel-control-btn:hover {
    background-color: var(--text-dark-100);
    color: var(--bg-light-100);
    border-color: var(--text-dark-100);
}


/* Header Dropdown Menü */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1010;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
    width: 100%;
    padding: 0;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark-200);
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    transition: var(--transition-fast);
}

.nav-dropdown a::after {
    display: none; /* Alt çizgiyi kaldır */
}

.nav-dropdown a:hover {
    background-color: var(--bg-light-200);
    color: var(--primary-red);
    padding-left: 24px;
}

/* Navigasyon Boşluk ve Taşma Engeli */
.nav-links {
    gap: clamp(10px, 1.2vw, 22px);
}

.nav-links a {
    font-size: 13.5px;
    white-space: nowrap;
}

/* Online Servis Randevu Portalı */
.appointment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .appointment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Geniş Kurumsal Konteyner (Header İçin) */
.container-wide {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* İç Sayfa Header Banner Tasarımı (Kia Kurumsal Duruş) */
.page-banner {
    padding: 120px 0 20px 0; /* Dikey olarak çok daha kompakt ve modern */
    background: linear-gradient(135deg, #05141F 0%, #030a10 100%); /* Kia Resmi Koyu Tonu ve Koyu Gece Mavisi */
    border-bottom: 3px solid var(--primary-red); /* Kia Kırmızı Çizgi İmzası */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% -20%, rgba(229, 25, 55, 0.15) 0%, transparent 65%); /* Premium Kia Kırmızı Tepe Aydınlatması */
    pointer-events: none;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-tag {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 6px;
    display: inline-block;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 28px; /* Daha derli toplu ve kurumsal */
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.page-banner-desc {
    font-family: var(--font-body);
    font-size: 13.5px; /* Kısa ve zarif */
    color: #CBD5E1;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Detay Sayfası Tasarım Destek Sınıfları */
.blog-detail-rich-text h2, 
.blog-detail-rich-text h3 {
    font-family: var(--font-heading);
    color: var(--text-dark-100);
    font-weight: 800;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-rich-text p {
    font-size: 15.5px;
    color: var(--text-dark-200);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-detail-rich-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: square;
}

.blog-detail-rich-text li {
    font-size: 15px;
    color: var(--text-dark-200);
    margin-bottom: 8px;
}

.blog-detail-rich-text strong {
    color: var(--text-dark-100);
    font-weight: 700;
}

.working-hours-table {
    width: 100%;
    border-collapse: collapse;
}

.working-hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-dark-300);
}

.working-hours-table tr:last-child td {
    border-bottom: none;
}

.working-hours-table td:first-child {
    font-weight: 700;
    color: var(--text-dark-100);
}

.working-hours-table td:last-child {
    text-align: right;
}

@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Blog Sayfası 3x2 Grid Karusel (Kullanıcı Talebi) */
.blog-slider-wrapper {
    position: relative;
    width: 100%;
}

.blog-slider-container {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
    height: 1060px; /* 2 satır blog kartı + boşluk için tam yükseklik */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    scrollbar-width: none;
    padding: 10px 5px;
}

.blog-slider-container::-webkit-scrollbar {
    display: none;
}

.blog-slider-container .blog-card {
    width: calc(33.333% - 20px);
    height: 500px; /* Kartların taşmasını önlemek için sabit dikey yükseklik */
    flex: 0 0 auto;
    scroll-snap-align: start;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-light-100);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.blog-slider-container .blog-img-wrapper {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.blog-slider-container .blog-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

@media (max-width: 1024px) {
    .blog-slider-container {
        height: 1000px;
    }
    .blog-slider-container .blog-card {
        width: calc(50% - 15px);
        height: 470px;
    }
}

@media (max-width: 768px) {
    .blog-slider-container {
        height: auto;
        flex-flow: row nowrap;
        overflow-x: auto;
        padding-bottom: 25px;
    }
    .blog-slider-container .blog-card {
        width: 85%;
        height: auto;
        flex: 0 0 auto;
    }
}
