/* ============================================
   ONX GRUP OTOMOTİV - Koyu mavi tema
   ============================================ */

:root {
    --navy-950: #060d18;
    --navy-900: #0a1628;
    --navy-800: #0d2137;
    --navy-700: #132f4c;
    --navy-600: #1a3a5c;
    --navy-500: #234a6f;
    --navy-400: #2d5a87;
    --accent: #e8b84c;
    --accent-light: #f0cd6e;
    --white: #f0f2f5;
    --gray-300: #b8c4d4;
    --gray-400: #8a9fb5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 5rem;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--navy-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Noise overlay - farklı doku */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(6, 13, 24, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 90, 135, 0.3);
    transition: background 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.logo-onx {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.logo-grup {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--gray-300);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--navy-500);
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--navy-600);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--navy-700);
    top: 50%;
    left: 30%;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(232, 184, 76, 0.4);
    border-radius: 2px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-title-accent {
    color: var(--accent);
    display: block;
    margin-left: -2px;
}

.hero-desc {
    max-width: 420px;
    font-size: 1.05rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--navy-900);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 184, 76, 0.35);
}

.btn-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background: var(--white);
    color: var(--navy-900);
}

/* ========== GÜVEN ROZETLERİ ========== */
.trust-bar {
    background: var(--navy-800);
    border-top: 1px solid rgba(45, 90, 135, 0.3);
    border-bottom: 1px solid rgba(45, 90, 135, 0.3);
    padding: 1rem 0;
}

.trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
    letter-spacing: 0.03em;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(232, 184, 76, 0.15);
    color: var(--accent);
    border-radius: 4px;
    font-size: 0.85rem;
}

/* ========== İSTATİSTİKLER ========== */
.stats-section {
    padding: 3.5rem 0;
    background: var(--navy-900);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.stat-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
}

.stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-number { font-size: 2.5rem; }
    .stat-suffix { font-size: 1.5rem; }
}

/* ========== ARAÇ GÖRSELLERİ - ANİMASYONLU ========== */
.vehicles-showcase {
    padding: 5rem 0;
    background: var(--navy-800);
    overflow: hidden;
}

.vehicles-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    perspective: 1200px;
}

.vehicle-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.vehicle-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.vehicle-card-1 { transition-delay: 0.1s; }
.vehicle-card-2 { transition-delay: 0.25s; }
.vehicle-card-3 { transition-delay: 0.4s; }

.vehicle-card:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.vehicle-card:hover .vehicle-card-img {
    transform: scale(1.08);
}

.vehicle-card:hover .vehicle-card-overlay {
    opacity: 0.75;
}

.vehicle-card:hover .vehicle-card-content {
    transform: translateY(0);
}

.vehicle-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, var(--navy-600), var(--navy-700));
}

.vehicle-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-600), var(--navy-700));
    opacity: 0;
    transition: opacity 0.3s;
}

.vehicle-card-placeholder.visible {
    opacity: 1;
}

.vehicle-card-placeholder span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    opacity: 0.8;
}

.vehicle-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 13, 24, 0.92) 0%, transparent 50%);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.vehicle-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.5rem;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-card-label {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.vehicle-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--white);
    margin: 0 0 0.25rem;
}

.vehicle-card-desc {
    font-size: 0.8rem;
    color: var(--gray-300);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 900px) {
    .vehicles-track {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .vehicle-card-1 { transition-delay: 0.1s; }
    .vehicle-card-2 { transition-delay: 0.2s; }
    .vehicle-card-3 { transition-delay: 0.3s; }
}

@media (max-width: 600px) {
    .vehicles-showcase {
        padding: 3.5rem 0;
    }
    .vehicles-track {
        margin-top: 1.5rem;
    }
}

/* ========== NASIL ÇALIŞIR ========== */
.how-section {
    padding: 5rem 0;
    background: var(--navy-900);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.how-step {
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    border: 1px solid rgba(45, 90, 135, 0.3);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.25s;
}

.how-step:hover {
    border-color: rgba(232, 184, 76, 0.3);
    transform: translateY(-2px);
}

.how-step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.9;
    display: block;
    margin-bottom: 0.75rem;
}

.how-step h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 0.88rem;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== MÜŞTERİ YORUMLARI ========== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--navy-800);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    border-radius: 4px;
    padding: 2rem;
    margin: 0;
    transition: all 0.25s;
}

