/* 3Y Otomotiv Homepage - Premium Industrial Theme */
/* Red #c41e3a, Black #0a0a0c, Metallic #6b7280, #9ca3af */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --home-red: #c41e3a;
    --home-red-dim: rgba(196, 30, 58, 0.85);
    --home-black: #0a0a0c;
    --home-dark: #141418;
    --home-gray: #6b7280;
    --home-gray-light: #9ca3af;
    --home-silver: #d1d5db;
    --home-white: #fafafa;
}

/* Unified Nav - tüm sayfalarda */
.nav-unified {
    padding: 20px 0;
}

.nav-unified-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.nav-unified-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-unified-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fafafa;
    font-size: 0.9rem;
    opacity: 0.95;
}

.nav-unified-contact-item:hover {
    opacity: 1;
}

.nav-unified-contact-item svg {
    flex-shrink: 0;
}

.nav-unified-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-unified-logo {
    display: flex;
    align-items: center;
    line-height: 1.1;
    color: #fff;
}

.nav-unified-logo-img {
    height: 168px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-unified-links-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-unified-line {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin-bottom: 10px;
}

.nav-unified-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-unified-links a,
.nav-unified-link {
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-unified-link {
    background: none;
    border: none;
    cursor: pointer;
}

.nav-unified-item {
    position: relative;
}

.nav-unified-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10,10,12,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px;
    min-width: 160px;
    display: none;
}

.nav-unified-item:hover .nav-unified-dropdown {
    display: block;
}

.nav-unified-dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #fafafa;
}

.nav-unified-dropdown a:hover {
    background: rgba(255,255,255,0.08);
}

.nav-unified-ctas {
    display: flex;
    gap: 12px;
}

.nav-unified-cta {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-unified-cta-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.nav-unified-cta-primary {
    background: var(--home-red);
    color: #fff;
    border: 2px solid var(--home-red);
}

.nav-unified-toggle {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.35rem;
    z-index: 600;
    min-width: 48px;
    min-height: 48px;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-unified-toggle:hover {
    background: rgba(255,255,255,0.3);
}

/* Hero - Nav overlay (ana sayfa + diğer sayfalar page-hero) */
.home-hero-nav,
.page-hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 20px 0 0;
}

.page-hero-nav .nav-unified-contact-item,
.page-hero-nav .nav-unified-links a,
.page-hero-nav .nav-unified-link {
    color: #fafafa;
}

/* Site header (diğer sayfalar) */
.site-header-unified {
    background: linear-gradient(180deg, rgba(10,10,12,0.98) 0%, rgba(10,10,12,0.95) 100%);
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header-unified .nav-unified-contact-item,
.site-header-unified .nav-unified-links a,
.site-header-unified .nav-unified-link {
    color: #fafafa;
}

@media (max-width: 900px) {
    .nav-unified-contact { display: none; }
    .nav-unified-links-wrap { display: none; }
    .nav-unified-ctas { display: none; }
    .nav-unified-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-unified-main {
        flex: 1;
        padding-right: 0;
    }
    .nav-unified-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .nav-unified-logo-img {
        height: 90px;
    }
}

/* Mobil menü overlay - tam ekran açılır panel */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.nav-mobile-overlay.is-open {
    display: block;
    pointer-events: auto;
}

.nav-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-mobile-overlay.is-open .nav-mobile-backdrop {
    opacity: 1;
}

.nav-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100%;
    background: #0f1319;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.nav-mobile-overlay.is-open .nav-mobile-panel {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.nav-mobile-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-mobile-close {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

.nav-mobile-close:hover {
    background: rgba(255,255,255,0.2);
}

.nav-mobile-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-mobile-links > a {
    display: block;
    padding: 14px 16px;
    color: #fafafa;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    transition: background 0.2s;
}

.nav-mobile-links > a:hover {
    background: rgba(255,255,255,0.08);
}

.nav-mobile-item {
    border-radius: 10px;
    overflow: hidden;
}

.nav-mobile-expand {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: none;
    border: none;
    color: #fafafa;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-mobile-expand::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.nav-mobile-item.is-open .nav-mobile-expand::after {
    transform: rotate(45deg);
}

.nav-mobile-expand:hover {
    background: rgba(255,255,255,0.08);
}

.nav-mobile-sublinks {
    display: none;
    padding: 0 16px 12px;
}

.nav-mobile-item.is-open .nav-mobile-sublinks {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-mobile-sublinks a {
    display: block;
    padding: 10px 12px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
}

.nav-mobile-sublinks a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile-cta {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-mobile-cta-ghost {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
}

.nav-mobile-cta-primary {
    background: var(--home-red);
    color: #fff;
    border: 2px solid var(--home-red);
}

.nav-mobile-cta:hover {
    opacity: 0.9;
}

/* Overlay sadece mobilde göster */
@media (min-width: 901px) {
    .nav-mobile-overlay { display: none !important; }
}

.home-hero-contact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.home-hero-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--home-white);
    font-size: 0.9rem;
    opacity: 0.95;
}

.home-hero-contact-item:hover {
    opacity: 1;
}

.home-hero-contact-item svg {
    flex-shrink: 0;
}

.home-hero-nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.home-hero-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: #fff;
}

.home-hero-logo strong {
    font-size: 1.8rem;
    font-weight: 700;
}

.home-hero-logo span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.home-hero-nav-links-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero-nav-line {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin-bottom: 10px;
}

.home-hero-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.home-hero-nav-links a,
.home-hero-nav-link {
    color: var(--home-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-hero-nav-link {
    background: none;
    border: none;
    cursor: pointer;
}

.home-hero-nav-item {
    position: relative;
}

.home-hero-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10,10,12,0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px;
    min-width: 160px;
    display: none;
}

.home-hero-nav-item:hover .home-hero-dropdown {
    display: block;
}

.home-hero-dropdown a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
}

.home-hero-dropdown a:hover {
    background: rgba(255,255,255,0.08);
}

.home-hero-nav-ctas {
    display: flex;
    gap: 12px;
}

.home-hero-cta {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.home-hero-cta-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.home-hero-cta-primary {
    background: var(--home-red);
    color: #fff;
    border: 2px solid var(--home-red);
}

.home-hero-nav-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .home-hero-contact { display: none; }
    .home-hero-nav-links-wrap { display: none; }
    .home-hero-nav-main { flex-wrap: wrap; }
    .home-hero-nav-toggle { display: block; }
    .home-hero-nav-main.is-open .home-hero-nav-links-wrap {
        display: flex;
        width: 100%;
        order: 3;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    .home-hero-nav-main.is-open .home-hero-nav-links { flex-wrap: wrap; gap: 12px; }
}

/* Intro Block - Hero altı firma tanıtımı */
.home-intro {
    background: #fff;
    padding: 0 0 0;
}

.home-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0 48px;
}

.home-intro-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--home-black);
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.home-intro-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--home-dark);
    margin-bottom: 16px;
}

.home-intro-text {
    font-size: 1rem;
    color: var(--home-gray);
    line-height: 1.65;
    margin-bottom: 24px;
}

.home-intro-text p {
    margin-bottom: 14px;
}

.home-intro-text p:last-child {
    margin-bottom: 0;
}

.home-intro-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--home-red);
    transition: color 0.2s;
}

.home-intro-link:hover {
    color: var(--home-red-dim);
}

.home-intro-infographic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-intro-icon-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.home-intro-icon-item:hover {
    border-color: var(--home-red);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.08);
}

.home-intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: var(--home-red);
}

.home-intro-icon-item span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--home-black);
}

.home-intro-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 48px;
    height: 0;
    padding-bottom: 35%;
    overflow: hidden;
    border-radius: 16px;
}

.home-intro-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-intro-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 12, 0.15) 100%);
}

