/* ============================================================
   MUTLU OTO — PREMIUM AUTO SHOP STYLESHEET
   Kept: core color palette, structure, and component logic
   Upgraded: Hero, Why-Us cards, spacing, typography, mobile
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --primary-glow: rgba(255, 87, 34, 0.25);
    --dark-bg: #1a1f27;
    /* richer near-black */
    --dark-surface: #22282f;
    /* cards on dark */
    --dark-border: #2e3540;
    --light-bg: #f4f6f9;
    --text-dark: #1e2229;
    --text-body: #4a5568;
    --text-muted: #718096;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.13);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.65;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background-color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e8ecf0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* Logo — flush left, perfectly centered vertically */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}

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

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(255, 87, 34, 0.06);
}

/* Nav CTA button */
.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--primary-glow);
}

/* ============================================================
   HERO SECTION — TAM GÖRSEL (Kolaj.jpeg <img> olarak)
   ============================================================ */
.hero {
    position: relative;
    color: var(--white);
    background: var(--dark-bg);
}

/* Kolaj görselini saran kapsayıcı */
.hero-kolaj-wrap {
    position: relative;
    width: 100%;
    overflow: visible;
    /* contain modda taşma yok, clip gerekmez */
    background: var(--dark-bg);
    display: flex;
    align-items: flex-end;
}

/* Kolaj görseli — tamı tamına görünür, hiç kırpılmaz */
.hero-kolaj-img {
    display: block;
    width: 100%;
    height: auto;
    /* oran korunur */
    max-height: 85vh;
    object-fit: contain;
    /* tüm görsel görünür, kırpılmaz */
    object-position: center center;
    margin: 0 auto;
    filter: brightness(0.78) contrast(1.06) saturate(0.88);
}

/* Karanlık gradient — alt kısımda yazılar okunabilsin */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 12, 18, 0.88) 0%,
            rgba(10, 12, 18, 0.50) 45%,
            rgba(10, 12, 18, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Sol alt turuncu accent çizgisi */
.hero-kolaj-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--primary);
    z-index: 3;
}

/* Hero yazı içeriği — kolaj üzerinde, sol altta */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 700px;
    width: 90%;
    padding-bottom: 48px;
    padding-top: 24px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.hero-badge i {
    color: var(--primary);
    font-size: 11px;
}

/* Ana başlık */
.hero-content h1 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.hero-headline-accent {
    color: var(--white);
    display: inline;
    opacity: 0.9;
}

/* Açıklama */
.hero-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    max-width: 480px;
    font-weight: 400;
}

.hero-desc strong {
    color: var(--white);
    font-weight: 600;
}

/* CTA butonlar */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);

    transform: translateY(-2px);
}



/* ============================================================
   SHARED SECTION TITLE
   ============================================================ */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 14px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   ABOUT / NEDEN MUTLU OTO? — ORIGINAL CLEAN CARD STYLE
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.about-card {
    flex: 1;
    text-align: center;
    padding: 48px 32px;
    border: 1px solid #e8ecf0;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.about-card>i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 22px;
    display: block;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* Şirket Hikayesi — kartların üzerinde */
.about-story {
    background: var(--light-bg);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 32px 36px;
    margin-bottom: 56px;
}

.about-story p {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--text-body);
}

.about-story strong {
    color: var(--text-dark);
    font-weight: 700;
}

.about-story em {
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
}

/* ============================================================
   SERVICES (HİZMETLERİMİZ)
   ============================================================ */
.services {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.service-item {
    background-color: var(--white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 87, 34, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 26px;
    color: var(--white);
    background: var(--dark-bg);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    transition: background var(--transition);
}

.service-item:hover .service-icon {
    background-color: var(--primary);
}

.service-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.1px;
}

.service-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
}

/* ============================================================
   MARKALAR (HİZMET VERDİĞİMİZ MARKALAR)
   ============================================================ */
.brands-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* services (light-bg) ile kontrast için */
    border-top: 1px solid #eaedf0;
}

/* Flexbox ile 7 kartı ortalı ve sarmalı düzen */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

/* Her marka kartı */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 140px;
    padding: 24px 16px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Logo görseli — tüm markalar eşit yükseklikte */
.brand-card img {
    max-height: 52px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    /* Renkli logolar beyaz kartta daha elegant durur */
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%);
    /* hover'da tam renk */
}

/* Marka ismi */
.brand-card span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    text-align: center;
}

/* Kapanış notu */
.brands-footnote {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================================
   GALERİ (İŞİN MUTFAĞI)
   ============================================================ */
.gallery-section {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 12 öğe = 3 satır × 4 kolon */
    gap: 12px;
}

/* Her görsel kutusu: 1:1 oran, zoom'ü kır */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    /* mükemmel kare — fotoğraf boyutu fark etmez */
    background-color: var(--dark-border);
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* alanı doldur, kırp */
    object-position: center;
    display: block;
    transition: filter 0.45s ease;
    filter: brightness(0.92) saturate(0.9);
}

/* Hover: parlaklık — zoom kaldırıldı */
.gallery-item:hover img {
    filter: brightness(1.05) saturate(1.1);
}

.gallery-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

/* Hafif turuncu kenarlık accent hover'da */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover::after {
    border-color: rgba(255, 87, 34, 0.5);
}

/* ============================================================
   GALERİ — LIGHTBOX MODAL
   ============================================================ */

/* Galeri görselleri tıklanabilir görünsün */
.gallery-item img {
    cursor: pointer;
}

