/**
 * -------------------------------------------------------------------
 * Proje      : Mehmet Yetiş Sigorta - Kurumsal Web Sitesi
 * Müşteri    : Mehmet Yetiş Sigorta
 * Ajans      : Medyablack
 * Geliştirici: Ahmet Enes ZIVLAK
 * İletişim   : zivlakenes@gmail.com
 * Açıklama   : Özel admin panelli, %100 dinamik ve responsive kurumsal web altyapısı.
 * -------------------------------------------------------------------
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ===== PREMIUM CSS DEĞİŞKENLERİ ===== */
:root {
  --black-solid: #050505;
  --black-rich: #111111;
  --black-light: #1f1f1f;

  --gold-primary: #D4AF37;
  /* Klasik Lüks Altın */
  --gold-light: #F3E5AB;
  --gold-dark: #AA8222;
  --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);

  --white: #ffffff;
  --gray-bg: #FAFAFA;
  --gray-border: #EAEAEA;
  --gray-text: #666666;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);

  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden !important;
  /* Yatay taşmaları tamamen gizler */
}

body {
  font-family: var(--font-body);
  color: var(--gray-text);
  background-color: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--black-rich);
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mt-4 {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 2px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black-solid);
  border: none;
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-solid);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-gold:hover {
  color: var(--white);
}

.btn-gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-black {
  background: var(--black-solid);
  color: var(--white);
}

.btn-black:hover {
  background: var(--gold-primary);
  color: var(--black-solid);
}

.btn-outline,
.btn-outline-white {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn-outline:hover,
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black-solid);
}

/* ===== PREMIUM HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background-color: var(--black-solid);
}

.slider-wrapper,
.slide {
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.6) 50%, rgba(5, 5, 5, 0.1) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.content-box {
  max-width: 650px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.3s;
}

.slide.active .content-box {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
}

.slide-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background: var(--gold-primary);
}

.slide-content h1 {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}

.gold-text {
  color: var(--gold-primary);
}

.slide-content p {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 300;
}

.slide-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.slider-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.slider-nav {
  display: flex;
  gap: 15px;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black-solid);
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--gold-primary);
  transform: scale(1.5);
}

/* ===== SECTIONS GENEL ===== */
.section-padding {
  padding: 120px 0;
}

.bg-gray {
  background-color: var(--gray-bg);
}

.section-tag {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 25px;
}

.section-divider {
  width: 1px;
  height: 60px;
  background: var(--gold-primary);
  margin: 0 auto 30px;
}

.section-divider.left {
  margin: 0 0 30px 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== SERVICES (PREMIUM KARTLAR) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: var(--white);
  padding: 50px 40px;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
  z-index: 1;
}

.card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-border);
  z-index: -1;
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover .card-border {
  border-color: var(--gold-primary);
  transform: scale(0.95);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black-rich);
}

.service-link i {
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ===== ABOUT (MODERN OVERLAY) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--black-solid);
  color: var(--white);
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  /* Gold border */
  box-shadow: var(--shadow-hover);
}

.experience-badge .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lead-text {
  font-size: 1.2rem;
  color: var(--black-rich);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-features-list {
  margin-top: 30px;
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--black-rich);
  font-weight: 500;
}

.about-features-list i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

/* ===== CTA PREMIUM ===== */
.cta-premium {
  position: relative;
  padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.9);
  /* Koyu Overlay */
}

.relative-z {
  position: relative;
  z-index: 2;
}

.cta-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cta-text h2 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 15px;
  max-width: 600px;
}

.cta-text p {
  color: #cccccc;
  font-size: 1.1rem;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 20px;
}

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.news-card {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.news-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--white);
  padding: 10px 15px;
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.news-date span {
  display: block;
  font-size: 1.8rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.news-content {
  padding: 35px;
}

.news-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: color var(--transition-fast);
}

.news-card:hover .news-content h3 {
  color: var(--gold-primary);
}