@media (max-width: 900px) {
    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 28px;
    }
    .home-intro-infographic {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .home-intro-icon-item {
        padding: 16px;
        flex-direction: row;
        gap: 12px;
    }
    .home-intro-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    .home-intro-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 600px) {
    .home-intro-grid { padding: 28px 0 20px; }
    .home-intro-infographic {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .home-intro-icon-item {
        padding: 12px 14px;
        gap: 10px;
    }
    .home-intro-icon {
        width: 36px;
        height: 36px;
    }
    .home-intro-icon svg {
        width: 18px;
        height: 18px;
    }
    .home-intro-icon-item span:last-child {
        font-size: 0.85rem;
    }
    .home-intro-banner { margin-top: 24px; padding-bottom: 50%; }
}

/* Page Hero - diğer sayfalar */
.page-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.6) 60%, rgba(196,30,58,0.2) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    width: 100%;
    padding: 60px min(5vw, 40px) 72px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(196,30,58,0.3);
    border: 1px solid rgba(196,30,58,0.5);
    font-size: 0.85rem;
    color: #fafafa;
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fafafa;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.page-hero-lead {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.page-hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
}

.page-hero-btn-primary {
    background: var(--home-red);
    color: #fff;
}

.page-hero-btn-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

/* Diğer sayfalar - unified section/card */
body:not(.page-home) .section-unified {
    padding: 60px 0;
}

body:not(.page-home) .section-title-unified {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #1a2233;
    margin-bottom: 12px;
    text-align: center;
}

body:not(.page-home) .section-lead-unified {
    color: #4b5563;
    margin-bottom: 32px;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

body:not(.page-home) .card-unified {
    background: #fff;
    border: 1px solid #e5e7eb;
}

body:not(.page-home) .section-unified {
    background: #f8f9fa;
}

body:not(.page-home) .section-unified:nth-of-type(even) {
    background: #fff;
}

/* Hero Swiper */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.home-hero-swiper {
    height: 100%;
}

.home-hero .swiper-slide {
    position: relative;
    height: 100%;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
}

.home-hero-bg img,
.home-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-video {
    display: block;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.6) 50%, rgba(196,30,58,0.25) 100%);
    pointer-events: none;
}

.home-hero-particle {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.home-hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    padding: 0 min(5vw, 80px);
    max-width: 900px;
}

.home-hero-headline {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    color: var(--home-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.home-hero-sub {
    font-size: 1.15rem;
    color: var(--home-gray-light);
    margin-bottom: 28px;
    max-width: 480px;
}

.home-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home-hero-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-hero-btn:hover {
    transform: translateY(-2px);
}

.home-hero-btn-primary {
    background: var(--home-red);
    color: #fff;
}

.home-hero-btn-primary:hover {
    box-shadow: 0 8px 24px rgba(196,30,58,0.4);
}

.home-hero-btn-ghost {
    background: transparent;
    color: var(--home-white);
    border: 2px solid rgba(255,255,255,0.5);
}

.home-hero-btn-ghost:hover {
    border-color: var(--home-white);
    background: rgba(255,255,255,0.08);
}

.home-hero-pagination {
    bottom: 24px !important;
}

.home-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--home-gray);
    opacity: 0.7;
    transition: all 0.3s;
}

.home-hero-pagination .swiper-pagination-bullet-active {
    background: var(--home-red);
    opacity: 1;
    transform: scale(1.2);
}

.home-hero-prev, .home-hero-next {
    color: var(--home-white) !important;
    opacity: 0.7;
}

.home-hero-prev:hover, .home-hero-next:hover {
    opacity: 1;
}

/* Sections */
.home-section {
    padding: 80px 0;
}

.home-section-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--home-black);
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 12px;
}

.home-section-lead {
    text-align: center;
    color: var(--home-gray);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Stock Status */
.home-stock-status {
    background: linear-gradient(180deg, #f8f9fa 0%, #f1f3f5 100%);
}

.home-stock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-stock-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.home-stock-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.home-stock-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-stock-icon svg {
    width: 28px;
    height: 28px;
}

.home-stock-card-green .home-stock-icon { background: rgba(34,197,94,0.15); color: #16a34a; }
.home-stock-card-yellow .home-stock-icon { background: rgba(234,179,8,0.15); color: #ca8a04; }
.home-stock-card-red .home-stock-icon { background: rgba(220,38,38,0.15); color: #dc2626; }

.home-stock-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--home-black);
}

.home-stock-card p {
    color: var(--home-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Tracking */
.home-tracking {
    background: var(--home-black);
    color: var(--home-white);
    padding: 80px 0;
    scroll-margin-top: 20px;
}
#tracking {
    scroll-margin-top: 20px;
}

.home-tracking .home-section-title,
.home-tracking .home-section-lead {
    color: var(--home-silver);
}

.home-tracking .home-section-lead {
    color: var(--home-gray-light);
}

.home-tracking-form {
    max-width: 560px;
    margin: 0 auto 60px;
}

.home-tracking-inputs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.home-tracking-inputs input {
    flex: 1;
    min-width: 180px;
    padding: 14px 18px;
    border: 1px solid var(--home-gray);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1rem;
}

.home-tracking-inputs input::placeholder {
    color: var(--home-gray);
}

.home-tracking-or {
    color: var(--home-gray);
    font-size: 0.9rem;
}

.home-tracking-btn {
    width: 100%;
    padding: 14px;
    background: var(--home-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.home-tracking-btn:hover {
    background: #a01830;
}

.home-tracking-demo-label {
    color: var(--home-gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-align: center;
}

.home-tracking-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.home-tracking-step {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    position: relative;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.home-tracking-step-done {
    border-color: rgba(34,197,94,0.3);
    background: rgba(34,197,94,0.08);
}

.home-tracking-step-active {
    border-color: var(--home-red);
    background: rgba(196,30,58,0.15);
}

.home-tracking-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--home-gray);
    margin-bottom: 12px;
}

.home-tracking-step-done .home-tracking-step-dot {
    background: #22c55e;
}

.home-tracking-step-active .home-tracking-step-dot {
    background: var(--home-red);
    box-shadow: 0 0 12px rgba(196,30,58,0.5);
}

.home-tracking-step-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.home-tracking-step-content span {
    font-size: 0.85rem;
    color: var(--home-gray-light);
}

/* Part Routing - Akıllı Parça Yönlendirme */
.home-part-routing {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
    padding: 80px 0;
}

.part-routing-header {
    text-align: center;
    margin-bottom: 48px;
}

.part-routing-flow {
    max-width: 900px;
    margin: 0 auto;
}

.part-routing-step {
    display: none;
    animation: partRoutingFade 0.4s ease;
}

.part-routing-step.is-active {
    display: block;
}

@keyframes partRoutingFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.part-routing-step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--home-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.part-routing-brands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.part-routing-brand-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.part-routing-brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 0 0 2px rgba(196,30,58,0.2);
    border-color: transparent;
}

.part-routing-brand-card.is-selected {
    border-color: var(--home-red);
    box-shadow: 0 12px 32px rgba(196,30,58,0.15);
    background: linear-gradient(135deg, #fff 0%, rgba(196,30,58,0.03) 100%);
}

.part-routing-brand-logo {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part-routing-brand-logo img {
    max-height: 100%;
    max-width: 100px;
    width: auto;
    object-fit: contain;
}

.part-routing-brand-fallback {
    display: none;
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    text-align: center;
}

.part-routing-truck-hint {
    text-align: center;
    font-size: 0.95rem;
    color: var(--home-gray);
    margin-bottom: 20px;
}

.part-routing-truck-wrapper {
    position: relative;
    width: 100%;
}

.part-routing-brand-rep-box {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 20;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 140px;
}

.part-routing-brand-rep-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--home-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.part-routing-brand-rep-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 8px;
}

.part-routing-brand-rep-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.part-routing-brand-rep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.part-routing-brand-rep-btn-phone {
    background: var(--home-red);
    color: #fff;
}

.part-routing-brand-rep-btn-phone:hover {
    background: #a01830;
    color: #fff;
}

.part-routing-brand-rep-btn-wa {
    background: #25D366;
    color: #fff;
}

.part-routing-brand-rep-btn-wa:hover {
    background: #1da851;
    color: #fff;
}

@media (max-width: 640px) {
    .part-routing-brand-rep-box {
        position: absolute;
        top: 6px;
        right: 6px;
        min-width: 110px;
        padding: 8px 10px;
    }
    .part-routing-brand-rep-label { font-size: 0.6rem; }
    .part-routing-brand-rep-name { font-size: 0.8rem; margin-bottom: 6px; }
    .part-routing-brand-rep-btn { padding: 5px 8px; font-size: 0.75rem; }
}

.part-routing-truck-figure {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.part-routing-truck-img {
    display: block;
    width: 100%;
    height: auto;
}

.part-routing-truck-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.part-routing-truck-hotspots > * {
    pointer-events: auto;
}

.part-routing-truck-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    min-width: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: transform 0.2s ease;
}

.part-routing-truck-hotspot:hover,
.part-routing-truck-hotspot:focus {
    outline: none;
    transform: translate(-50%, -50%) scale(1.1);
}

.part-routing-truck-hotspot.is-selected .part-routing-truck-hotspot-dot {
    box-shadow: 0 0 0 3px var(--home-red), 0 0 20px rgba(196, 30, 58, 0.6);
}

.part-routing-truck-hotspot-dot {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.6), 0 0 16px rgba(196, 30, 58, 0.5);
}

.part-routing-truck-hotspot-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
    padding: 2px 6px;
    background: rgba(0,0,0,0.5);
    border-radius: 4px;
}

.part-routing-truck-hotspot:hover .part-routing-truck-hotspot-label,
.part-routing-truck-hotspot:focus .part-routing-truck-hotspot-label {
    background: rgba(196, 30, 58, 0.9);
}

.part-routing-truck-hotspot.is-selected .part-routing-truck-hotspot-label {
    background: var(--home-red);
}

.part-routing-extra-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.part-routing-extra-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #374151;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.part-routing-extra-btn:hover {
    border-color: var(--home-red);
    background: rgba(196,30,58,0.05);
    color: var(--home-red);
}

.part-routing-extra-btn.is-selected {
    border-color: var(--home-red);
    background: rgba(196,30,58,0.1);
    color: var(--home-red);
}

.part-routing-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.part-routing-group-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.part-routing-group-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 0 0 2px rgba(196,30,58,0.2);
    border-color: transparent;
}

.part-routing-group-card.is-selected {
    border-color: var(--home-red);
    box-shadow: 0 12px 32px rgba(196,30,58,0.15);
}

.part-routing-group-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: #f3f4f6;
}

.part-routing-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-routing-group-name {
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.part-routing-group-card:hover .part-routing-group-name,
.part-routing-group-card.is-selected .part-routing-group-name {
    color: var(--home-red);
}

.part-routing-back {
    background: none;
    border: none;
    color: var(--home-gray);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
}

.part-routing-back:hover {
    color: var(--home-red);
}

.part-routing-result {
    margin-bottom: 24px;
}

.part-routing-result-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-gray);
    margin-bottom: 20px;
}

