/* --- Değişkenler ve Genel Ayarlar --- */
:root {
    --soft-white: #ffffff;
    --soft-gray: #f8f9fa;
    --kurumsal-kirmizi: #e63946;
    --kirmizi-hover: #c1121f;
    --text-dark: #2b2d42;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    color: var(--text-dark); 
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Duyuru ve Arama --- */
.top-announcement {
    background-color: var(--kurumsal-kirmizi);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 14px;
}

.search-bar-area {
    background-color: var(--soft-gray);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* --- Menü --- */
.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}
.navbar-nav .nav-link:hover { color: var(--kurumsal-kirmizi) !important; }

/* --- Butonlar --- */
.btn-kirmizi { 
    background-color: var(--kurumsal-kirmizi); 
    color: white; 
    border: none; 
    padding: 10px 25px; 
    transition: 0.3s; 
    font-weight: 600; 
}
.btn-kirmizi:hover { 
    background-color: var(--kirmizi-hover); 
    color: white; 
    transform: translateY(-2px); 
}

/* --- Slider Ayarları --- */
.custom-slider-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 0 0;
}

#anaSlider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#anaSlider .carousel-item {
    background-color: #000;
}

#anaSlider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-height {
    height: 550px;
    position: relative;
}

.carousel-caption {
    top: auto;
    bottom: 48px;
    transform: none;
    background: rgba(0, 0, 0, 0.45);
    padding: 28px 36px;
    border-radius: 12px;
    width: auto;
    max-width: 520px;
    left: 48px;
    right: auto;
    text-align: left;
}

.carousel {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* --- Sectionlar --- */
section { padding: 80px 0; }
.section-title { font-weight: 700; margin-bottom: 40px; position: relative; padding-bottom: 15px; }
.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 50px; 
    height: 3px; 
    background: var(--kurumsal-kirmizi); 
}
/* Sol başlık + sağ buton düzeni */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-left: 4px solid var(--kurumsal-kirmizi);
    background: #f8f8f8;
    border-radius: 0 8px 8px 0;
}
.section-header .section-title {
    margin-bottom: 0;
    padding-bottom: 0;
}
.section-header .section-title::after {
    display: none;
}
.section-header .btn-tumunu-gor {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--kurumsal-kirmizi);
    border: 1.5px solid var(--kurumsal-kirmizi);
    border-radius: 6px;
    padding: 5px 14px;
    text-decoration: none;
    transition: background .2s, color .2s;
    flex-shrink: 0;
    background: none;
}
.section-header .btn-tumunu-gor:hover {
    background: var(--kurumsal-kirmizi);
    color: #fff;
}

/* --- Mağaza Kartları (Anasayfa) --- */
.magaza-kart {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    color: var(--text-dark);
}
.magaza-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    color: var(--text-dark);
}

.magaza-kart-logo {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.25s;
}
.magaza-kart:hover .magaza-kart-logo {
    background: #fff5f5;
}
.magaza-kart-logo img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
}
.magaza-kart-logo-fallback {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--kurumsal-kirmizi);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magaza-kart-body {
    padding: 20px 24px 12px;
    flex: 1;
}
.magaza-kart-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.magaza-kart-cat {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.magaza-kart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-top: 1px solid #f5f5f5;
    background: #fafafa;
}
.magaza-kart-branches {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}
.magaza-kart-branches i { color: var(--kurumsal-kirmizi); }

.magaza-kart-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--kurumsal-kirmizi);
    transition: gap 0.2s;
}
.magaza-kart:hover .magaza-kart-cta i {
    transform: translateX(3px);
    display: inline-block;
    transition: transform 0.2s;
}

.media-box { 
    position: relative; 
    border-radius: 10px; 
    overflow: hidden; 
    cursor: pointer; 
    height: 250px; 
    background: #1a1a1a;
}
.media-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.media-box:hover img { transform: scale(1.05); filter: brightness(0.7); }
.play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(230,57,70,0.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: white;
    transition: transform 0.2s, background 0.2s;
    pointer-events: none;
}
.media-box:hover .play-btn { transform: translate(-50%,-50%) scale(1.12); background: var(--kirmizi-hover); }
.media-title-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff; font-size: 13px; font-weight: 600;
    padding: 20px 10px 8px;
    opacity: 0; transition: opacity 0.3s;
}
.media-box:hover .media-title-overlay { opacity: 1; }