/* Modal arka plan — tam ekran, yarı saydam siyah */
.gallery-modal {
    display: none;
    /* JS tarafından 'flex' yapılır */
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Büyütülmüş görsel */
.gallery-modal img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    display: block;
    animation: modalImgScale 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalImgScale {
    from {
        transform: scale(0.93);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Kapat (×) butonu — sağ üst */
.gallery-modal-close {
    position: fixed;
    top: 20px;
    right: 28px;
    font-size: 42px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.gallery-modal-close:hover {
    color: var(--primary);
    transform: scale(1.15);
}

/* ============================================================
   FOOTER & İLETİŞİM
   ============================================================ */
.footer {
    /* M.webp arka plan — yoğun karanlık overlay ile araç siluet gibi */
    background:
        linear-gradient(rgba(0, 0, 0, 0.87), rgba(0, 0, 0, 0.87)),
        url('MutluOtoFoto/M.webp') center / cover no-repeat;
    color: var(--white);
    padding: 64px 0 0;
    border-top: 3px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-info h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-info h3 span {
    color: var(--primary);
}

.footer-tagline {
    color: #718096;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-details {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-details p {
    font-size: 14px;
    color: #9aa5b4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details i {
    color: var(--primary);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    /* solid white — no fading */
    opacity: 1;
    /* override any inherited dimming */
    font-size: 16px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* Çalışma Saatleri */
.footer-hours h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-hours h4 i {
    color: var(--primary);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours .day {
    color: #9aa5b4;
}

.footer-hours .time {
    color: var(--white);
    font-weight: 600;
}

.footer-hours li.closed .time {
    color: #fc8181;
}

.footer-map {
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    color: #4a5568;
    font-size: 13px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
    .about-grid {
        flex-wrap: wrap;
    }

    .about-card {
        flex: 1 1 calc(50% - 16px);
    }

    /* Galeri: tablet'te 3 kolon (12 öğe = 4 satır × 3) */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* --- BUG 1 FIX: Navbar — tek satır, ince, logo sol / buton sağ --- */
    .navbar-inner {
        height: 60px;
        /* sabit, ince satır */
        flex-direction: row;
        /* yatay düzen koru */
        align-items: center;
        justify-content: space-between;
        padding: 0;
        /* container zaten iç boşluk verir */
        gap: 0;
    }

    /* Logo sola yaslanır, ortalama kaldırıldı */
    .logo {
        justify-content: flex-start;
        font-size: 20px;
    }

    /* Nav linkleri tamamen gizle */
    .nav-links {
        display: none;
    }

    /* "Hemen Ara" butonu kompakt, sağa yaslanır */
    .nav-btn {
        width: auto;
        /* tam genişlik yerine içeriğe göre */
        padding: 9px 16px;
        font-size: 13px;
        justify-content: center;
    }

    /* --- BUG 2 FIX: Hero — yapışkan header altında gizlenmesin --- */
    .hero {
        padding-top: 60px;
        /* navbar yüksekliğine eşit boşluk */
    }

    /* --- Mobil hero: CSS background ile tam kapsamlı, kırpmasız görsel --- */
    .hero-kolaj-wrap {
        min-height: 80vh;
        display: flex;
        align-items: flex-end;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)),
            url('MutluOtoFoto/Kolaj.jpeg');
        background-size: 100% auto;
        /* tüm genişlik görünür, kırpma yok */
        background-position: center top;
        /* kolaj üstten başlar */
        background-repeat: no-repeat;
        background-color: #111;
        /* görsel altındaki boşluk için koyu dolgu */
    }

    /* Mobilde img etiketi gizlenir — arka plan CSS'ten geliyor */
    .hero-kolaj-img {
        display: none;
    }

    /* Mobilde overlay daha koyu — kısa ekranlarda metin garantili okunur */
    .hero-overlay {
        background: linear-gradient(to top,
                rgba(10, 12, 18, 0.93) 0%,
                rgba(10, 12, 18, 0.65) 50%,
                rgba(10, 12, 18, 0.20) 100%);
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        width: 92%;
        /* her iki kenardan 4% boşluk */
        padding-bottom: 40px;
        padding-top: 24px;
    }

    .hero-badge {
        font-size: 9px;
        /* uzun eyebrow metni sığsın */
        letter-spacing: 0.5px;
        padding: 5px 11px;
        margin-bottom: 12px;
    }

    .hero-content h1 {
        font-size: clamp(20px, 5.5vw, 26px);
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
        max-width: 100%;
        /* tam genişlik kullan */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        /* butonlar tam genişlik */
    }

    .btn {
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    /* About */
    .about {
        padding: 72px 0;
    }

    .about-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* Services */
    .services {
        padding: 72px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Markalar */
    .brands-section {
        padding: 60px 0;
    }

    .brands-grid {
        gap: 12px;
    }

    /* Mobilde her kart biraz daha dar → 3'lü sıra kolayca oluşur */
    .brand-card {
        width: 100px;
        padding: 18px 10px;
        gap: 8px;
    }

    .brand-card img {
        max-height: 40px;
        max-width: 80px;
    }

    .brand-card span {
        font-size: 11px;
    }

    /* Galeri */
    .gallery-section {
        padding: 72px 0;
    }

    /* Galeri: mobilde 2 kolon (12 öğe = 6 satır × 2, parmakla kolay kaydırma) */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-map {
        height: 220px;
    }

    .footer-hours li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 420px)
   ============================================================ */
@media (max-width: 420px) {
    .hero-badge {
        font-size: 8px;
        letter-spacing: 0.4px;
        padding: 4px 10px;
    }

    .hero-content h1 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .hero-desc {
        font-size: 12.5px;
        margin-bottom: 14px;
    }

    .btn {
        padding: 13px 20px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding-top: 0 !important;
    }

    .hero-kolaj-wrap {
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60)),
            url('MutluOtoFoto/KolajWeb.png');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        margin-top: 0 !important;
    }
}