.part-routing-specialists {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.part-routing-specialist-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.part-routing-specialist-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.part-routing-specialist-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 3px solid var(--home-red);
}

.part-routing-specialist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-routing-specialist-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 4px;
}

.part-routing-specialist-role {
    font-size: 0.9rem;
    color: var(--home-gray);
    margin-bottom: 16px;
}

.part-routing-specialist-email {
    font-size: 0.9rem;
    color: var(--home-gray);
    margin-bottom: 8px;
    text-decoration: none;
    word-break: break-all;
}

.part-routing-specialist-email:hover {
    color: var(--home-red);
}

.part-routing-specialist-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--home-red);
    margin-bottom: 16px;
}

.part-routing-specialist-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.part-routing-specialist-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.part-routing-specialist-btn:hover {
    opacity: 0.9;
}

.part-routing-specialist-btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
}

.part-routing-specialist-btn-call {
    background: var(--home-red);
    color: #fff;
    border: none;
}

.part-routing-specialist-btn-email {
    background: #374151;
    color: #fff;
    border: none;
}

@media (max-width: 768px) {
    .part-routing-brands { grid-template-columns: repeat(2, 1fr); }
    .part-routing-groups { grid-template-columns: repeat(2, 1fr); }
}

/* Parça yönlendirme temsilcileri - mobil kompakt */
@media (max-width: 768px) {
    .part-routing-specialists {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-content: center;
    }
    .part-routing-specialist-card {
        min-width: 0;
        max-width: none;
        padding: 16px 14px;
    }
    .part-routing-specialist-photo {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }
    .part-routing-specialist-name { font-size: 0.95rem; }
    .part-routing-specialist-role { font-size: 0.8rem; margin-bottom: 8px; }
    .part-routing-specialist-email { font-size: 0.75rem; margin-bottom: 4px; }
    .part-routing-specialist-phone { font-size: 0.9rem; margin-bottom: 10px; }
    .part-routing-specialist-actions {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    .part-routing-specialist-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 500px) {
    .part-routing-specialists {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* References */
.home-references {
    background: #f8f9fa;
    padding: 60px 0;
}

.home-ref-slider {
    overflow: hidden;
}

.home-ref-track {
    display: flex;
    gap: 48px;
    animation: homeRefScroll 25s linear infinite;
}

.home-ref-item {
    flex-shrink: 0;
    width: 140px;
    min-height: 120px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-ref-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.home-ref-item-brand {
    flex-direction: column;
    gap: 12px;
}

.home-ref-item-brand .home-ref-logo {
    order: 1;
}

.home-ref-item-brand .home-ref-brand-name {
    order: 2;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-ref-logo {
    max-height: 48px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.home-ref-fallback {
    display: none;
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.03em;
}

.home-ref-name {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.03em;
}

.home-ref-item span {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.03em;
}

.home-ref-item:hover span,
.home-ref-item:hover .home-ref-fallback,
.home-ref-item:hover .home-ref-name,
.home-ref-item:hover .home-ref-brand-name {
    color: var(--home-red);
}

@keyframes homeRefScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Tedarikçilerimiz strip - Markalarımız ile aynı slider yapısı */
.home-suppliers-strip {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

/* Brand Modal */
.home-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.home-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.home-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,12,0.85);
}

.home-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.home-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--home-gray);
    transition: background 0.2s;
}

.home-modal-close:hover {
    background: #e5e7eb;
}

.home-modal-step {
    display: none;
}

.home-modal-step.is-active {
    display: block;
}

.home-modal-step h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    color: var(--home-black);
}

.home-modal-brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-modal-brand,
.home-modal-group {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.home-modal-brand:hover,
.home-modal-group:hover {
    border-color: var(--home-red);
    background: rgba(196,30,58,0.05);
}

.home-modal-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 24px;
}

.home-modal-input:focus {
    outline: none;
    border-color: var(--home-red);
}

.home-modal-actions {
    display: flex;
    gap: 12px;
}

.home-modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.home-modal-btn-primary {
    background: var(--home-red);
    color: #fff;
}

.home-modal-btn-primary:hover {
    background: #a01830;
}

.home-modal-btn-ghost {
    background: #f3f4f6;
    color: var(--home-gray);
}

.home-modal-btn-ghost:hover {
    background: #e5e7eb;
}

.home-modal-result {
    text-align: center;
    padding: 20px 0;
}

.home-modal-result-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--home-red);
}

.home-modal-result-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-modal-result-brand {
    color: var(--home-gray);
    margin-bottom: 12px;
}

.home-modal-result-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--home-red);
    margin-bottom: 20px;
}

.home-modal-result-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.home-modal-btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
}

.home-modal-btn-chat {
    background: var(--home-dark);
    color: #fff;
}

