

:root {
  --bg-dark: #121315;
  --bg-card: #1a1c1e;
  --gold: #d4af37;
  --gold-muted: #9e8226;
  --text-light: #f3f3f3;
  --text-dim: #9aa0a6;
  --border-color: #2a2d32;
  --whatsapp: #25d366;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-bottom: 75px;
  letter-spacing: -0.01em;
}

.font-serif {
  font-family: 'Cormorant', serif;
}

.text-gold {
  color: var(--gold) !important;
}

.text-dim {
  color: var(--text-dim) !important;
}

.hover-gold:hover {
  color: var(--gold) !important;
  transition: color 0.3s ease;
}

/* ==========================================
   Navigation Bar (Mavi Renk Engelleme Dahil)
   ========================================== */
.nav-luxury {
  background: rgba(18, 19, 21, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 1050;
}

/* Navigasyon Bağlantıları & Aktif Menü (Ana Sayfa Mavileşme Önleme) */
.nav-luxury .navbar-nav .nav-link {
  color: var(--text-dim) !important;
  transition: color 0.3s ease;
}

.nav-luxury .navbar-nav .nav-link:hover,
.nav-luxury .navbar-nav .nav-link:focus,
.nav-luxury .navbar-nav .nav-link.active,
.nav-luxury .navbar-nav .nav-link.show {
  color: var(--gold) !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.site-logo {
  height: 125px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

.navbar-toggler {
  border: 1px solid var(--gold) !important;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-espor-danismani {
  border-color: var(--gold);
  color: var(--gold);
  white-space: nowrap;
}

.btn-espor-danismani:hover {
  background-color: var(--gold);
  color: #121315 !important;
}

/* Multi-Page Menü & Dropdown Temel Stiller (Mobil ve Masaüstü Uyumlu) */
.nav-luxury .dropdown-menu {
  background-color: #1a1c1e !important;
  border: 1px solid var(--gold) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9) !important;
  border-radius: 6px;
  box-sizing: border-box;
  overflow-x: hidden !important;
}

.nav-luxury .dropdown-item {
  color: var(--text-light) !important;
  padding: 8px 14px;
  transition: all 0.25s ease;
  font-weight: 500;
  display: block;
  width: 100%;
  white-space: normal; /* Mobilde uzun başlıkların taşmasını önler */
}

.nav-luxury .dropdown-item:hover,
.nav-luxury .dropdown-item:focus,
.nav-luxury .dropdown-item.active {
  background-color: rgba(212, 175, 55, 0.15) !important;
  color: var(--gold) !important;
  transform: translateX(4px);
}

/* Mobilde Dropdown Taşma Çözümü */
@media (max-width: 991.98px) {
  .nav-luxury .dropdown-menu {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    float: none;
    margin-top: 5px;
  }
}

/* Masaüstü Ekranlarda 2 Sütunlu Geniş Açılır Menü Düzenlemesi */
@media (min-width: 992px) {
  .nav-luxury .dropdown-menu {
    width: 480px !important;
    min-width: 480px !important;
    margin-top: 0 !important;
    top: 100%;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }

  .nav-luxury .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
  }

  .nav-luxury .dropdown:hover .dropdown-menu,
  .nav-luxury .dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* ==========================================
   Hero Section & Bannerlar
   ========================================== */
.hero-editorial {
  padding: 40px 0 60px;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, rgba(18, 19, 21, 1) 70%);
  border-bottom: 1px solid var(--border-color);
}

.hero-badge {
  border-color: rgba(212, 175, 55, 0.4) !important;
}

.hero-title {
  font-family: 'Cormorant', serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
}

.hero-title span {
  font-style: italic;
  color: var(--gold);
}

.breadcrumb-item a {
  color: var(--text-dim) !important;
}

.breadcrumb-item a:hover {
  color: var(--gold) !important;
}

.breadcrumb-item.active {
  color: var(--gold) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--border-color);
}

/* ==========================================
   Kartlar & İçerik Kutuları
   ========================================== */
.card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.card-luxury:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-luxury:hover::before {
  transform: scaleX(1);
}

.category-section {
  background: rgba(255, 255, 255, 0.01);
}

.category-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.category-img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.card-luxury:hover .category-img {
  transform: scale(1.08);
  filter: brightness(1);
}

.cta-banner {
  background: linear-gradient(135deg, #1a1c1e 0%, #141618 100%);
  border: 1px solid var(--border-color);
}

/* ==========================================
   Form Elemanları
   ========================================== */
.valuation-box {
  background: linear-gradient(135deg, #1a1c1e 0%, #141618 100%);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px;
}

.form-control-luxury {
  background: #121315;
  border: 1px solid var(--border-color);
  color: var(--text-light) !important;
  padding: 14px 18px;
  border-radius: 4px;
}

.form-control-luxury:focus {
  background: #121315;
  border-color: var(--gold);
  color: #fff;
  box-shadow: none;
}

.form-control-luxury::placeholder {
  color: var(--text-dim) !important;
  opacity: 0.85 !important;
}

/* ==========================================
   Accordion (S.S.S)
   ========================================== */
.accordion-item {
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 6px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--bg-card) !important;
  color: var(--text-light) !important;
  font-weight: 600;
  box-shadow: none !important;
  padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background-color: rgba(212, 175, 55, 0.05) !important;
  border-bottom: 1px solid var(--border-color);
}

.accordion-button::after {
  filter: invert(1) brightness(0.8);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(75%) sepia(50%) saturate(1000%) hue-rotate(5deg);
}

.accordion-body {
  background-color: var(--bg-card) !important;
  color: var(--text-light) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 20px 24px;
  text-align: left;
}

.accordion-body strong {
  color: var(--gold) !important;
}

/* ==========================================
   Butonlar (Buttons)
   ========================================== */
.btn-gold-luxury {
  background: var(--gold);
  color: #121315;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold-luxury:hover {
  background: #e6c247;
  color: #121315;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   Footer & Sosyal Medya
   ========================================== */
.site-footer {
  background-color: #0b0c0d;
  border-top: 1px solid var(--border-color);
}

.site-footer a {
  color: var(--text-dim) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold) !important;
  text-decoration: none;
}

.footer-logo-wrapper {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 140px;
  width: auto;
  display: inline-block;
  object-fit: contain;
}

.footer-social-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--border-color);
  color: var(--gold) !important;
}