.news-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .slide-content h1 {
    font-size: 3.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .experience-badge {
    right: 0;
    bottom: -20px;
    padding: 25px;
  }

  .cta-content-wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .cta-text h2,
  .cta-text p {
    margin: 0 auto 15px;
  }
}

@media (max-width: 576px) {
  .slide-content h1 {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}


/* ===== TOP BAR ===== */
.top-bar {
  background-color: var(--black-solid);
  color: #a0a0a0;
  padding: 10px 0;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: #a0a0a0;
  transition: var(--transition-fast);
}

.top-bar a:hover {
  color: var(--gold-primary);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar-left i {
  color: var(--gold-primary);
  margin-right: 5px;
}

.top-bar-left .divider {
  color: #444;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-border);
  transition: var(--transition-fast);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  flex-wrap: nowrap;
  gap: 30px;
  /* Logo, menü ve butonun birbirine çarpmasını engeller */
}

.logo {
  flex-shrink: 0;
}

.header.scrolled .header-inner {
  height: 75px;
}

/* Logo */
.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black-solid);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray-text);
  margin-top: 5px;
}

/* Navigasyon */
.main-nav .nav-list {
  display: flex;
  gap: 25px;
  /* Eskiden 35px'ti, sığması için 25px'e çektik */
  align-items: center;
}

.main-nav .nav-list a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--black-rich);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
  /* KRİTİK KOD: Alt satıra kaymayı önler */
}

.main-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
  width: 100%;
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active {
  color: var(--gold-dark);
}

/* Header Actions & Mobile */
/* Menü (İletişim) ile Buton arasını açmak için güncellenen kod */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  margin-left: 40px;
  /* Arayı açan kod burası. Gerekirse 50px veya 60px yapabilirsiniz. */
}

@media (min-width: 992px) {
  .header-actions {
    margin-left: 40px !important;
    /* Mesafeyi gözünüze göre 30px, 50px olarak değiştirebilirsiniz */
  }
}

.header-actions .btn-sm {
  padding: 12px 24px;
  font-size: 0.75rem;
  white-space: nowrap;
  /* KRİTİK KOD: Yazıyı tek satırda tutar */
  align-self: center;
  /* Butonun dikeyde esneyip uzamasını engeller */
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.75rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 1001;
}

.mobile-toggle span {
  width: 30px;
  height: 2px;
  background: var(--black-solid);
  transition: var(--transition-fast);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--black-solid);
  color: #a0a0a0;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black-solid);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li,
.contact-info li {
  margin-bottom: 15px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: #a0a0a0;
  font-size: 0.95rem;
}

.footer-links a i {
  color: var(--gold-primary);
  font-size: 0.7rem;
  margin-right: 10px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-links a:hover i {
  transform: translateX(5px);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 0.95rem;
}

.contact-info i {
  color: var(--gold-primary);
  margin-top: 5px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #a0a0a0;
}

.contact-info a:hover {
  color: var(--gold-primary);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
}

.footer-legal a {
  color: #a0a0a0;
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

.footer-legal .separator {
  margin: 0 10px;
  color: #444;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black-solid);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: var(--transition-slow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: var(--black-solid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 100px 40px 40px;
    transition: var(--transition-slow);
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  @media (max-width: 1200px) {
    .main-nav .nav-list {
      gap: 15px;
    }

    .main-nav .nav-list a {
      font-size: 0.8rem;
    }
  }

  .mobile-toggle {
    display: flex;
  }

  .d-none-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}





/* ===== ===== PAGE HEADER (Ortak) ===== */
.page-header-premium {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1559526324-593bc073d938?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.75) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-tag {
  display: inline-block;
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}

.page-header-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 1px;
  background: var(--gold-primary);
}

.page-header-premium h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.breadcrumb-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #ccc;
}

.breadcrumb-premium a {
  color: var(--gold-primary);
  transition: var(--transition-fast);
  font-weight: 500;
}

.breadcrumb-premium a:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
}

.breadcrumb-premium .current {
  color: var(--white);
  font-weight: 500;
}