/* Neden Bizimle Çalışmalısınız */
.home-why-us {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.home-why-us .home-section-title {
    margin-bottom: 12px;
}

.home-why-us .home-section-lead {
    margin-bottom: 48px;
}

.home-why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-why-us-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.home-why-us-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.25s;
}

.home-why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.home-why-us-card--circle .home-why-us-icon {
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.15);
}

.home-why-us-card--square .home-why-us-icon {
    border-radius: 12px;
    background: #f8f9fa;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 4px 12px rgba(0,0,0,0.06);
}

.home-why-us-card--hex .home-why-us-icon {
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, #f1f3f5);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.12), 0 2px 6px rgba(0,0,0,0.04);
}

.home-why-us-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: var(--home-red);
    margin-bottom: 20px;
}

.home-why-us-card:hover .home-why-us-icon {
    color: var(--home-red-dim);
}

.home-why-us-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 10px;
}

.home-why-us-text {
    font-size: 0.95rem;
    color: var(--home-gray);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .home-why-us-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .home-why-us-card { padding: 20px 18px; }
    .home-why-us-icon { width: 44px; height: 44px; margin-bottom: 14px; }
    .home-why-us-title { font-size: 1rem; }
    .home-why-us-text { font-size: 0.88rem; }
}

@media (max-width: 600px) {
    .home-why-us { padding: 36px 0; }
    .home-why-us .home-section-lead { margin-bottom: 28px; }
    .home-why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .home-why-us-card {
        padding: 14px 12px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .home-why-us-card::before { display: none; }
    .home-why-us-icon {
        width: 36px;
        height: 36px;
        margin: 0 auto 10px;
        flex-shrink: 0;
    }
    .home-why-us-icon svg { width: 18px; height: 18px; }
    .home-why-us-title { font-size: 0.85rem; margin-bottom: 4px; }
    .home-why-us-text { font-size: 0.75rem; line-height: 1.35; }
}

/* Dağıtım Ağı Haritası */
.home-distribution-map {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #141922 0%, #1a2233 50%, #141922 100%);
    overflow: hidden;
}

.home-distribution-map-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 30, 58, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.home-distribution-map-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: #ffffff;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 14px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.home-distribution-map-lead {
    text-align: center;
    color: #d1d5db;
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.home-distribution-map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e5e7eb;
}