.footer-social-btn.wa {
  color: var(--whatsapp) !important;
}

.section-title-footer {
  color: var(--gold) !important;
}

/* ==========================================
   Sabit (Sticky) Barlar (MOBİL TAŞMA DÜZELTİLDİ)
   ========================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(22, 24, 26, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-color);
  z-index: 1050;
  display: flex;
  padding: 8px 12px;
  gap: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  transform: translateZ(0);
}

.mobile-btn {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 12px 8px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.mobile-btn-call {
  background: var(--border-color);
  color: #fff !important;
}

.mobile-btn-wa {
  background: var(--whatsapp);
  color: #fff !important;
}

.desktop-wa {
  position: fixed;
  bottom: 35px;
  right: 35px;
  background: #1ebe57; /* WhatsApp yeşilinin kontrast oranı daha yüksek tonu */
  color: #ffffff !important; /* Metnin net okunması için tamamen beyaz */
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700; /* Yazı kalınlığı artırılarak okunabilirlik güçlendirildi */
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.desktop-wa:hover {
  transform: scale(1.05);
  color: #fff !important;
}

/* ==========================================
   Responsive Ekran Uyarlamaları
   ========================================== */
@media (max-width: 360px) {
  .mobile-bottom-bar {
    padding: 6px 8px;
    gap: 6px;
  }
  .mobile-btn {
    font-size: 0.75rem;
    padding: 10px 4px;
    gap: 4px;
  }
}

.card-luxury .p-3.bg-dark.d-inline-block,
.border.border-secondary.p-3.rounded {
  text-align: center;
}

.card-luxury .p-3.bg-dark.d-inline-block i,
.border.border-secondary.p-3.rounded i {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto;
  margin-right: auto;
}