/* ===== ===== HABER LİSTESİ SAYFASI ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: var(--white);
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card .card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-border);
  z-index: -1;
  transition: var(--transition-slow);
  border-radius: 2px;
  pointer-events: none;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.news-card:hover .card-border {
  border-color: var(--gold-primary);
  transform: scale(0.97);
}

.news-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--white);
  padding: 8px 14px;
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-radius: 2px;
}

.news-date-badge span {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.news-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--black-rich);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.news-card:hover .news-card-content h3 {
  color: var(--gold-dark);
}

.news-card-content p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black-rich);
  margin-top: auto;
}

.news-link i {
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.news-card:hover .news-link i {
  transform: translateX(5px);
}

/* ===== ===== HABER DETAY SAYFASI ===== */
.news-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.news-featured-image {
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-hover);
}

.news-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--gray-text);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-border);
}

.news-meta i {
  color: var(--gold-primary);
  margin-right: 8px;
}

.news-content p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.news-content .lead {
  font-size: 1.2rem;
  color: var(--black-rich);
  font-weight: 500;
}

.news-content h3 {
  font-family: var(--font-heading);
  color: var(--black-rich);
  margin: 30px 0 15px;
  font-size: 1.8rem;
}

.news-content ul {
  margin: 20px 0;
  padding-left: 25px;
  color: var(--gray-text);
}

.news-content ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Paylaşım */
.share-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 40px 0 30px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.share-section span {
  font-weight: 600;
  color: var(--black-rich);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-section a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.share-section a:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black-solid);
}

.back-to-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 600;
  transition: var(--transition-fast);
  margin-top: 10px;
}

.back-to-news:hover {
  gap: 12px;
  color: var(--black-rich);
}

/* Sidebar */
.news-sidebar .sidebar-card {
  background: var(--white);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-soft);
  margin-bottom: 25px;
  border-radius: 2px;
}

.sidebar-card .card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-border);
  z-index: -1;
  transition: var(--transition-slow);
  border-radius: 2px;
}

.sidebar-card:hover .card-border {
  border-color: var(--gold-primary);
  transform: scale(0.97);
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  color: var(--black-rich);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.recent-posts li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-border);
}

.recent-posts li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.recent-posts a {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gray-text);
  transition: var(--transition-fast);
}

.recent-posts a:hover {
  color: var(--black-rich);
}

.recent-posts img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.recent-posts h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black-rich);
  margin-bottom: 3px;
  line-height: 1.4;
}

.recent-posts span {
  font-size: 0.8rem;
  color: var(--gray-text);
}

.cta-sidebar {
  background: var(--black-solid) !important;
  color: var(--white);
  text-align: center;
}

.cta-sidebar .card-border {
  border-color: rgba(212, 175, 55, 0.2);
}

.cta-sidebar h3 {
  color: var(--gold-primary);
}

.cta-sidebar p {
  color: #ccc;
  margin-bottom: 20px;
}

.cta-sidebar .btn {
  margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .news-detail-grid {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    margin-top: 40px;
  }

  .page-header-premium h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .page-header-premium h1 {
    font-size: 2.2rem;
  }

  .news-meta {
    flex-direction: column;
    gap: 10px;
  }
}


/* ===== HIZLI LİNKLER ===== */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.quick-link-card {
  background: var(--white);
  padding: 35px 25px;
  text-align: center;
  text-decoration: none;
  position: relative;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-slow);
  z-index: 1;
  border-radius: 2px;
  color: var(--black-rich);
}

.quick-link-card .card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gray-border);
  z-index: -1;
  transition: var(--transition-slow);
  border-radius: 2px;
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.quick-link-card:hover .card-border {
  border-color: var(--gold-primary);
  transform: scale(0.95);
}

.ql-icon {
  font-size: 2.4rem;
  color: var(--gold-primary);
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.quick-link-card:hover .ql-icon {
  transform: scale(1.1);
  color: var(--gold-dark);
}

.quick-link-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black-rich);
  margin-bottom: 8px;
}

.quick-link-card span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-text);
  display: block;
}