.legend-item i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-hq i { background: #c41e3a; box-shadow: 0 0 12px rgba(196, 30, 58, 0.6); }
.legend-regional i { background: #f59e0b; box-shadow: 0 0 10px rgba(245, 158, 11, 0.4); }
.legend-dealer i { background: #22c55e; box-shadow: 0 0 10px rgba(34, 197, 94, 0.4); }

/* Footer - tüm sayfalarda anasayfadaki ile aynı koyu tasarım */
.site-footer {
    background: linear-gradient(180deg, #0f1319 0%, #141922 30%, #1a2233 70%, #141922 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 0 24px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 36px 28px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer .footer-brand {
    min-width: 0;
}

.site-footer .footer-brand .logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.site-footer .footer-slogan {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.site-footer .footer-brand p {
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.site-footer .footer-grid h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.site-footer .footer-grid > div > a,
.site-footer .footer-grid .footer-contact span {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 6px 0;
}

.site-footer .footer-contact .footer-map {
    margin-top: 16px;
    border-radius: 10px;
    overflow: hidden;
}

.site-footer .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 900px) {
    .site-footer { padding: 40px 0 20px; }
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
        text-align: left;
        align-items: start;
    }
    .site-footer .footer-brand { grid-column: span 2; text-align: center; }
    .site-footer .footer-brand p { margin-left: auto; margin-right: auto; }
    .site-footer .footer-contact { grid-column: span 2; text-align: center; }
    .site-footer .footer-grid h4 { margin-bottom: 12px; }
}

.site-footer .logo,
.site-footer .footer-slogan {
    color: #fafafa !important;
}

.site-footer .logo.logo-img {
    display: inline-block;
}

.site-footer .logo.logo-img img {
    height: 144px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.site-footer .footer-brand p,
.site-footer .footer-grid a,
.site-footer .footer-grid span,
.site-footer h4 {
    color: #d1d5db !important;
}

.site-footer .footer-grid a:hover,
.site-footer .footer-grid a:focus {
    color: #fafafa !important;
}

.site-footer .footer-bottom {
    color: #9ca3af !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
}

.site-footer .social-cards a {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: #fafafa !important;
}

.site-footer .social-cards a:hover {
    background: rgba(255,255,255,0.15);
}

.home-distribution-map-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.home-distribution-map-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1007.478 / 527.323;
    border-radius: 12px;
    overflow: hidden;
}

.home-distribution-turkey-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.9s ease;
}

.home-distribution-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.home-distribution-overlay .home-distribution-pins {
    pointer-events: auto;
}

.home-distribution-overlay .home-distribution-lines {
    pointer-events: none;
}

.home-distribution-lines line {
    stroke: rgba(196, 30, 58, 0.7);
    stroke-width: 2.5;
    fill: none;
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s ease, opacity 0.5s;
    filter: url(#lineGlowMap);
}

.home-distribution-map.is-visible .home-distribution-lines line {
    animation: distributionLineGlow 2.5s ease-in-out infinite alternate;
}

.home-distribution-map.is-visible .home-distribution-lines line {
    opacity: 1;
    stroke-dashoffset: 0;
}

.home-distribution-lines line:nth-child(1) { transition-delay: 0.3s; }
.home-distribution-lines line:nth-child(2) { transition-delay: 0.45s; }
.home-distribution-lines line:nth-child(3) { transition-delay: 0.6s; }
.home-distribution-lines line:nth-child(4) { transition-delay: 0.75s; }
.home-distribution-lines line:nth-child(5) { transition-delay: 0.9s; }
.home-distribution-lines line:nth-child(6) { transition-delay: 1.05s; }
.home-distribution-lines line:nth-child(7) { transition-delay: 1.2s; }
.home-distribution-lines line:nth-child(8) { transition-delay: 1.35s; }
.home-distribution-lines line:nth-child(9) { transition-delay: 1.5s; }
.home-distribution-lines line:nth-child(10) { transition-delay: 1.65s; }
.home-distribution-lines line:nth-child(11) { transition-delay: 1.8s; }

.distribution-pin {
    cursor: pointer;
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.home-distribution-map.is-visible .distribution-pin {
    opacity: 1;
}

.distribution-pin:nth-child(1) { transition-delay: 0.5s; }
.distribution-pin:nth-child(2) { transition-delay: 0.65s; }
.distribution-pin:nth-child(3) { transition-delay: 0.8s; }
.distribution-pin:nth-child(4) { transition-delay: 0.95s; }
.distribution-pin:nth-child(5) { transition-delay: 1.1s; }
.distribution-pin:nth-child(6) { transition-delay: 1.25s; }
.distribution-pin:nth-child(7) { transition-delay: 1.4s; }
.distribution-pin:nth-child(8) { transition-delay: 1.55s; }
.distribution-pin:nth-child(9) { transition-delay: 1.7s; }
.distribution-pin:nth-child(10) { transition-delay: 1.85s; }
.distribution-pin:nth-child(11) { transition-delay: 2s; }
.distribution-pin:nth-child(12) { transition-delay: 2.15s; }
.distribution-pin.pin-hq { transition-delay: 0.2s; }

.pin-red { color: #c41e3a; }
.pin-orange { color: #f59e0b; }
.pin-green { color: #22c55e; }

.distribution-pin:hover {
    transform: scale(1.4);
}

.pin-hq-pulse {
    animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.2; }
}

@keyframes distributionLineGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.home-distribution-tooltip {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 20, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 220px;
    max-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
    pointer-events: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.home-distribution-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -16px);
}

.tooltip-city {
    display: block;
    font-size: 1rem;
    color: #fafafa;
    margin-bottom: 4px;
}

.tooltip-type {
    display: block;
    font-size: 0.8rem;
    color: var(--home-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.tooltip-desc {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .home-distribution-map { padding: 48px 0; }
    .home-distribution-map-legend { gap: 16px; margin-bottom: 24px; }
}

/* Bir Bakışta - 6 metrik + overrides */
.metrics-6 {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 480px) {
    .metrics-6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Bir Bakışta - homepage overrides */
.page-home .home-overview .metric-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.page-home .home-overview .metric-card span {
    color: var(--home-red);
}

.page-home .home-overview .logo-strip span {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #4b5563;
}

@media (max-width: 768px) {
    .home-hero-content { bottom: 20%; padding: 0 min(4vw, 24px); }
    .home-hero-headline { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .home-hero-sub { font-size: 1rem; }
    .home-hero-actions { flex-direction: column; align-items: flex-start; }
    .home-hero-btn { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .home-stock-cards { grid-template-columns: 1fr; }
    .home-tracking-timeline { flex-direction: column; align-items: stretch; }
    .home-tracking-step { max-width: none; }
    .home-modal-brands { grid-template-columns: 1fr; }
    .home-section { padding: 48px 0; }
    .page-hero { min-height: 480px; }
    .page-hero-content { padding: 40px min(4vw, 20px); }
    .page-hero-actions { flex-wrap: wrap; }
    /* Footer mobil - 2 sütun profesyonel yerleşim */
    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 24px 20px;
        text-align: left;
        align-items: start;
    }
    .site-footer .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .site-footer .footer-brand .logo.logo-img img { height: 100px; }
    .site-footer .footer-brand p { max-width: none; margin-left: auto; margin-right: auto; }
    .site-footer .footer-brand .footer-desc { font-size: 0.85rem; line-height: 1.5; margin-bottom: 16px; }
    .site-footer .social-cards { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .site-footer .footer-col { text-align: left; }
    .site-footer .footer-col h4 { margin: 0 0 12px; font-size: 0.85rem; }
    .site-footer .footer-col a { display: block; margin: 6px 0; font-size: 0.88rem; }
    .site-footer .footer-contact {
        text-align: left;
    }
    .site-footer .footer-contact h4 { margin: 0 0 12px; }
    .site-footer .footer-contact span { display: block; margin: 6px 0; font-size: 0.88rem; }
    .site-footer .footer-contact .footer-map { margin-top: 16px; max-width: 100%; }
    .site-footer .footer-contact .footer-map iframe { height: 160px; border-radius: 10px; width: 100%; }
    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .container { width: 94%; }
    .home-hero { min-height: 450px; }
    .home-hero-pagination { bottom: 16px !important; }
    .home-hero-prev, .home-hero-next { transform: scale(0.9); }
    .home-overview .metrics { gap: 10px; }
    .home-overview .metric-card { padding: 12px 14px; font-size: 0.8rem; }
    .home-overview .metric-card span { font-size: 1.3rem; }
    .home-overview .logo-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; font-size: 0.8rem; }
    .site-footer { padding: 32px 0 20px; }
    .site-footer .footer-grid { gap: 20px 16px; }
    .site-footer .footer-brand .logo.logo-img img { height: 80px; }
    .site-footer .footer-col a,
    .site-footer .footer-contact span { font-size: 0.82rem; }
    .site-footer .footer-contact .footer-map iframe { height: 140px; }
    .site-footer .footer-bottom { font-size: 0.8rem; line-height: 1.5; }
}

/* Biz Kimiz Popup - İlk ziyaret popup */
.bizkimiz-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bizkimiz-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.bizkimiz-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.92);
    cursor: pointer;
}

.bizkimiz-dialog {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: calc(100vh - 32px);
    background: #0a0a0c;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.bizkimiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bizkimiz-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.5rem;
    color: #fafafa;
    margin: 0;
    letter-spacing: 0.03em;
}

.bizkimiz-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #fafafa;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.bizkimiz-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.bizkimiz-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.bizkimiz-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 600px) {
    .bizkimiz-popup { padding: 12px; }
    .bizkimiz-dialog { max-height: calc(100vh - 24px); border-radius: 12px; }
    .bizkimiz-header { padding: 12px 16px; }
    .bizkimiz-title { font-size: 1.25rem; }
    .bizkimiz-close { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* Truck Systems Compact - Parça yönlendirme altında, sadece özet + kamyon */
.truck-systems-compact {
    padding: 48px 0;
    background: transparent;
}

.truck-systems-compact .container {
    max-width: 900px;
    margin: 0 auto;
}

.truck-systems-compact-text {
    text-align: center;
    font-size: 1.05rem;
    color: var(--home-gray);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.truck-systems-compact-figure {
    position: relative;
    width: 100%;
}

.truck-systems-compact-img {
    display: block;
    width: 100%;
    height: auto;
}

.truck-systems-compact-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.truck-systems-compact-hotspots > * {
    pointer-events: auto;
}

.truck-systems-compact-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.truck-systems-compact-hotspot:hover,
.truck-systems-compact-hotspot:focus {
    outline: none;
    transform: translate(-50%, -50%) scale(1.25);
}

.truck-systems-compact-hotspot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.6), 0 0 16px rgba(196, 30, 58, 0.5);
}

/* Truck compact popup - sadece parça adı + Uzmanla Bağlan */
.truck-compact-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.truck-compact-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.truck-compact-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.truck-compact-popup-card {
    position: relative;
    background: #1a2233;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px 32px;
    min-width: 260px;
    max-width: 320px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.truck-compact-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
}

.truck-compact-popup-close:hover {
    background: rgba(255,255,255,0.2);
}

.truck-compact-popup-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    padding-right: 32px;
}

.truck-compact-popup-specialist {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.truck-compact-popup-specialist:hover {
    opacity: 0.9;
    color: #fff !important;
}

/* Tracking sayfası - site uyumlu */
.tracking-page.tracking-page,
.tracking-page .home-tracking-form,
.tracking-page .home-tracking-inputs input,
.tracking-page .home-tracking-demo {
    background: #fff;
    color: #1a2233;
}

.tracking-page .home-tracking-inputs input {
    border: 1px solid #dbe4f0;
    background: #fff;
    color: #1a2233;
}

.tracking-page .home-tracking-inputs input::placeholder {
    color: #6b7280;
}

.tracking-page .home-tracking-or {
    color: #6b7280;
}

.tracking-page .home-tracking-btn {
    background: var(--home-red);
}

.tracking-page .home-tracking-demo-label {
    color: #6b7280;
}

.tracking-page .home-tracking-step {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.tracking-page .home-tracking-step-done {
    border-color: rgba(34,197,94,0.4);
    background: #f0fdf4;
}

.tracking-page .home-tracking-step-active {
    border-color: var(--home-red);
    background: rgba(196,30,58,0.08);
}

.tracking-page .home-tracking-step-dot {
    background: #9ca3af;
}

.tracking-page .home-tracking-step-done .home-tracking-step-dot {
    background: #22c55e;
}

.tracking-page .home-tracking-step-active .home-tracking-step-dot {
    background: var(--home-red);
}

.tracking-page .home-tracking-step-content strong {
    color: #1a2233;
}

.tracking-page .home-tracking-step-content span {
    color: #6b7280;
}

.tracking-page-header {
    margin-bottom: 40px;
}

.tracking-page-header .section-title-unified,
.tracking-page-header .section-lead-unified {
    text-align: center;
}

.tracking-page-form {
    max-width: 560px;
    margin: 0 auto 32px;
}

.tracking-page-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    max-width: 400px;
    margin: 0 auto 40px;
}

.tracking-page-demo {
    max-width: 720px;
    margin: 0 auto;
}

/* ========================================
   Interactive Truck Systems Section
   Dark industrial, red accent #e11d2e
   ======================================== */
.truck-systems {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0b1220 0%, #0f1a2b 50%, #0b1220 100%);
    overflow: hidden;
}

.truck-systems-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 50%, rgba(225, 29, 46, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.truck-systems-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.truck-systems-header {
    text-align: center;
    margin-bottom: 48px;
}

.truck-systems-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.truck-systems-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.truck-systems-figure {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.truck-systems-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.truck-systems-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.truck-systems-hotspots > * {
    pointer-events: auto;
}

.truck-systems-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.truck-systems-hotspot:hover,
.truck-systems-hotspot:focus {
    outline: none;
    transform: translate(-50%, -50%) scale(1.3);
}

.truck-systems-hotspot[aria-expanded="true"] {
    z-index: 20;
}

.truck-systems-hotspot-dot {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(225, 29, 46, 0.6), 0 0 20px rgba(225, 29, 46, 0.4);
    z-index: 2;
}

.truck-systems-hotspot-pulse {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(225, 29, 46, 0.5);
    animation: truckHotspotPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes truckHotspotPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Popup Card */
.truck-systems-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.truck-systems-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.truck-systems-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.truck-systems-popup-card {
    position: relative;
    background: #141922;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.truck-systems-popup.is-open .truck-systems-popup-card {
    transform: scale(1);
}

.truck-systems-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.truck-systems-popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.truck-systems-popup-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    padding-right: 40px;
}

.truck-systems-popup-desc {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.5;
    margin-bottom: 20px;
}

.truck-systems-popup-parts {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.truck-systems-popup-parts li {
    font-size: 0.85rem;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    border-radius: 8px;
}

.truck-systems-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.truck-systems-popup-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.truck-systems-popup-btn-primary {
    background: #e11d2e;
    color: #fff;
}

.truck-systems-popup-btn-primary:hover {
    background: #c91828;
}

.truck-systems-popup-btn-secondary {
    background: transparent;
    color: #e11d2e;
    border: 2px solid #e11d2e;
}

.truck-systems-popup-btn-secondary:hover {
    background: rgba(225, 29, 46, 0.1);
}

/* Specialist Modal */
.truck-systems-specialist-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.truck-systems-specialist-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.truck-systems-specialist-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.truck-systems-specialist-card {
    position: relative;
    background: #141922;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.truck-systems-specialist-modal.is-open .truck-systems-specialist-card {
    transform: scale(1);
}

.truck-systems-specialist-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.truck-systems-specialist-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.truck-systems-specialist-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.truck-systems-specialist-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.truck-systems-specialist-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e11d2e, #b91826);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.truck-systems-specialist-name {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2px;
}

.truck-systems-specialist-role {
    font-size: 0.9rem;
    color: #9ca3af;
}

.truck-systems-specialist-whatsapp {
    display: block;
    background: #25D366;
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}

.truck-systems-specialist-whatsapp:hover {
    opacity: 0.9;
}

.truck-systems-specialist-phone {
    font-size: 0.95rem;
    color: #e11d2e;
    text-decoration: none;
}

.truck-systems-specialist-phone:hover {
    text-decoration: underline;
}

/* Mobile: popup below viewport, tap to toggle */
@media (max-width: 768px) {
    .truck-systems { padding: 60px 0; }
    .truck-systems-header { margin-bottom: 32px; }
    .truck-systems-popup { align-items: flex-end; padding: 0; padding-bottom: env(safe-area-inset-bottom); }
    .truck-systems-popup-card { border-radius: 20px 20px 0 0; max-width: 100%; }
}

/* ========== HAKKIMIZDA SAYFASI ========== */
.about-intro { padding: 72px 0; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-intro-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(196,30,58,0.12);
    border: 1px solid rgba(196,30,58,0.35);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--home-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.about-intro-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--home-black);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}
.about-intro-lead {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-intro-text p {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 14px;
}
.about-intro-visual { position: relative; }
.about-intro-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.about-intro-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.about-intro-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,12,0.4) 100%);
}
.about-intro-stats-inline {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
.about-stat-mini {
    flex: 1;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.about-stat-mini-num {
    display: block;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.8rem;
    color: var(--home-red);
    letter-spacing: 0.02em;
}
.about-stat-mini-label {
    font-size: 0.85rem;
    color: #6b7280;
}

/* MVV */
.about-mvv-header { text-align: center; margin-bottom: 48px; }
.about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.about-mvv-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    transition: box-shadow 0.25s ease;
}
.about-mvv-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.about-mvv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-mvv-icon--target { background: rgba(196,30,58,0.12); color: var(--home-red); }
.about-mvv-icon--users { background: rgba(196,30,58,0.12); color: var(--home-red); }
.about-mvv-icon--briefcase { background: rgba(59,130,246,0.12); color: #2563eb; }
.about-mvv-icon--eye { background: rgba(59,130,246,0.12); color: #2563eb; }
.about-mvv-icon--heart { background: rgba(34,197,94,0.12); color: #16a34a; }
.about-mvv-icon--flag { background: rgba(196,30,58,0.12); color: var(--home-red); }
.about-mvv-icon--map { background: rgba(59,130,246,0.12); color: #2563eb; }
.about-mvv-icon--zap { background: rgba(234,179,8,0.15); color: #ca8a04; }
.about-mvv-icon--award { background: rgba(34,197,94,0.12); color: #16a34a; }
.history-era-period { display: block; font-size: 0.8rem; font-weight: 600; color: var(--home-red); margin-bottom: 8px; letter-spacing: 0.04em; }
.page-history .about-mvv-grid { grid-template-columns: repeat(2, 1fr); }
.about-mvv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 12px;
}
.about-mvv-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.65;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-value-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
}
.about-value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-value-icon--shield { background: rgba(196,30,58,0.1); color: var(--home-red); }
.about-value-icon--award { background: rgba(234,179,8,0.15); color: #ca8a04; }
.about-value-icon--zap { background: rgba(59,130,246,0.12); color: #2563eb; }
.about-value-icon--users { background: rgba(34,197,94,0.12); color: #16a34a; }
.about-value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 8px;
}
.about-value-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.55;
}

/* Metrics */
.about-metrics { background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%); }
.about-metrics .section-title-unified,
.about-metrics .section-lead-unified { text-align: center; }
.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.about-metric-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.25s ease;
}
.about-metric-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.about-metric-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(196,30,58,0.1);
    color: var(--home-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-metric-card .metric-counter {
    display: block;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 2.4rem;
    color: var(--home-red);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
.about-metric-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
}

/* Timeline */
.about-timeline-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.about-timeline-item {
    position: relative;
    display: flex;
    gap: 28px;
    padding-bottom: 36px;
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-year {
    flex-shrink: 0;
    width: 72px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: 1.4rem;
    color: var(--home-red);
    letter-spacing: 0.02em;
}
.about-timeline-content {
    flex: 1;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}
.about-timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 8px;
}
.about-timeline-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}
.about-timeline-connector {
    position: absolute;
    left: 35px;
    top: 56px;
    bottom: -12px;
    width: 2px;
    background: linear-gradient(180deg, var(--home-red), rgba(196,30,58,0.3));
}

/* Why */
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-why-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.25s ease;
}
.about-why-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.about-why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 14px;
    background: rgba(196,30,58,0.1);
    color: var(--home-red);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--home-black);
    margin-bottom: 10px;
}
.about-why-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Gallery */
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 40px;
}
.about-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.about-gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(10,10,12,0.85));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

/* CTA */
.about-cta-card {
    background: linear-gradient(135deg, var(--home-black) 0%, #1a1a1f 100%);
    border-radius: 20px;
    padding: 56px 64px;
    text-align: center;
}
.about-cta-content h2 {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.about-cta-content p {
    color: #9ca3af;
    font-size: 1.05rem;
    margin-bottom: 28px;
}
.about-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition: opacity 0.2s;
}
.about-cta-btn-primary {
    background: var(--home-red);
    color: #fff;
}
.about-cta-btn-primary:hover { opacity: 0.92; }
.about-cta-btn-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.about-cta-btn-ghost:hover { border-color: #fff; }

@media (max-width: 1024px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .about-mvv-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .about-why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-gallery-item--large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 640px) {
    .about-values-grid { grid-template-columns: 1fr; }
    .about-metrics-grid { grid-template-columns: 1fr; }
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .about-why-card {
        padding: 16px 14px;
    }
    .about-why-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 12px;
    }
    .about-why-icon svg { width: 20px; height: 20px; }
    .about-why-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
    .about-why-card p { font-size: 0.8rem; line-height: 1.45; }
    .about-gallery-grid { grid-template-columns: 1fr; }
    .about-gallery-item--large { grid-column: span 1; }
    .about-timeline-item { flex-direction: column; gap: 12px; }
    .about-timeline-connector { display: none; }
    .about-stat-mini { padding: 16px; }
}

/* ===== Kadromuz (Team) Sayfası ===== */
.team-section {
    background: #f8fafc;
}

.team-header {
    margin-bottom: 40px;
}

.team-group {
    margin-bottom: 40px;
    padding: 24px 24px 28px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.team-group:last-of-type {
    margin-bottom: 0;
}

.team-group-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    gap: 12px;
}

.team-group-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.team-group-count {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.team-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 14px 14px 16px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.team-card:hover {
    background: #ffffff;
    border-color: rgba(196, 30, 58, 0.5);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    transform: translateY(-2px);
}

.team-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.2));
    border: 1px solid rgba(196, 30, 58, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b91c2a;
    font-weight: 700;
    font-size: 0.9rem;
}

.team-avatar span {
    transform: translateY(1px);
}

.team-body {
    min-width: 0;
}

.team-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .team-group {
        padding: 18px 16px 20px;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .team-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ===== Şubeler Sayfası ===== */
.branches-intro {
    background: #f8fafc;
}

.branches-header {
    margin-bottom: 40px;
}

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

.branch-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.branch-card:hover {
    border-color: rgba(196, 30, 58, 0.4);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.branch-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--home-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.branch-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--home-black);
    margin: 0 0 8px;
}

.branch-card-address {
    font-size: 0.95rem;
    color: var(--home-gray);
    margin: 0 0 8px;
}

.branch-card-region {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--home-red);
}

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

.branch-card--with-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
}

.branch-card-map {
    min-height: 220px;
}

.branch-card-map iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: none;
    display: block;
}

.branch-card-content {
    padding: 24px;
}

.branch-card-content .branch-card-region {
    display: block;
    margin-bottom: 12px;
}

.branch-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.branch-card-buttons .contact-btn-phone {
    background: var(--home-red);
    color: #fff;
}

.branch-card-buttons .contact-btn-email {
    background: #f3f4f6;
    color: #1a2233;
    border: 1px solid #e5e7eb;
}

.branch-card-buttons .contact-btn-email:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #1a2233;
}

.branches-cta {
    padding-top: 24px;
}

@media (max-width: 992px) {
    .branch-card--with-map { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .branches-grid--with-map { grid-template-columns: 1fr; }
}

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

/* ===== Kariyer Sayfası ===== */
.career-intro .career-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.career-intro-content .about-intro-badge { display: inline-block; }
.career-intro .about-intro-title { margin-bottom: 16px; }
.career-intro .about-intro-lead { margin-bottom: 20px; }

.career-positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.career-position-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.career-position-card:hover {
    border-color: rgba(196, 30, 58, 0.4);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.career-position-area {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--home-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.career-position-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--home-black);
    margin: 0 0 12px;
}

.career-position-desc {
    font-size: 0.95rem;
    color: var(--home-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .career-intro .career-intro-grid { grid-template-columns: 1fr; }
    .career-positions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .career-positions-grid { grid-template-columns: 1fr; }
}

/* Kariyer Başvuru Popup */
.career-apply-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.career-apply-popup.is-open {
    opacity: 1;
    visibility: visible;
}
.career-apply-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.85);
    cursor: pointer;
}
.career-apply-dialog {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}
.career-apply-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}
.career-apply-close:hover { background: #e5e7eb; }
.career-apply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--home-black);
    margin: 0 0 8px;
}
.career-apply-lead {
    font-size: 0.95rem;
    color: var(--home-gray);
    margin-bottom: 24px;
}
.career-apply-form .career-apply-row { margin-bottom: 16px; }
.career-apply-form label { display: block; font-weight: 600; color: #374151; margin-bottom: 6px; font-size: 0.9rem; }
.career-apply-form input, .career-apply-form select, .career-apply-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
}
.career-apply-form .req { color: var(--home-red); }
.career-apply-section { margin: 24px 0 16px; padding-top: 20px; border-top: 1px solid #e5e7eb; }
.career-apply-section h3 { font-size: 1rem; color: var(--home-black); margin: 0 0 12px; }
.career-apply-checkbox .checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-weight: 400; }
.career-apply-checkbox input[type="checkbox"] { width: auto; margin-top: 4px; }
.career-apply-checkbox a { color: var(--home-red); }
.career-apply-actions { display: flex; gap: 12px; margin-top: 24px; }
.career-apply-submit {
    padding: 14px 24px;
    background: var(--home-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.career-apply-submit:hover { background: #a01830; }
.career-apply-cancel {
    padding: 14px 24px;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.career-apply-cancel:hover { background: #e5e7eb; }

.supplier-apply-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.supplier-apply-popup.is-open { opacity: 1; visibility: visible; }

/* ===== Tedarikçiler Sayfası (Hamle tarzı) ===== */
.suppliers-page { background: #f8fafc; }
.suppliers-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}
.suppliers-sidebar {
    position: sticky;
    top: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.suppliers-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px;
}
.suppliers-sidebar-icon { color: var(--home-red); }
.suppliers-filters {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.suppliers-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4b5563;
    transition: background 0.2s;
}
.suppliers-filter-item:hover { background: #f3f4f6; }
.suppliers-filter-item input { width: 18px; height: 18px; accent-color: var(--home-red); }
.suppliers-main { min-width: 0; }
.suppliers-search-wrap { margin-bottom: 20px; }
.suppliers-search {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
}
.suppliers-search:focus { outline: none; border-color: var(--home-red); }
.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.supplier-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.3s ease, filter 0.3s ease;
}
.supplier-card.is-leaving {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}
.supplier-card.is-entering {
    opacity: 0;
    transform: scale(0.92);
}
.supplier-card.is-entering.is-visible {
    opacity: 1;
    transform: scale(1);
}
.supplier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    border-color: rgba(196, 30, 58, 0.3);
}
.supplier-card-inner {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.supplier-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
.supplier-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--home-red);
    font-weight: 700;
    font-size: 1rem;
}
.supplier-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    display: block;
    line-height: 1.3;
}
/* Tedarikçiler sayfasında sadece logolar görünsün, isim ve başharfler gizli */
.suppliers-page .supplier-name,
.suppliers-page .supplier-fallback { display: none !important; }
.suppliers-page .supplier-card-inner { margin-bottom: 0; }
.suppliers-empty {
    padding: 40px;
    text-align: center;
    color: var(--home-gray);
}
.supplier-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.supplier-modal.is-open { opacity: 1; visibility: visible; }
.supplier-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.7);
    cursor: pointer;
}
.supplier-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.supplier-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}
.supplier-modal-close:hover { background: #e5e7eb; }
.supplier-modal-body strong { display: block; font-size: 1.2rem; margin-bottom: 12px; color: var(--home-black); }
.supplier-modal-body p { margin: 0 0 8px; color: var(--home-gray); font-size: 0.95rem; line-height: 1.5; }
.supplier-modal-body .supplier-cats { font-size: 0.85rem; color: var(--home-red); }
@media (max-width: 900px) {
    .suppliers-layout { grid-template-columns: 1fr; gap: 24px; }
    .suppliers-sidebar { position: static; max-height: none; margin-bottom: 0; }
    .suppliers-filters { max-height: 200px; overflow-y: auto; }
    .suppliers-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 12px; }
}
@media (max-width: 600px) {
    .suppliers-layout { gap: 20px; }
    .suppliers-sidebar { padding: 16px; }
    .suppliers-filters { max-height: 160px; }
    .suppliers-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .supplier-card { padding: 10px; }
    .supplier-card-inner { height: 50px; margin-bottom: 0; }
    .supplier-logo { max-width: 60px; max-height: 50px; }
    .suppliers-page .supplier-card-inner { height: 50px; }
    .supplier-fallback { width: 40px; height: 40px; font-size: 0.85rem; }
}