.card-luxury {
  text-align: center;
}

@media (max-width: 767px) {
  .desktop-wa { display: none; }
  .hero-title { font-size: 2.3rem; }
  .valuation-box { padding: 24px; }
  .site-logo { height: 70px; }
  .footer-logo { height: 120px; }

  .hero-badge {
    font-size: 0.7rem !important;
    padding: 6px 12px !important;
    white-space: normal !important;
    line-height: 1.3;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-footer {
    text-align: center;
  }
  
  .site-footer ul {
    align-items: center !important;
    justify-content: center !important;
  }

  .site-footer li {
    justify-content: center !important;
    text-align: center;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-luxury .navbar-nav {
    gap: 0.5rem !important;
  }

  .nav-luxury .nav-link {
    font-size: 0.90rem !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .site-logo {
    height: 70px !important;
  }

  .btn-espor-danismani {
    font-size: 0.80rem !important;
    padding: 6px 10px !important;
  }
}

@media (min-width: 768px) {
  .mobile-bottom-bar { display: none; }
  body { padding-bottom: 0; }
}

/* === 2026-09-15 navigation/footer/mobile alignment refinements === */
.nav-luxury .dropdown-menu{max-height:none!important;overflow-y:visible!important;}
@media (min-width:992px){
  .nav-luxury .dropdown-menu{height:auto!important;overflow:visible!important;}
}
.mobile-nav-actions{display:flex;align-items:center;gap:8px;}
.mobile-nav-icon,.mobile-nav-actions .navbar-toggler{width:42px;height:42px;min-width:42px;border:1px solid rgba(212,175,55,.55);border-radius:6px;display:inline-flex;align-items:center;justify-content:center;color:var(--gold)!important;background:rgba(255,255,255,.02);padding:0;text-decoration:none;box-shadow:none!important;}
.mobile-nav-icon{font-size:1.05rem;}
.mobile-nav-icon-wa{color:#68c987!important;border-color:rgba(104,201,135,.5);}
.mobile-nav-actions .navbar-toggler{border-color:rgba(255,255,255,.25)!important;}
.mobile-nav-actions .navbar-toggler:focus{box-shadow:0 0 0 2px rgba(212,175,55,.18)!important;}
.btn-gold-luxury{display:inline-flex!important;align-items:center!important;justify-content:center!important;line-height:1.2!important;vertical-align:middle;}
@media (min-width:768px){.antika-breadcrumb{justify-content:center!important;}}
@media (max-width:767.98px){
  .antika-breadcrumb,.breadcrumb{justify-content:flex-start!important;text-align:left!important;}
  .site-footer{text-align:left!important;}
  .site-footer .footer-logo-wrapper{text-align:left!important;}
  .site-footer .footer-social-wrapper{justify-content:flex-start!important;}
  .site-footer ul{align-items:flex-start!important;justify-content:flex-start!important;}
  .site-footer li{justify-content:flex-start!important;text-align:left!important;}
  .site-footer .row>div{text-align:left!important;}
  .site-footer .d-flex.flex-column.flex-md-row.justify-content-between{align-items:flex-start!important;text-align:left!important;}
  .site-footer .d-flex.gap-4{justify-content:flex-start!important;flex-wrap:wrap;gap:10px 18px!important;}
}
@media (min-width:992px){.mobile-nav-actions{display:none!important;}}

/* === 2026-09-15 fullscreen mobile menu + footer composition === */
@media (max-width: 991.98px) {
  .nav-luxury { position: relative; z-index: 1080; }
  .nav-luxury #mainNavbar {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    padding: 0 20px 28px !important;
    background:
      radial-gradient(circle at 85% 8%, rgba(212,175,55,.11), transparent 28%),
      linear-gradient(180deg, #111315 0%, #0b0c0d 100%);
    overflow-y: auto !important;
    overscroll-behavior: contain;
    z-index: 1095;
  }
  .nav-luxury #mainNavbar.collapsing {
    transition: opacity .22s ease !important;
    height: 100dvh !important;
  }
  .nav-luxury #mainNavbar:not(.show) { display: none; }
  .nav-luxury #mainNavbar.show { display: block !important; }
  .mobile-menu-top {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 76px;
    margin: 0 -20px 18px;
    padding: 14px 20px;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(212,175,55,.18);
    background: rgba(11,12,13,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .mobile-menu-title {
    color: #fff;
    font-family: 'Cormorant', serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .04em;
  }
  .mobile-menu-back,
  .mobile-menu-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.025);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .mobile-menu-back { width: auto; min-width: 74px; gap: 7px; border-radius: 24px; padding: 0 13px; justify-self: start; }
  .mobile-menu-back span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-menu-close { justify-self: end; font-size: 1.05rem; }
  .nav-luxury #mainNavbar .navbar-nav {
    gap: 0 !important;
    width: 100%;
    padding: 0 0 18px !important;
  }
  .nav-luxury #mainNavbar .nav-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-luxury #mainNavbar .nav-link {
    min-height: 56px;
    padding: 16px 4px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .98rem !important;
    letter-spacing: .045em;
  }
  .nav-luxury #mainNavbar .dropdown-menu {
    margin: 0 0 14px !important;
    padding: 10px !important;
    border-color: rgba(212,175,55,.24) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.025) !important;
    box-shadow: none !important;
  }
  .nav-luxury #mainNavbar .dropdown-item {
    padding: 11px 12px;
    border-radius: 8px !important;
    font-size: .9rem;
  }
}