.testimonial-card:hover {
    border-color: rgba(232, 184, 76, 0.3);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

/* ========== SSS / FAQ ========== */
.faq-section {
    padding: 5rem 0;
    background: var(--navy-900);
}

.faq-list {
    max-width: 720px;
    margin: 2rem auto 0;
}

.faq-item {
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    border: 1px solid rgba(45, 90, 135, 0.3);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(45, 90, 135, 0.5);
}

.faq-item[open] {
    border-color: rgba(232, 184, 76, 0.4);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    font-weight: 300;
    border-top: 1px solid rgba(45, 90, 135, 0.2);
}

.faq-item[open] .faq-answer {
    padding-top: 0.75rem;
}

/* ========== SLIDER ========== */
.slider-section {
    padding: 5rem 0;
    background: var(--navy-800);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.25s, border-color 0.25s;
}

.slide:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 184, 76, 0.4);
}

.slide-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 184, 76, 0.15);
    color: var(--accent);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.slide h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.slide p {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid var(--navy-400);
    background: var(--navy-700);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 5;
}

.slider-btn:hover {
    background: var(--accent);
    color: var(--navy-900);
    border-color: var(--accent);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy-500);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.slider-dots .dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ========== ADVANTAGES GRID ========== */
.advantages {
    padding: 5rem 0;
    background: var(--navy-900);
}