/* Blog sayfası */
.blog-page { padding: 60px 0 80px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.blog-card-link { text-decoration: none; color: inherit; display: block; }
.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--home-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}
.blog-card-body { padding: 22px 24px; }
.blog-card-date {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 8px;
}
.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--home-black);
    line-height: 1.4;
    margin: 0 0 10px;
}
.blog-card-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 14px;
}
.blog-card-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--home-red);
}
@media (max-width: 700px) {
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Fuarlar sayfası */
.fairs-page { padding: 60px 0 80px; }
.fairs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.fair-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fair-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.fair-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.fair-card-image img { width: 100%; height: 100%; object-fit: cover; }
.fair-card-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--home-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
}
.fair-card-body { padding: 22px 24px; }
.fair-card-title { font-size: 1.2rem; font-weight: 700; margin: 0 0 6px; color: var(--home-black); }
.fair-card-location { font-size: 0.9rem; color: var(--home-red); margin: 0 0 12px; }
.fair-card-desc { font-size: 0.95rem; color: #64748b; line-height: 1.6; margin: 0 0 14px; }
.fair-card-link { font-size: 0.9rem; font-weight: 600; color: var(--home-red); text-decoration: none; }
.fair-card-link:hover { text-decoration: underline; }

/* Bilgi Bankası FAQ */
.knowledge-page { padding: 60px 0 80px; }
.knowledge-faq { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-black);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question:hover { background: #f8fafc; }
.faq-icon { flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-answer { max-height: 500px; }
.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #64748b;
}

/* Haberler sayfası */
.news-page { padding: 60px 0 80px; }
.news-empty { text-align: center; color: #64748b; padding: 60px 20px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.news-card-link { text-decoration: none; color: inherit; display: block; }
.news-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
}
.news-card-body { padding: 22px 24px; }
.news-card-title { font-size: 1.15rem; font-weight: 700; margin: 0 0 10px; color: var(--home-black); line-height: 1.4; }
.news-card-summary { font-size: 0.95rem; color: #64748b; line-height: 1.6; margin: 0 0 14px; }
.news-card-more { font-size: 0.9rem; font-weight: 600; color: var(--home-red); }

/* ========================================
   İletişim Sayfası - Merkez & Şubeler
   ======================================== */
.contact-main-branch {
    padding-top: 40px;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-main-info {
    display: flex;
}

.contact-main-card {
    max-width: 100%;
    background: linear-gradient(135deg, #1a2233 0%, #0f1624 100%);
    border-radius: 20px;
    padding: 48px 56px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
}

.contact-main-badge {
    display: inline-block;
    background: rgba(196,30,58,0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.contact-main-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 12px;
    color: #fff;
}

.contact-main-lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-main-address {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.contact-main-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-btn-phone {
    background: var(--home-red);
    color: #fff;
    border: none;
}

.contact-btn-phone:hover {
    background: #a31d3d;
    color: #fff;
}

.contact-btn-email {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.contact-btn-email:hover {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}

.contact-btn-sm {
    padding: 8px 14px;
    font-size: 0.9rem;
}

.contact-btn-icon {
    flex-shrink: 0;
}

.contact-main-map {
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-main-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: none;
    display: block;
}

.contact-main-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-main-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.contact-main-item:hover {
    color: #fff;
}

.contact-main-icon {
    flex-shrink: 0;
    color: var(--home-red);
}

.contact-main-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-main-actions .btn-primary {
    background: var(--home-red);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.contact-main-actions .btn-ghost {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.contact-main-actions .btn-ghost:hover {
    border-color: #fff;
    color: #fff;
}

/* Diğer şubeler grid */
.contact-branches-header {
    margin-bottom: 40px;
}

.contact-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.contact-branch-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 28px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-branch-card--with-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
}

.contact-branch-map {
    min-height: 200px;
}

.contact-branch-map iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: none;
    display: block;
}

.contact-branch-content {
    padding: 24px 28px;
}

.contact-branch-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.contact-branch-buttons .contact-btn-phone {
    background: var(--home-red);
    color: #fff;
}

.contact-branch-buttons .contact-btn-email {
    background: #f3f4f6;
    color: #1a2233;
    border-color: #e5e7eb;
}

.contact-branch-buttons .contact-btn-email:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #1a2233;
}

.contact-branch-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: rgba(196,30,58,0.2);
}

.contact-branch-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.contact-branch-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1a2233;
}

.contact-branch-region {
    font-size: 0.8rem;
    color: #6b7280;
}

.contact-branch-body {
    font-size: 0.95rem;
    color: #4b5563;
}

.contact-branch-address {
    margin: 0 0 12px;
    line-height: 1.5;
}

.contact-branch-phone,
.contact-branch-email {
    display: block;
    color: var(--home-red);
    text-decoration: none;
    margin-bottom: 6px;
}

.contact-branch-phone:hover,
.contact-branch-email:hover {
    text-decoration: underline;
}

/* İletişim formu */
.contact-form-section {
    background: #f8f9fa;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-success {
    background: #d1fae5;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form textarea {
    margin-bottom: 20px;
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
}

.contact-form input {
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
}

.contact-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--home-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .contact-main-layout { grid-template-columns: 1fr; }
    .contact-main-map { min-height: 280px; }
    .contact-branch-card--with-map { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .contact-main-card { padding: 32px 24px; }
    .contact-main-actions { flex-direction: column; }
    .contact-main-buttons { flex-direction: column; }
}

/* ========================================
   Teklif Al (RFQ) Sayfası
   ======================================== */
.rfq-benefits {
    background: #fff;
}

.rfq-benefits-header {
    margin-bottom: 40px;
}

.rfq-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rfq-benefit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.rfq-benefit-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(196,30,58,0.2);
}

.rfq-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(196,30,58,0.08);
    color: var(--home-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.rfq-benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2233;
    margin: 0 0 10px;
}

.rfq-benefit-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.rfq-form-section {
    background: #f8f9fa;
}

.rfq-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.rfq-form-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a2233;
}

.rfq-form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rfq-form-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,12,0.9) 100%);
}