@media (max-width: 767.98px) {
  .site-footer .row.g-4.mb-5 { row-gap: 30px !important; }
  .site-footer .footer-brand-col,
  .site-footer .footer-contact-col { flex: 0 0 100%; max-width: 100%; width: 100%; }
  .site-footer .footer-regions-col,
  .site-footer .footer-services-col { flex: 0 0 50%; max-width: 50%; width: 50%; }
  .site-footer .footer-logo-wrapper { text-align: center !important; }
  .site-footer .footer-brand-col > p { text-align: left !important; }
  .site-footer .footer-regions-col,
  .site-footer .footer-services-col,
  .site-footer .footer-contact-col { text-align: left !important; }
  .site-footer .footer-regions-col ul,
  .site-footer .footer-services-col ul,
  .site-footer .footer-contact-col ul { align-items: flex-start !important; justify-content: flex-start !important; }
  .site-footer .footer-regions-col li,
  .site-footer .footer-services-col li,
  .site-footer .footer-contact-col li { justify-content: flex-start !important; text-align: left !important; }
  .site-footer .footer-regions-col .section-title-footer,
  .site-footer .footer-services-col .section-title-footer { font-size: .78rem !important; line-height: 1.35; }
  .site-footer .footer-regions-col a,
  .site-footer .footer-services-col a { font-size: .78rem; line-height: 1.45; }
  .site-footer .footer-bottom { align-items: center !important; text-align: center !important; }
  .site-footer .footer-bottom > p { width: 100%; text-align: center !important; }
  .site-footer .footer-legal-links {
    width: 100%;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 8px 16px !important;
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .site-footer .footer-regions-col,
  .site-footer .footer-services-col { padding-left: 8px; padding-right: 8px; }
  .site-footer .footer-regions-col a,
  .site-footer .footer-services-col a { font-size: .73rem; }
}


/* === 2026-09-15 scroll-to-top control === */
.scroll-top-btn{
  position:fixed;
  right:28px;
  bottom:102px;
  width:46px;
  height:46px;
  border:1px solid rgba(212,175,55,.58);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(11,13,15,.92);
  color:var(--gold);
  font-size:1.15rem;
  line-height:1;
  z-index:1040;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(12px);
  transition:opacity .22s ease,transform .22s ease,visibility .22s ease,background .22s ease,color .22s ease;
  box-shadow:0 10px 26px rgba(0,0,0,.24);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.scroll-top-btn.is-visible{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);}
.scroll-top-btn:hover,.scroll-top-btn:focus-visible{background:var(--gold);color:#111;outline:none;}
@media (max-width:767.98px){
  .scroll-top-btn{right:14px;bottom:92px;width:42px;height:42px;font-size:1.05rem;z-index:1035;}
}

/* === 2026-09-15 premium lightweight header + hero motion === */
.nav-luxury{
  position:sticky;
  top:0;
  transition:background-color .22s ease,border-color .22s ease,box-shadow .22s ease;
  will-change:auto;
}
.nav-luxury .site-logo{
  transform-origin:center;
  transition:transform .22s ease;
}
.nav-luxury.is-scrolled{
  background:rgba(13,14,16,.975);
  border-bottom-color:rgba(212,175,55,.20);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.nav-luxury.is-scrolled .site-logo{transform:scale(.9);}
.nav-luxury.is-scrolled .site-logo:hover{transform:scale(.94);}

.hero-editorial{isolation:isolate;overflow:hidden;}
.hero-editorial::before{
  content:"";
  position:absolute;
  z-index:-1;
  width:480px;
  height:480px;
  left:50%;
  top:-350px;
  transform:translate3d(-50%,var(--hero-glow-shift,0px),0);
  border-radius:50%;
  background:radial-gradient(circle,rgba(212,175,55,.12) 0%,rgba(212,175,55,.035) 42%,transparent 72%);
  pointer-events:none;
  transition:transform .08s linear;
}
@media (max-width:991.98px){
  .nav-luxury.is-scrolled .site-logo{transform:scale(.96);}
  .hero-editorial::before{width:360px;height:360px;top:-265px;}
}
@media (prefers-reduced-motion:reduce){
  .nav-luxury,.nav-luxury .site-logo,.hero-editorial::before{transition:none!important;}
  .nav-luxury.is-scrolled .site-logo{transform:none;}
  .hero-editorial::before{transform:translate3d(-50%,0,0)!important;}
}

/* 2026-09-15 mobile CTA contrast */
.mobile-btn-wa{background:#147a3b!important;color:#fff!important;}

/* v2.1 - Uzmanlık rehberi: site tasarımına uyumlu kartlar + sayfalama */
.expert-guide-hero{position:relative;overflow:hidden}
.expert-guide-hero:before{content:"";position:absolute;inset:auto 50% -180px auto;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(212,175,55,.12),transparent 68%);pointer-events:none}
.expert-guide-eyebrow{display:inline-flex;align-items:center;justify-content:center;margin-bottom:14px;padding:7px 12px;border:1px solid rgba(212,175,55,.24);border-radius:999px;color:#d4af37;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;background:rgba(212,175,55,.035)}
.expert-guide-intro{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;padding-bottom: 50px;border-bottom:1px solid rgba(255,255,255,.08);padding-left: 25px;padding-right: 25px;}
.expert-guide-intro>div:first-child{max-width:850px}
.expert-guide-summary{flex:0 0 auto;min-width:150px;padding:17px 20px;border:1px solid rgba(212,175,55,.22);border-radius:16px;background:linear-gradient(145deg,rgba(212,175,55,.07),rgba(255,255,255,.018));text-align:center}
.expert-guide-summary strong{display:block;color:#fff;font-family:var(--font-serif,Georgia,serif);font-size:1.8rem;line-height:1}
.expert-guide-summary span{display:block;margin-top:7px;color:#959ca8;font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.045em}
.expert-guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.expert-guide-card{display:flex;flex-direction:column;min-width:0;overflow:hidden;border:1px solid rgba(255,255,255,.09);border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.018));box-shadow:0 20px 50px -42px rgba(0,0,0,.8);transition:border-color .22s ease,transform .22s ease,box-shadow .22s ease}
.expert-guide-card:hover{border-color:rgba(212,175,55,.34);transform:translateY(-3px);box-shadow:0 26px 60px -42px rgba(0,0,0,.9)}
.expert-guide-media{position:relative;display:block;aspect-ratio:16/9;overflow:hidden;background:#111}
.expert-guide-media:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(0,0,0,.6))}
.expert-guide-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease,filter .3s ease;filter:saturate(.92) contrast(1.02)}
.expert-guide-card:hover .expert-guide-media img{transform:scale(1.035)}
.expert-guide-type{position:absolute;z-index:2;left:15px;bottom:14px;display:inline-flex;align-items:center;min-height:28px;padding:5px 10px;border:1px solid rgba(212,175,55,.34);border-radius:999px;background:rgba(13,14,15,.86);backdrop-filter:blur(8px);color:#e0bd52;font-size:.66rem;font-weight:800;letter-spacing:.045em;text-transform:uppercase}
.expert-guide-card-body{display:flex;flex:1;flex-direction:column;padding:22px 22px 24px}
.expert-guide-card-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:13px;color:#858d99;font-size:.69rem}
.expert-guide-card-meta span,.expert-guide-card-meta time{display:inline-flex;align-items:center;gap:6px}
.expert-guide-card-meta i{color:#b89232}
.expert-guide-card h2{font-family:var(--font-serif,Georgia,serif);font-size:1.27rem;line-height:1.38;margin:0 0 12px}
.expert-guide-card h2 a{color:#fff;text-decoration:none;transition:color .18s ease}
.expert-guide-card h2 a:hover{color:#d4af37}
.expert-guide-card p{color:#a1a8b3;font-size:.88rem;line-height:1.72;margin:0 0 20px;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.expert-guide-link{display:inline-flex;align-items:center;gap:8px;margin-top:auto;color:#d4af37;text-decoration:none;font-size:.76rem;font-weight:800;text-transform:uppercase;letter-spacing:.035em}
.expert-guide-link i{transition:transform .18s ease}
.expert-guide-link:hover i{transform:translateX(3px)}
.expert-guide-empty{display:flex;align-items:center;gap:18px;padding:30px;border:1px dashed rgba(212,175,55,.28);border-radius:18px;background:rgba(255,255,255,.018)}
.expert-guide-empty>i{font-size:2rem;color:#d4af37}
.expert-guide-pagination{display:flex;align-items:center;justify-content:center;gap:14px;margin-top:42px;padding-top:30px;border-top:1px solid rgba(255,255,255,.08)}
.expert-page-numbers{display:flex;align-items:center;gap:7px}
.expert-page-btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;min-width:42px;height:42px;padding:0 12px;border:1px solid rgba(255,255,255,.11);border-radius:11px;background:rgba(255,255,255,.025);color:#d9dde3;text-decoration:none;font-size:.78rem;font-weight:800;transition:border-color .18s ease,background .18s ease,color .18s ease,transform .18s ease}
.expert-page-btn:hover{border-color:rgba(212,175,55,.35);background:rgba(212,175,55,.07);color:#e1bf59;transform:translateY(-1px)}
.expert-page-btn.is-active{border-color:#d4af37;background:#d4af37;color:#101112;pointer-events:none}
.expert-page-btn.is-disabled{opacity:.35;pointer-events:none}
.expert-page-nav{min-width:102px}
.expert-page-dots{color:#777f8b;padding:0 3px}
@media(max-width:991.98px){
  .expert-guide-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
}
@media(max-width:767.98px){
  .expert-guide-intro{align-items:flex-start;flex-direction:column;padding-bottom:22px}
  .expert-guide-summary{display:flex;align-items:baseline;gap:7px;min-width:0;padding:11px 14px;text-align:left}
  .expert-guide-summary strong{font-size:1.35rem}
  .expert-guide-summary span{margin-top:0}
  .expert-guide-grid{grid-template-columns:1fr;gap:16px}
  .expert-guide-card{border-radius:15px}
  .expert-guide-card-body{padding:19px}
  .expert-guide-card h2{font-size:1.18rem}
  .expert-guide-pagination{gap:8px;margin-top:32px;padding-top:24px}
  .expert-page-btn{min-width:38px;height:38px;padding:0 10px}
  .expert-page-nav{min-width:38px}
  .expert-page-nav span{display:none}
  .expert-page-numbers{gap:5px}
}

/* === v2.2 - Uzmanlık Rehberi taşma / responsive stabilite düzeltmesi === */
.expert-guide-section,
.expert-guide-section .container,
.expert-guide-intro,
.expert-guide-grid,
.expert-guide-card,
.expert-guide-card-body,
.expert-guide-pagination,
.expert-page-numbers{
  min-width:0;
  max-width:100%;
  box-sizing:border-box;
}
.expert-guide-section{overflow-x:clip;}
.expert-guide-intro>div:first-child{
  min-width:0;
  max-width:min(850px,100%);
}
.expert-guide-intro p,
.expert-guide-intro a,
.expert-guide-hero .hero-title,
.expert-guide-hero p,
.expert-guide-card h2,
.expert-guide-card h2 a,
.expert-guide-card p,
.expert-guide-link,
.expert-guide-card-meta span,
.expert-guide-card-meta time{
  overflow-wrap:anywhere;
  word-break:normal;
  hyphens:auto;
}
.expert-guide-summary{
  max-width:100%;
  min-width:0;
}
.expert-guide-card-body{min-width:0;overflow:hidden;}
.expert-guide-media{width:100%;min-width:0;max-width:100%;}
.expert-guide-media img{max-width:100%;}
.expert-guide-type{
  max-width:calc(100% - 30px);
  white-space:normal;
  line-height:1.25;
  overflow-wrap:anywhere;
}
.expert-guide-card-meta{
  min-width:0;
  max-width:100%;
  flex-wrap:wrap;
  justify-content:flex-start;
  column-gap:16px;
  row-gap:7px;
}
.expert-guide-card-meta span,
.expert-guide-card-meta time{
  min-width:0;
  max-width:100%;
}
.expert-guide-link{max-width:100%;}
.expert-guide-pagination{
  flex-wrap:wrap;
  row-gap:10px;
  overflow:hidden;
}
.expert-page-numbers{
  flex-wrap:wrap;
  justify-content:center;
  max-width:100%;
}
.expert-page-btn{
  flex:0 0 auto;
  box-sizing:border-box;
}

@media(max-width:767.98px){
  .expert-guide-hero .container,
  .expert-guide-section .container{
    width:100%;
    max-width:100%;
  }
  .expert-guide-hero .hero-title{
    max-width:100%;
    font-size:clamp(2rem,10vw,2.65rem);
    line-height:1.08;
  }
  .expert-guide-hero p{font-size:1rem!important;line-height:1.65;}
  .expert-guide-intro{width:100%;gap:18px;}
  .expert-guide-intro>div:first-child{width:100%;}
  .expert-guide-summary{width:auto;max-width:100%;flex-wrap:wrap;}
  .expert-guide-grid{width:100%;}
  .expert-guide-card{width:100%;max-width:100%;}
  .expert-guide-media{aspect-ratio:16/10;}
  .expert-guide-card-body{width:100%;padding:18px 17px 20px;}
  .expert-guide-card h2{font-size:1.16rem;line-height:1.36;}
  .expert-guide-card p{font-size:.86rem;line-height:1.65;}
  .expert-guide-card-meta{font-size:.68rem;}
  .expert-guide-pagination{width:100%;gap:8px;padding-left:0;padding-right:0;}
  .expert-page-numbers{order:3;width:100%;}
  .expert-page-nav{min-width:42px;}
}

@media(max-width:420px){
  .expert-guide-section{padding-left:0!important;padding-right:0!important;}
  .expert-guide-hero .container,
  .expert-guide-section .container{
    padding-left:14px!important;
    padding-right:14px!important;
  }
  .expert-guide-eyebrow{
    max-width:100%;
    white-space:normal;
    text-align:center;
    line-height:1.35;
  }
  .expert-guide-card{border-radius:14px;}
  .expert-guide-type{left:12px;bottom:11px;max-width:calc(100% - 24px);font-size:.62rem;}
  .expert-guide-card-body{padding:17px 15px 19px;}
  .expert-guide-card-meta{column-gap:12px;}
  .expert-page-btn{min-width:36px;height:36px;padding:0 9px;font-size:.74rem;}
  .expert-page-nav{min-width:38px;}
  .expert-page-numbers{gap:4px;}
  .expert-page-dots{padding:0 1px;}
}