/* --- Footer --- */
footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; }
footer h5 { color: #fff; margin-bottom: 20px; }
footer a { color: #ccc; text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--kurumsal-kirmizi); }




/* --- Mağaza Detay Sayfası Özel Stilleri --- */
.store-header {
    background: var(--soft-gray);
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.store-logo-detail {
    display: block;
    height: 60px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .store-logo-detail {
        height: 44px;
        max-width: 80px;
    }
}

.branch-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.branch-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--kurumsal-kirmizi);
}

.branch-title {
    color: var(--kurumsal-kirmizi);
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.contact-link {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--kurumsal-kirmizi);
}

.social-follow-label {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.social-icons-store {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons-store a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.social-icons-store a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
    color: #fff;
}

.social-icons-store a .fa-facebook-f  { }
.social-icons-store a:has(.fa-facebook-f)  { background: #1877f2; }
.social-icons-store a:has(.fa-instagram)   { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icons-store a:has(.fa-x-twitter)   { background: #000; }
.social-icons-store a:has(.fa-youtube)     { background: #ff0000; }
.social-icons-store a:has(.fa-linkedin-in) { background: #0077b5; }
.social-icons-store a:has(.fa-tiktok)      { background: #010101; }

/* PHP 7.x için :has() desteği olmayan tarayıcılara fallback */
.social-icon-fb   { background: #1877f2; }
.social-icon-ig   { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon-tw   { background: #000; }
.social-icon-yt   { background: #ff0000; }
.social-icon-li   { background: #0077b5; }

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    letter-spacing: 0.3px;
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
    color: white;
}
.btn-whatsapp i { font-size: 20px; }

/* ─── Floating WhatsApp ─── */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: transform 0.2s;
    animation: wa-pulse 2.5s infinite;
    /* taşmayı önle */
    max-width: 56px;
    max-height: 56px;
    overflow: hidden;
    box-sizing: border-box;
}
.floating-whatsapp:hover { transform: scale(1.12); color: #fff; animation: none; }

@media (max-width: 575.98px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
        font-size: 24px;
        max-width: 50px;
        max-height: 50px;
    }
}
@keyframes wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── Aksiyon Butonları ─── */
.branch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    border: 2px solid transparent;
}
.btn-action:hover { transform: translateY(-2px); }
.btn-action-call   { background:var(--kurumsal-kirmizi); color:#fff; }
.btn-action-call:hover { background:var(--kirmizi-hover); color:#fff; }
.btn-action-wa     { background: linear-gradient(135deg,#25d366,#128c7e); color:#fff; box-shadow:0 3px 10px rgba(37,211,102,.3); }
.btn-action-wa:hover { box-shadow:0 6px 18px rgba(37,211,102,.4); color:#fff; }
.btn-action-mail   { background:#f0f4ff; color:#3b5bdb; border-color:#dbe4ff; }
.btn-action-mail:hover { background:#dbe4ff; color:#3b5bdb; }
.btn-action-dir    { background:#f8f9fa; color:#2b2d42; border-color:#dee2e6; }
.btn-action-dir:hover { background:#e9ecef; color:#2b2d42; }
.btn-action-review { background:#fff7ed; color:#ea580c; border-color:#fed7aa; display:inline-flex; align-items:center; gap:6px; }
.btn-action-review:hover { background:#ffedd5; color:#ea580c; }

/* ─── Google Puan ─── */
.google-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    display: inline-flex;
    border: 1px solid #eee;
}
.google-rating .stars { color: #f59e0b; font-size: 13px; }

/* ─── Çalışma Saatleri — saf HTML details/summary ─── */
.hours-details {
    margin-bottom: 0;
}
.hours-summary {
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 7px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    user-select: none;
    list-style: none;
    -webkit-appearance: none;
    appearance: none;
}
.hours-summary::-webkit-details-marker { display: none; }
.hours-summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.2s;
}
details[open] .hours-summary::after {
    transform: rotate(180deg);
}
.hours-summary:hover { background: #f0f0f0; }
.hours-list {
    margin-top: 8px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 14px;
    border-bottom: 1px solid #f5f5f5;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { background: #fff8f0; font-weight: 700; }
.hours-day { color: #6b7280; min-width: 80px; }
.hours-row.today .hours-day { color: var(--kurumsal-kirmizi); }
.hours-val { font-weight: 600; }
.hours-val.closed { color: #9ca3af; font-weight: 400; }

/* ─── Fotoğraf Galerisi ─── */
.gallery-thumb {
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
    cursor: pointer;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.gallery-thumb:hover img { transform: scale(1.08); }

/* ─── Kampanya Bandı ─── */
.campaign-band {
    background: linear-gradient(90deg, var(--kurumsal-kirmizi), var(--kirmizi-hover));
    color: #fff;
    padding: 12px 0;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    height: 300px;
}

/* --- Mağaza Detay Sayfası Özel Stilleri --- */
/* ─── Footer Sosyal Medya ─── */
.social-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ccc;
    margin-right: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.social-footer a:hover {
    background: var(--kurumsal-kirmizi);
    color: white;
    transform: translateY(-3px);
}

/* ─── Blog Kartları ─── */
.blog-card { transition: .3s; border-radius: 12px !important; overflow: hidden; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.10) !important; }

.blog-card-img { position: relative; overflow: hidden; height: 210px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-cat-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--kurumsal-kirmizi); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 10px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
}

.blog-meta { font-size: 12px; color: #9ca3af; }
.blog-card-title { font-weight: 700; font-size: 1rem; line-height: 1.4; }

/* Blog detay içerik stilleri */
.blog-content { line-height: 1.85; color: #374151; }
.blog-content h2, .blog-content h3 { font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; }
.blog-content p  { margin-bottom: 1.2rem; }
.blog-content img { max-width: 100%; border-radius: 10px; margin: 1rem 0; }
.blog-content blockquote {
    border-left: 4px solid var(--kurumsal-kirmizi);
    padding: 12px 20px; background: #f8f9fa;
    border-radius: 0 8px 8px 0; margin: 1.5rem 0;
    font-style: italic; color: #6b7280;
}

/* ─── Sayfalama ─── */
.pagination-kurumsal { gap: 4px; }
.pagination-kurumsal .page-link {
    border-radius: 8px !important;
    border: 1.5px solid #e9ecef;
    color: #2b2d42;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 14px;
    transition: .2s;
    min-width: 40px;
    text-align: center;
}
.pagination-kurumsal .page-link:hover {
    background: var(--kurumsal-kirmizi);
    border-color: var(--kurumsal-kirmizi);
    color: #fff;
}
.pagination-kurumsal .page-item.active .page-link {
    background: var(--kurumsal-kirmizi);
    border-color: var(--kurumsal-kirmizi);
    color: #fff;
    box-shadow: 0 4px 12px rgba(230,57,70,.35);
}
.pagination-kurumsal .page-item.disabled .page-link {
    opacity: .4;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   TARİHÇE SAYFASI
═══════════════════════════════════════════════════════════ */

/* Hero */

/* ── Ortak Sayfa Hero ─────────────────────────────────────── */
.page-hero {
    background: #0f1117;
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,
            rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px,
            transparent 1px, transparent 64px),
        repeating-linear-gradient(0deg,
            rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px,
            transparent 1px, transparent 64px);
    pointer-events: none;
    z-index: 0;
}
.page-hero-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--kurumsal-kirmizi);
    pointer-events: none;
    z-index: 0;
}
.page-hero-blob-1 {
    width: 380px; height: 380px;
    right: -80px; top: -100px;
    opacity: .07;
}
.page-hero-blob-2 {
    width: 220px; height: 220px;
    left: 35%; bottom: -90px;
    opacity: .04;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
}
.page-hero-tag {
    display: none;
}
.page-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -.5px;
    line-height: 1.15;
}
.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    margin: 0 0 20px;
}
.page-hero .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}
.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
}
.page-hero .breadcrumb-item a:hover { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.75); font-size: 13px; }
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.25);
}
.page-hero-divider {
    width: 48px;
    height: 3px;
    background: var(--kurumsal-kirmizi);
    border-radius: 2px;
    margin: 0 0 20px;
}

/* tarihce-hero artık page-hero alias */
.tarihce-hero { }

/* Section */
.tarihce-section {
    padding: 70px 0 80px;
    background: #fff;
}

/* Timeline sarmalayıcı */
.timeline-wrap {
    position: relative;
    padding-left: 0;
}

/* Merkez dikey çizgi */
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0; bottom: 0;
    width: 2px;
    background: #e8e8e8;
}

/* Yıl grubu */
.timeline-year-group {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
    position: relative;
}

/* Yıl etiketi sol kolon */
.timeline-year-label {
    width: 120px;
    flex-shrink: 0;
    padding-top: 4px;
    text-align: right;
    padding-right: 20px;
    position: relative;
}

/* Yıl rozeti */
.timeline-year-badge {
    display: inline-block;
    background: var(--kurumsal-kirmizi);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

/* Zincir noktası - yıl ile çizginin kesişim yeri */
.timeline-year-label::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 14px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--kurumsal-kirmizi);
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--kurumsal-kirmizi);
    z-index: 2;
}

/* Olaylar sağ kolon */
.timeline-events {
    flex: 1;
    padding-left: 30px;
    padding-top: 2px;
}

/* Tek olay */
.timeline-event {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s, transform 0.2s;
}
.timeline-event:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

/* Fotoğraf */
.timeline-event-foto {
    width: 100%;
    max-height: 340px;
    overflow: hidden;
}
.timeline-foto-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.timeline-event:hover .timeline-foto-img {
    transform: scale(1.03);
}

/* İçerik */
.timeline-event-content {
    padding: 22px 26px;
}
.timeline-event-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1d23;
    margin: 0 0 10px;
}
.timeline-event-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-wrap::before { left: 60px; }
    .timeline-year-label { width: 70px; padding-right: 16px; }
    .timeline-year-badge { font-size: 12px; padding: 4px 8px; }
    .timeline-year-label::after { right: -6px; }
    .timeline-events { padding-left: 20px; }
    .tarihce-hero-title { font-size: 28px; }
    .page-hero-title { font-size: 28px; }
    .timeline-foto-img { height: 200px; }
}

/* ─── Referanslar ─────────────────────────────────────────── */
.ref-kart {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 12px;
    min-height: 90px;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    filter: grayscale(60%);
    opacity: .85;
}
.ref-kart:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
    transform: translateY(-3px);
    border-color: #cbd5e1;
    filter: grayscale(0%);
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════ */
/* İLETİŞİM SAYFASI                                           */
/* ═══════════════════════════════════════════════════════════ */

/* Hero */
/* iletisim-hero artık page-hero alias */
.iletisim-hero { }

/* Section */
.iletisim-section {
    padding: 70px 0 80px;
    background: #fff;
}

/* ─── Bilgi Kartları ─── */
.iletisim-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.iletisim-info-kart {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #eef0f3;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.iletisim-info-kart:hover {
    border-color: var(--kurumsal-kirmizi);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.iletisim-info-ikon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--kurumsal-kirmizi);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.iletisim-ikon-wa {
    background: #25d366;
}
.iletisim-info-icerik {
    flex: 1;
}
.iletisim-info-baslik {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.iletisim-info-deger {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
a.iletisim-info-deger:hover {
    color: var(--kurumsal-kirmizi);
}

/* ─── Çalışma Saatleri ─── */
.iletisim-saat-kart {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid #eef0f3;
}
.iletisim-saat-baslik {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.iletisim-saat-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}
.iletisim-saat-satir:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.iletisim-saat-deger {
    font-weight: 600;
    color: var(--text-dark);
}
.iletisim-kapali {
    color: var(--kurumsal-kirmizi);
}

/* ─── Form Kartı ─── */
.iletisim-form-kart {
    background: #fff;
    border-radius: 16px;
    padding: 36px 38px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    border: 1px solid #eef0f3;
}
.iletisim-form-baslik {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.iletisim-form-aciklama {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}
.iletisim-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}
.iletisim-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    -webkit-appearance: none;
}
.iletisim-input:focus {
    border-color: var(--kurumsal-kirmizi);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.10);
}
.iletisim-textarea {
    resize: vertical;
    min-height: 130px;
}
.iletisim-submit-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.iletisim-submit-btn:hover {
    background-color: var(--kirmizi-hover);
    transform: translateY(-2px);
}

/* ─── Form Alert ─── */
.iletisim-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.iletisim-alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.iletisim-alert-error {
    background: #fff1f2;
    color: var(--kurumsal-kirmizi);
    border: 1px solid #fecdd3;
}

/* ─── Harita ─── */
.iletisim-harita-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #eef0f3;
}
.iletisim-harita-container iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: none;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .iletisim-hero-title { font-size: 28px; }
    .sayfa-hero-title { font-size: 26px; }
    .iletisim-form-kart  { padding: 24px 20px; }
    .iletisim-harita-container iframe { height: 280px; }
}

/* ═══════════════════════════════════════════════════════════ */
/* DİNAMİK SAYFALAR (sayfa.php)                               */
/* ═══════════════════════════════════════════════════════════ */

/* Hero */
/* sayfa-hero artık page-hero alias */
.sayfa-hero { }

/* İçerik Section */
.sayfa-icerik-section {
    padding: 60px 0 80px;
    background: #fff;
}

/* İçerik Kutusu */
.sayfa-icerik-box {
    font-size: 15px;
    line-height: 1.85;
    color: #374151;
}
.sayfa-icerik-box h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.8em 0 .6em;
    padding-bottom: .4em;
    border-bottom: 2px solid #f1f1f1;
}
.sayfa-icerik-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.4em 0 .5em;
}
.sayfa-icerik-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.2em 0 .4em;
}
.sayfa-icerik-box p  { margin-bottom: 1em; }
.sayfa-icerik-box ul,
.sayfa-icerik-box ol { padding-left: 1.6em; margin-bottom: 1em; }
.sayfa-icerik-box li { margin-bottom: .4em; }
.sayfa-icerik-box a  { color: var(--kurumsal-kirmizi); }
.sayfa-icerik-box a:hover { color: var(--kirmizi-hover); }
.sayfa-icerik-box hr {
    border: none;
    border-top: 2px solid #f1f1f1;
    margin: 2em 0;
}
.sayfa-icerik-box strong { color: var(--text-dark); }
.sayfa-icerik-box blockquote {
    border-left: 4px solid var(--kurumsal-kirmizi);
    margin: 1.5em 0;
    padding: 12px 20px;
    background: #fff8f8;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

@media (max-width: 768px) {
    .sayfa-hero-title { font-size: 26px; }
    .sayfa-icerik-section { padding: 40px 0 60px; }
}

/* ── Blog / Multimedya Sayfa Başlığı ─────────────────────── */
.sayfa-baslik-band {
    background: var(--soft-gray);
    border-bottom: 1px solid #e9ecef;
    padding: 28px 0 22px;
}
.sayfa-baslik-band .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
}
.sayfa-baslik-band .breadcrumb-item a {
    color: var(--kurumsal-kirmizi);
    text-decoration: none;
    font-size: 13px;
}
.sayfa-baslik-band .breadcrumb-item,
.sayfa-baslik-band .breadcrumb-item.active { font-size: 13px; color: #6b7280; }
.sayfa-baslik-band .breadcrumb-item + .breadcrumb-item::before { color: #cbd5e1; }
.sayfa-baslik-band-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 6px 0 0;
    letter-spacing: -.3px;
}
.sayfa-baslik-band-title span {
    color: inherit;
}
.sayfa-baslik-band-sub {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0;
}
