/*
 * Bu dosya, Fahrschule Aksoy web sitesinin tüm özel stillerini içerir.
 */

/* ==================================================================== */
/* GLOBAL FOUNDATIONS                                                     */
/* ==================================================================== */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }

/* Menü içi logo — sadece mobil menü panelinde görünür */
.menu-logo-item { display: none; }

/* ==================================================================== */
/* HAMBURGERİ → X ANİMASYONU                                             */
/* ==================================================================== */
.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #bac934;
    border-radius: 2px;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
    pointer-events: none;
}
.mobile-menu-toggle.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================================================================== */
/* MENÜ BACKDROP                                                          */
/* ==================================================================== */
.menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
    z-index: 98;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.menu-backdrop.visible { display: block; }
body.menu-open { overflow: hidden; }

/* ==================================================================== */
/* MOBILE MENU — 992px ve altı                                           */
/* ==================================================================== */
@media (max-width: 992px) {

    /* Sabit header */
    .header-section {
        position: fixed !important;
        top: 0; left: 0; right: 0;
        background: #1a1a1a !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.35) !important;
        z-index: 100 !important;
    }

    /* Header wrapper */
    .header-wrapper {
        padding: 10px 16px !important;
        min-height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .main__logo .logo img {
        transform: scale(2.0) !important;
        transform-origin: left center !important;
    }

    /* Hamburger butonu */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        background: rgba(186, 201, 52, 0.12) !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 102 !important;
        padding: 0 !important;
        transition: background 0.2s !important;
    }
    .mobile-menu-toggle:active { background: rgba(186,201,52,0.25) !important; }

    /* Desktop termin butonu gizle */
    .menu__components .desktop-btn { display: none !important; }

    /* === MENU PANELİ — soldan kayar === */
    .main-menu,
    .header-section .main-menu {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 82vw !important;
        max-width: 300px !important;
        height: 100dvh !important;
        background: #0f0f0f !important;
        z-index: 99 !important;
        padding: 72px 0 48px !important;
        margin: 0 !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        transform: translateX(-100%) !important;
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: none !important;
    }
    .main-menu.active,
    .header-section .main-menu.active {
        transform: translateX(0) !important;
        box-shadow: 8px 0 32px rgba(0,0,0,0.45) !important;
    }

    /* Menü üst logo */
    .menu-logo-item {
        display: block !important;
        padding: 18px 22px 16px !important;
        border-bottom: 1px solid rgba(186,201,52,0.25) !important;
        margin-bottom: 6px !important;
    }
    .menu-logo-item a {
        display: block !important;
        padding: 0 !important;
        background: none !important;
        justify-content: flex-start !important;
    }
    .menu-logo-item a::after { display: none !important; }
    .menu-logo-item img {
        height: 90px !important;
        width: auto !important;
        transform: none !important;
        display: block !important;
    }

    /* Menü öğeleri */
    .main-menu > li,
    .header-section .main-menu > li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    }
    .main-menu > li:last-child { border-bottom: none !important; }

    /* Menü linkleri */
    .main-menu > li > a,
    .header-section .main-menu > li > a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 16px 22px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #f0f0f0 !important;
        letter-spacing: 0.2px !important;
        text-decoration: none !important;
        transition: color 0.2s, background 0.2s !important;
    }
    .main-menu > li > a:hover { color: #bac934 !important; background: rgba(186,201,52,0.06) !important; }

    /* Dropdown ok işareti — gizli */
    .main-menu .dropdown > a::after { display: none !important; }

    /* Alt menü */
    .main-menu .dropdown > .sub-menu,
    .header-section .main-menu .dropdown > .sub-menu {
        position: static !important;
        box-shadow: none !important;
        background: #181800 !important;
        display: none !important;
        border-left: 3px solid #bac934 !important;
        border-top: none !important;
        padding: 4px 0 !important;
    }
    .main-menu .dropdown.open > .sub-menu,
    .header-section .main-menu .dropdown.open > .sub-menu { display: block !important; }

    .main-menu .dropdown > .sub-menu li a,
    .header-section .main-menu .dropdown > .sub-menu li a {
        padding: 13px 22px 13px 34px !important;
        font-size: 13px !important;
        color: #c8d468 !important;
        font-weight: 400 !important;
        display: block !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
        transition: color 0.2s, background 0.2s !important;
    }
    .main-menu .dropdown > .sub-menu li:last-child a { border-bottom: none !important; }
    .main-menu .dropdown > .sub-menu li a:hover { color: #bac934 !important; background: rgba(186,201,52,0.08) !important; }

    /* Sayfa içeriği için üst boşluk (fixed header) */
    #root > main:first-of-type,
    .banner__section,
    #home { margin-top: 0 !important; }

    body > #root { padding-top: 60px; }
}

/* ==================================================================== */
/* TİPOGRAFİ — FLUİD                                                     */
/* ==================================================================== */
@media (max-width: 768px) {
    .banner__content h1 .hone { font-size: 80% !important; }
    .banner__content h1 .designers { font-size: clamp(32px, 9vw, 52px) !important; }
    .services-highlight__section { padding: 36px 0 !important; }
    .services-highlight__section h2 { font-size: 20px !important; margin-bottom: 20px !important; }
    .highlight-card p { min-height: unset !important; }
}

@media (max-width: 480px) {
    .container { padding-left: 14px !important; padding-right: 14px !important; }
    .highlight-card { padding: 22px 18px !important; }
    .footer__section_simple { padding: 32px 0 16px !important; }
    .footer-clean { font-size: 12px !important; }
}

/* ==================================================================== */
/* RFM Marquee (Kayar Metin) Stilleri - Orijinal olarak inline <style> bloklarından alınmıştır */
/* ==================================================================== */
.rfm-marquee-container {
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  width: var(--width);
  transform: var(--transform);
}
.rfm-marquee-container:hover div {
  animation-play-state: var(--pause-on-hover);
}
.rfm-marquee-container:active div {
  animation-play-state: var(--pause-on-click);
}

.rfm-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.rfm-overlay::before, .rfm-overlay::after {
  background: linear-gradient(to right, var(--gradient-color), transparent);
  content: "";
  height: 100%;
  position: absolute;
  width: var(--gradient-width);
  z-index: 2;
  pointer-events: none;
  touch-action: none;
}
.rfm-overlay::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.rfm-overlay::before {
  left: 0;
  top: 0;
}

.rfm-marquee {
  flex: 0 0 auto;
  min-width: var(--min-width);
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  animation-play-state: var(--play);
  animation-delay: var(--delay);
  animation-direction: var(--direction);
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.rfm-initial-child-container {
  flex: 0 0 auto;
  display: flex;
  min-width: auto;
  flex-direction: row;
  align-items: center;
}

.rfm-child {
  transform: var(--transform);
}

/* ==================================================================== */
/* Footer ve Genel Düzen Stilleri */
/* ==================================================================== */
.footer__section_simple {
    background-color: #222; /* Ein dunkler Hintergrund für einen eleganten Look */
    color: #ccc;
    padding: 50px 0 30px 0;
    font-family: sans-serif;
}

.footer__section_simple .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__section_simple .locations {
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
}

.footer__section_simple .location {
    flex: 1;
    min-width: 280px;
}

.footer__section_simple .location h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__section_simple .location p {
    margin: 0 0 5px 0;
    line-height: 1.7;
    font-size: 15px;
    color: #aaa;
}

.footer__section_simple .copyright_simple {
    border-top: 1px solid #444;
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

.footer__section_simple .copyright_simple p,
.footer__section_simple .copyright_simple a {
    display: inline-block;
    margin: 0 10px;
}

.footer__section_simple .copyright_simple a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__section_simple .copyright_simple a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .footer__section_simple .locations {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .footer__section_simple .locations {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer__section_simple .location {
        margin-bottom: 30px;
    }
}

/* Benutzerdefinierte Stile für Logo und Schriftgröße */
.main__logo .logo img {
    transform: scale(2);
    transform-origin: left center;
}
.header-wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    /* Mobil menü için flex ayarı */
    display: flex;
    justify-content: space-between; 
}
.main-menu {
    margin-left: 60px;
}
.banner__content h1 .hone {
    font-size: 90%;
}

/* --- Mobil Menü Stilleri (992px ve altı) --- */
/* Menü toggle butonu (Hamburger ikonu) */
.mobile-menu-toggle {
    display: none; /* Varsayılan olarak gizle, sadece mobil'de gösterilecek */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #333; /* İkon rengi */
    z-index: 100;
}

@media (max-width: 992px) {
    /* Mobil Menü Butonunu Göster */
    .mobile-menu-toggle {
        display: block;
        font-size: 28px;
        color: #bac934;
    }

    /* Masaüstü Termin Butonunu Gizle */
    .menu__components .desktop-btn {
        display: none !important;
    }

    /* Ana Menü Stilini Mobil Görünüme Uygun Hale Getir */
    .main-menu {
        display: none; /* Mobil görünümde menüyü varsayılan olarak gizle */
        position: absolute;
        top: 100%; /* Başlığın hemen altından başla */
        left: 0;
        width: 100%;
        background-color: #111; /* Menü arkaplan rengi */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        z-index: 10;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        margin-left: 0; /* Mevcut margin'i sıfırla */
    }

    /* Aktif olduğunda menüyü göster */
    .main-menu.active {
        display: flex; 
    }

    .main-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-menu > li:last-child {
        border-bottom: none;
    }

    .main-menu > li > a {
        padding: 15px 20px;
        display: block;
    }
    
    /* Dropdown alt menüleri mobil için düzenle renkleri değiştirirsem buraya gelecem tekrar */
    .main-menu .dropdown > .sub-menu {
        position: static; /* Alt menüleri normal akışa al */
        box-shadow: none;
        padding: 0; /* Padding'i sıfırla */
        background-color: #171a00;
        display: none; /* Varsayılan olarak gizle */
        border-top: 1px solid #eee;
    }
    
    .main-menu .dropdown > .sub-menu li a {
        padding: 10px 20px 10px 40px; /* İçeri kaydır */
    }

    /* Dropdown açıldığında alt menüyü göster */
    .main-menu .dropdown.open > .sub-menu {
        display: block;
    }
}

/* --- Yeni Özel Seminer Alanı Stilleri (Renk Paletine Uygun) --- */
.services-highlight__section {
    padding: 60px 0;
    background-color: #000000; /* Ana Renk: Siyah arka plan */
    text-align: center;
}

.services-highlight__section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff; /* İkincil Renk: Başlık için beyaz metin */
    margin-bottom: 40px;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-card {
    display: block;
    background: #c9f31d; /* İkincil Renk: Kart arka planı beyaz */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #000000; /* Ana Renk: Metin rengi siyah */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid #d4db9b; /* Destek Renk: Hafif border */
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(186, 201, 52, 0.3); /* Vurgu Rengi ile belirgin gölge */
    background-color: #f8f9f3; /* Hafif hover efekti */
}

.highlight-card .icon {
    font-size: 48px;
    color: #bac934; /* Vurgu Renk: İkon rengi */
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000; /* Vurgu Renk: Başlık rengi */
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333; /* Okunurluk için koyu gri */
    margin-bottom: 15px;
    min-height: 48px; 
}

.highlight-card .cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #000000; /* Vurgu Renk: CTA metin rengi */
    border-bottom: 2px solid #bac934; /* Vurgu Renk: CTA alt çizgi */
    transition: color 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover .cta {
    color: #000000; /* Hover'da siyah metin */
    border-bottom-color: #d4db9b; /* Hover'da Destek Renk alt çizgi */
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .highlight-cards {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-highlight__section {
        padding: 40px 0;
    }
}

/* ==================================================================== */
/* Gizli/Redundant Alanların Stilleri */
/* ==================================================================== */
/* Telefon, scroll ve sosyal medya div-Klassen zur KI-Lesbarkeit versteckt, da sie leer/redundant sind */
.banner__leftinfo,
.banner__rightinfo,
.right__infoscroll {
  display: none;
}

/* ==================================================================== */
/* Footer Copyright Stilleri */
/* ==================================================================== */
.footer-clean {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #e0e0e0;
}
.footer-clean .brand {
    font-weight: 600;
}
.footer-clean a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-clean a:hover {
    color: #bac934;
}

/* ==================================================================== */
/* Banner Slider (sağ kolon — orijinal banner__thumb alanı)              */
/* ==================================================================== */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.banner-slider .bslide {
    display: none;
}

.banner-slider .bslide.active {
    display: block;
}

.banner-slider .bslide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: opacity 0.8s ease-in-out;
}

/* Dot göstergeleri */
.bslider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.bslider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    border: 2px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    padding: 0;
}

.bslider-dot.active {
    background: #bac934;
    border-color: #bac934;
    transform: scale(1.35);
}

/* ==================================================================== */
/* DESKTOP HEADER & NAV — 993px+                                         */
/* ==================================================================== */
@media (min-width: 993px) {

    /* Header şeridi */
    .header-section {
        background: #1a1a1a !important;
        box-shadow: 0 2px 20px rgba(0,0,0,0.40) !important;
    }

    .header-wrapper {
        min-height: 76px !important;
        padding: 0 20px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Logo biraz daha rahat */
    .main__logo .logo img {
        transform: scale(1.8) !important;
        transform-origin: left center !important;
    }

    /* Hamburger butonunu masaüstünde gizle */
    .mobile-menu-toggle { display: none !important; }

    /* Menü listesi — yatay sıralama */
    .main-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 2px !important;
        margin-left: 32px !important;
        padding: 0 !important;
        list-style: none !important;
    }

    /* Üst seviye linkler */
    .main-menu > li > a {
        display: block !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #e8e8e8 !important;
        padding: 8px 12px !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        transition: color 0.18s ease, background 0.18s ease !important;
        position: relative !important;
    }
    .main-menu > li > a:hover,
    .main-menu > li:hover > a {
        color: #bac934 !important;
        background: rgba(186,201,52,0.12) !important;
    }

    /* Dropdown container — pozisyon referansı */
    .main-menu .dropdown {
        position: relative !important;
    }

    /* Alt menü kartı
       NOT: framework "display:block !important" zorluyor, display ile kapatmak çalışmıyor.
       Gizleme opacity+visibility+pointer-events ile yapılıyor.
       transform:none — framework'ün translateY(25px) gap'ini sıfırlar. */
    .main-menu .dropdown > .sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        min-width: 230px !important;
        background: #fff !important;
        border-radius: 10px !important;
        box-shadow: 0 8px 36px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.07) !important;
        border: 1px solid rgba(0,0,0,0.07) !important;
        padding: 6px 0 !important;
        z-index: 200 !important;
        list-style: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
        transition: opacity 0.15s ease, visibility 0.15s ease !important;
    }
    .main-menu .dropdown:hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    /* Alt menü öğeleri */
    .main-menu .dropdown > .sub-menu li a {
        display: block !important;
        font-size: 13.5px !important;
        color: #2a2a2a !important;
        font-weight: 500 !important;
        padding: 10px 18px 10px 16px !important;
        white-space: nowrap !important;
        text-decoration: none !important;
        border-left: 3px solid transparent !important;
        transition: color 0.17s, background 0.17s, border-color 0.17s !important;
    }
    .main-menu .dropdown > .sub-menu li a:hover {
        color: #000 !important;
        background: rgba(186,201,52,0.09) !important;
        border-left-color: #bac934 !important;
    }

    /* "Termin vereinbaren" butonu */
    .desktop-btn {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: #bac934 !important;
        color: #000 !important;
        font-weight: 700 !important;
        font-size: 13.5px !important;
        padding: 10px 20px !important;
        border-radius: 7px !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        margin-left: 10px !important;
        transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
        box-shadow: 0 2px 10px rgba(186,201,52,0.30) !important;
    }
    .desktop-btn:hover {
        background: #cede3a !important;
        color: #000 !important;
        transform: translateX(3px) !important;
        box-shadow: 0 4px 18px rgba(186,201,52,0.45) !important;
    }
    .desktop-btn .get__text { line-height: 1; }

}