.rfq-form-visual-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    color: #fff;
}

.rfq-form-visual-text p {
    margin: 6px 0;
    font-size: 1rem;
    opacity: 0.95;
}

.rfq-form-visual-text strong {
    color: var(--home-red);
}

.rfq-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.rfq-form-header {
    margin-bottom: 28px;
}

.rfq-form-header .section-title-unified,
.rfq-form-header .section-lead-unified {
    text-align: left;
}

.rfq-form-success {
    background: #d1fae5;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.rfq-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.rfq-form-full {
    grid-column: span 2;
}

.rfq-form input,
.rfq-form textarea {
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
}

.rfq-form textarea {
    margin-bottom: 20px;
}

.rfq-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--home-red);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.rfq-form-submit:hover {
    background: #a01830;
}

@media (max-width: 900px) {
    .rfq-benefits-grid {
        grid-template-columns: 1fr;
    }
    .rfq-form-layout {
        grid-template-columns: 1fr;
    }
    .rfq-form-visual {
        aspect-ratio: 16/9;
        order: -1;
    }
}

@media (max-width: 600px) {
    .rfq-form-wrap { padding: 24px 20px; }
    .rfq-form-grid {
        grid-template-columns: 1fr;
    }
    .rfq-form-full { grid-column: span 1; }
}