.advantages .section-title {
    margin-bottom: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.advantage-card {
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    border: 1px solid rgba(45, 90, 135, 0.3);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.25s;
}

.advantage-card:hover {
    border-color: rgba(232, 184, 76, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.advantage-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--white);
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
}

/* ========== BLOG ========== */
.blog-section {
    padding: 5rem 0;
    background: var(--navy-800);
}

.blog-section .section-title {
    margin-bottom: 0.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.25s;
}

.blog-card:hover {
    border-color: rgba(232, 184, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.blog-card-image {
    height: 160px;
    background: var(--navy-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-placeholder {
    font-size: 3rem;
    opacity: 0.5;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-date {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.blog-link:hover {
    color: var(--accent-light);
}

/* Blog sayfası – tam yazı içeriği */
.blog-page-section {
    background: var(--navy-900);
}

.blog-article {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(45, 90, 135, 0.35);
}

.blog-article:last-of-type {
    border-bottom: none;
}

.blog-article-header {
    margin-bottom: 1.5rem;
}

.blog-article-date {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.blog-article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
}

.blog-article-body {
    color: var(--gray-300);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
}

.blog-article-body p {
    margin-bottom: 1.25rem;
}

.blog-article-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 1.75rem 0 0.75rem;
}

.blog-article-cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-article-cta:hover {
    color: var(--accent-light);
}

.blog-page-cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    border-radius: 8px;
    margin-top: 2rem;
}

.blog-page-cta p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

/* ========== PAGE SECTIONS (Hakkımızda, Şubelerimiz, İletişim) ========== */
.page-main {
    padding-top: 5rem;
    min-height: 60vh;
}

.page-section {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}

.about-section {
    background: var(--navy-900);
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.about-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(232, 184, 76, 0.2);
    color: var(--accent);
    border-radius: 2px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Hakkımızda - Şube galerisi */
.about-branches-gallery {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(45, 90, 135, 0.3);
    text-align: center;
}

.about-branches-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.about-branches-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.branch-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
    margin: 0 auto;
}

.branch-gallery-item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 140px;
    flex-shrink: 0;
    aspect-ratio: 1;
    background: var(--navy-700);
    border: 1px solid rgba(45, 90, 135, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.branch-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    border-color: rgba(232, 184, 76, 0.4);
}

.branch-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.branch-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.5rem;
    background: linear-gradient(to top, rgba(6, 13, 24, 0.95), transparent);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (min-width: 640px) {
    .branch-gallery-item {
        width: 160px;
    }
    .branch-gallery-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 900px) {
    .branch-gallery-item {
        width: 180px;
    }
    .branch-gallery-grid {
        gap: 1.5rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .branch-gallery-item {
        width: calc(50% - 0.5rem);
        max-width: 160px;
    }
    .branch-gallery-grid {
        gap: 1rem;
    }
}

/* Hizmetler */
.services-section {
    background: var(--navy-800);
}

.services-intro {
    max-width: 640px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--gray-300);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.25s;
}

.service-card:hover {
    border-color: rgba(232, 184, 76, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.service-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.service-card h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.service-card p strong {
    color: var(--accent);
}

.services-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    border-radius: 4px;
}

.services-cta p {
    color: var(--gray-300);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* Şubelerimiz */
.branches-section {
    background: var(--navy-800);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.branch-card {
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.25s;
}

.branch-card:hover {
    border-color: rgba(232, 184, 76, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.branch-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.branch-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.branch-address,
.branch-city {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
    font-weight: 300;
}

.branch-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.branch-link:hover {
    color: var(--accent-light);
}

/* İletişim */
.contact-section {
    background: var(--navy-900);
}

.contact-intro {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--gray-300);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-block {
    text-align: center;
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    border: 1px solid rgba(45, 90, 135, 0.35);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.contact-block:hover {
    border-color: rgba(232, 184, 76, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.contact-block-primary {
    border-color: rgba(232, 184, 76, 0.25);
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
}

.contact-block-primary:hover {
    border-color: rgba(232, 184, 76, 0.5);
}

.contact-icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-block h3 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.contact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.contact-number:hover {
    color: var(--accent-light);
}

.contact-block a:not(.contact-number) {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-block a:not(.contact-number):hover {
    color: var(--accent-light);
}

.contact-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

.contact-address {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-link {
    font-size: 0.85rem !important;
}

.contact-hours {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    border: 1px solid rgba(45, 90, 135, 0.35);
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hours-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 2rem;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--gray-300);
}

.contact-hours-grid span:nth-child(odd) {
    color: var(--gray-400);
}

.contact-cta {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    border: 1px solid rgba(45, 90, 135, 0.4);
    border-radius: 8px;
    text-align: center;
}

.contact-cta .cta-title {
    margin-bottom: 0.5rem;
}

.contact-cta .cta-text {
    margin-bottom: 1.25rem;
}

.contact-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: #25d366;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ========== CTA ========== */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    border-top: 1px solid rgba(45, 90, 135, 0.4);
    text-align: center;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

/* ========== FOOTER ========== */
.footer {
    padding: 2.5rem 0 0;
    background: var(--navy-950);
    border-top: 1px solid rgba(45, 90, 135, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-col {
    text-align: left;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link-list a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.2s;
}

.footer-link-list a:hover {
    color: var(--accent);
}

.footer-contact-item {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 300;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item .footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item .footer-link:hover {
    color: var(--accent);
}

.footer-icon {
    margin-right: 0.35rem;
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(45, 90, 135, 0.25);
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 300;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-link-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 1rem;
    }
}

/* ========== WHATSAPP FLOAT ========== */
/* Canlı Destek - sol alt */
.live-support-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    padding: 0.75rem 1.25rem;
    background: var(--navy-700);
    border: 1px solid rgba(232, 184, 76, 0.4);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.25s;
    cursor: pointer;
    font-family: inherit;
}

button.live-support-float {
    border: 1px solid rgba(232, 184, 76, 0.4);
}

.live-support-float:hover {
    background: var(--accent);
    color: var(--navy-900);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 184, 76, 0.4);
}

.live-support-icon {
    font-size: 1.25rem;
}

.live-support-text {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .live-support-text {
        display: none;
    }
    .live-support-float {
        padding: 0.75rem 1rem;
        border-radius: 50%;
    }
}

/* Canlı Destek - Chat paneli */
.chat-panel {
    position: fixed;
    bottom: 80px;
    left: 24px;
    width: 340px;
    max-width: calc(100vw - 48px);
    max-height: 400px;
    background: var(--navy-800);
    border: 1px solid rgba(45, 90, 135, 0.5);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.chat-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--navy-700);
    border-bottom: 1px solid rgba(45, 90, 135, 0.3);
    border-radius: 12px 12px 0 0;
}

.chat-panel-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.chat-panel-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.chat-panel-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.chat-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    min-height: 80px;
}

.chat-message {
    margin-bottom: 0.75rem;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.chat-message-bot p {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: var(--navy-700);
    border: 1px solid rgba(45, 90, 135, 0.3);
    border-radius: 8px 8px 8px 4px;
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.5;
    margin: 0;
}

.chat-message-user {
    text-align: right;
}

.chat-message-user p {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: var(--accent);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px 8px 4px 8px;
    font-size: 0.9rem;
    color: var(--navy-900);
    line-height: 1.5;
    margin: 0;
}

.chat-panel-footer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(45, 90, 135, 0.3);
    border-radius: 0 0 12px 12px;
    background: var(--navy-800);
}

.chat-input {
    flex: 1;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--white);
    background: var(--navy-700);
    border: 1px solid rgba(45, 90, 135, 0.4);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input::placeholder {
    color: var(--gray-400);
}

.chat-input:focus {
    border-color: var(--accent);
}

.chat-send {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--navy-900);
    background: var(--accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.chat-send:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .chat-panel {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 76px;
    }
}

/* WhatsApp - sağ alt */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(45, 90, 135, 0.3);
        margin-top: 0.5rem;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(45, 90, 135, 0.2);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .slide {
        flex: 0 0 280px;
    }

    .slider-wrapper {
        padding: 0 2.5rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 260px;
    }
}