@keyframes navDropIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ==================================================================== */
/* SEO + Legal Content                                                   */
/* ==================================================================== */
.seo-section {
    background: #111;
    color: #f2f2f2;
    padding: 72px 0;
}

.seo-section.alt {
    background: #151515;
}

.seo-section .section-head {
    max-width: 860px;
    margin: 0 auto 28px;
}

.seo-section h2,
.seo-section h3,
.seo-section h4 {
    color: #f3f3f3;
}

.seo-section p,
.seo-section li {
    color: #d4d4d4;
    line-height: 1.75;
}

.seo-grid,
.location-grid {
    display: grid;
    gap: 20px;
}

.seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card,
.seo-panel,
.location-card,
.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-card a,
.seo-panel a,
.faq-item a,
.location-card a {
    color: #bac934;
    text-decoration: none;
}

.seo-card a:hover,
.seo-panel a:hover,
.faq-item a:hover,
.location-card a:hover {
    text-decoration: underline;
}

.seo-list {
    list-style: disc;
    padding-left: 20px;
}

.cta-row,
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-row {
    margin-top: 24px;
}

.trust-strip {
    margin-top: 18px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(186, 201, 52, 0.1);
    color: #edf0d1;
    font-size: 0.94rem;
}

.cta-button,
.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button {
    background: #bac934;
    color: #111;
}

.cta-button:hover {
    transform: translateY(-1px);
    color: #111;
}

.cta-button-secondary {
    background: transparent;
    color: #f2f2f2;
    border: 1px solid rgba(186, 201, 52, 0.35);
}

.cta-button-secondary:hover {
    transform: translateY(-1px);
    color: #fff;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.legal-page {
    min-height: 100vh;
    padding: 64px 0;
    background: #111;
    color: #f2f2f2;
}

.legal-page .container {
    max-width: 980px;
}

@media (max-width: 900px) {
    .seo-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.service-icon-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #f0f4c8;
    border-radius: 8px;
    display: block;
    margin-bottom: 4px;
    padding: 10px;
}

/* ================================================================ */
/* KAPSAMLI MOBİL RESPONSIVE OVERHAUL                               */
/* ================================================================ */

/* ── 1. Fixed header altında kalan sayfalar (site-nav inject'li) ── */
@media (max-width: 992px) {
    body:not(:has(> #root)) {
        padding-top: 60px;
    }
}

/* ── 2. Ana Sayfa Banner ── */
@media (max-width: 991px) {
    .banner__section {
        padding: 28px 0 20px !important;
    }
    .banner__content h1 .hone {
        font-size: clamp(20px, 6vw, 34px) !important;
        display: block !important;
        line-height: 1.2 !important;
    }
    .banner__content h1 .designers {
        font-size: clamp(32px, 10vw, 54px) !important;
        line-height: 1.1 !important;
    }
    .banner__thumb,
    .banner__thumb.right_up_animat {
        max-width: 360px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 576px) {
    .banner__section {
        padding: 16px 0 16px !important;
    }
    .banner__thumb,
    .banner__thumb.right_up_animat {
        max-width: 270px !important;
    }
    .banner-slider .bslide img {
        border-radius: 10px !important;
    }
    .bslider-dots {
        bottom: 8px !important;
    }
}

/* ── 3. Seminar / Highlight Kartlar ── */
@media (max-width: 576px) {
    .highlight-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .highlight-card {
        padding: 0 0 18px !important;
        text-align: left !important;
        border-radius: 10px !important;
        overflow: hidden !important;
    }
    .highlight-card .icon {
        margin-bottom: 0 !important;
        font-size: inherit !important;
    }
    .service-icon-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 8px 8px 0 0 !important;
        object-fit: contain !important;
        background: #f0f4c8 !important;
        padding: 10px !important;
        margin-bottom: 12px !important;
    }
    .highlight-card h3 {
        font-size: 16px !important;
        margin: 0 16px 6px !important;
    }
    .highlight-card p {
        font-size: 13px !important;
        margin: 0 16px 10px !important;
        min-height: unset !important;
        line-height: 1.5 !important;
    }
    .highlight-card .cta {
        font-size: 13px !important;
        margin-left: 16px !important;
    }
    .services-highlight__section {
        padding: 24px 0 !important;
    }
    .services-highlight__section h2 {
        font-size: 17px !important;
        margin-bottom: 14px !important;
        padding: 0 6px !important;
        line-height: 1.35 !important;
    }
}

/* ── 4. Footer Konumlar ── */
@media (max-width: 768px) {
    .footer__section_simple .locations {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin-bottom: 20px !important;
    }
    .footer__section_simple .location {
        min-width: unset !important;
        width: 100% !important;
        margin-bottom: 22px !important;
        padding-bottom: 18px !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    }
    .footer__section_simple .location:last-child {
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }
    .footer__section_simple {
        padding: 28px 20px 12px !important;
    }
    .footer__section_simple .location h4 {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }
    .footer__section_simple .location p {
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .footer-clean {
        font-size: 11.5px !important;
        padding: 14px 0 !important;
        line-height: 1.9 !important;
    }
    .footer-clean .footer-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 2px 8px !important;
    }
}

/* ── 5. SEO / İçerik Bölümleri ── */
@media (max-width: 768px) {
    .seo-section {
        padding: 36px 0 !important;
    }
    .seo-section .section-head {
        padding: 0 2px !important;
    }
    .seo-section h2 {
        font-size: clamp(19px, 5.5vw, 27px) !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .seo-section h3 {
        font-size: clamp(15px, 4vw, 19px) !important;
    }
    .seo-section p,
    .seo-section li {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
    .seo-card,
    .seo-panel,
    .location-card,
    .faq-item {
        padding: 16px !important;
        border-radius: 8px !important;
    }
    .seo-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .location-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .cta-row {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .cta-button,
    .cta-button-secondary {
        width: 100% !important;
        justify-content: center !important;
        min-height: 52px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
    }
    .trust-strip {
        justify-content: center !important;
        gap: 8px !important;
    }
    .trust-pill {
        font-size: 12px !important;
        padding: 0 10px !important;
    }
    .faq-list {
        gap: 10px !important;
    }
    .faq-item h3 {
        font-size: 15px !important;
    }
}

/* ── 6. İçerik Sayfası Banner ── */
@media (max-width: 768px) {
    .page-banner {
        padding-top: 72px !important;
        padding-bottom: 0 !important;
    }
    .section-padding {
        padding: 36px 16px !important;
    }
    .text-section {
        padding: 0 !important;
    }
}

/* ── 7. Legal Sayfalar ── */
@media (max-width: 768px) {
    .legal-page {
        padding: 24px 0 40px !important;
    }
    .legal-page .container h1 {
        font-size: clamp(22px, 6vw, 32px) !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
    }
    .legal-page .container h2 {
        font-size: clamp(16px, 4.5vw, 21px) !important;
        margin-top: 24px !important;
    }
    .legal-page .container p,
    .legal-page .container li {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
}

/* ── 8. Tablolar (Preisliste) ── */
@media (max-width: 700px) {
    table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        border-radius: 8px !important;
    }
    table th,
    table td {
        padding: 9px 12px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
}

/* ── 9. Container padding ── */
@media (max-width: 480px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ── 10. Touch iyileştirmeleri ── */
@media (max-width: 992px) {
    a, button {
        -webkit-tap-highlight-color: rgba(186, 201, 52, 0.12);
    }
    .footer__section_simple a,
    .footer-clean a {
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
    .highlight-card {
        -webkit-tap-highlight-color: transparent;
    }
}
